*{box-sizing:border-box}
body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f5f7fb;
    color:#1a1a1a;
}
a{text-decoration:none}
img{max-width:100%;display:block}
.container{
    width:min(1180px, calc(100% - 32px));
    margin:0 auto;
}
.site-header{
    background:#fff;
    border-bottom:1px solid #e8edf5;
    position:sticky;
    top:0;
    z-index:50;
}
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    min-height:76px;
}
.logo{
    font-weight:700;
    color:#0f172a;
}
.nav{
    display:flex;
    gap:18px;
}
.nav a{
    color:#334155;
    font-weight:600;
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:12px;
    font-weight:700;
    transition:.2s ease;
}
.btn-primary{
    background:#1d68b3;
    color:#fff;
}
.btn-outline{
    border:1px solid #1d68b3;
    color:#1d68b3;
    background:#fff;
}
.btn-lg{
    padding:14px 24px;
}
.hero{
    padding:56px 0;
    background:linear-gradient(135deg,#1f67b1,#1565c0);
    color:#fff;
}
.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:32px;
    align-items:center;
}
.hero h1{
    margin:0 0 16px;
    font-size:42px;
    line-height:1.15;
}
.hero p{
    margin:0 0 24px;
    font-size:18px;
    line-height:1.7;
}
.card-section,.info-section,.faq-section,.inner-page{
    padding:56px 0;
}
.section-head{
    margin-bottom:24px;
}
.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.service-card{
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    border:1px solid #eaf0f7;
}
.service-card h3{
    margin:0 0 10px;
    font-size:20px;
}
.service-card p{
    margin:0 0 18px;
    color:#475569;
    line-height:1.6;
}
.card-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    background:#fff;
    border-radius:20px;
    padding:28px;
    border:1px solid #e8edf5;
}
.check-list{
    margin:0;
    padding-left:18px;
}
.check-list li{
    margin-bottom:10px;
}
.faq-list{
    display:grid;
    gap:16px;
}
.faq-item{
    background:#fff;
    border-radius:16px;
    padding:20px;
    border:1px solid #e8edf5;
}
.site-footer{
    background:#0f172a;
    color:#fff;
    padding:36px 0;
    margin-top:40px;
}
.footer-inner{
    display:flex;
    justify-content:space-between;
    gap:24px;
}
.narrow{
    width:min(900px, calc(100% - 32px));
    margin:0 auto;
}
.lead{
    font-size:18px;
    color:#475569;
}
.content-box,.cta-box{
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:16px;
    padding:24px;
    margin-top:22px;
}
.admin-login-body{
    min-height:100vh;
    display:grid;
    place-items:center;
    background:#eff4fb;
}
.admin-login-box{
    width:min(420px, calc(100% - 32px));
    background:#fff;
    padding:28px;
    border-radius:18px;
    border:1px solid #e8edf5;
}
.form-group{
    margin-bottom:16px;
}
.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
}
.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:12px 14px;
    border:1px solid #cdd7e5;
    border-radius:12px;
    outline:none;
}
.form-group textarea{
    min-height:120px;
    resize:vertical;
}
.w-100{width:100%}
.alert{
    padding:14px;
    border-radius:12px;
    margin-bottom:16px;
}
.alert-success{
    background:#e8f8ee;
    color:#0f6b35;
}
.alert-danger{
    background:#fdecec;
    color:#a61b1b;
}
.admin-layout{
    display:grid;
    grid-template-columns:260px 1fr;
    min-height:100vh;
}
.admin-sidebar{
    background:#0f172a;
    color:#fff;
    padding:24px;
}
.admin-sidebar h2{
    margin-top:0;
}
.admin-sidebar nav{
    display:grid;
    gap:10px;
}
.admin-sidebar nav a{
    color:#d9e3f0;
    padding:10px 12px;
    border-radius:10px;
}
.admin-sidebar nav a:hover{
    background:rgba(255,255,255,.08);
}
.admin-content{
    padding:28px;
}
.admin-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.stat-box{
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:16px;
    padding:22px;
}
.stat-box strong{
    display:block;
    font-size:28px;
    margin-bottom:6px;
}
.admin-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
}
.admin-table th,.admin-table td{
    padding:14px;
    border-bottom:1px solid #eef2f7;
    text-align:left;
}
.admin-form{
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:18px;
    padding:24px;
}
@media (max-width: 992px){
    .hero-grid,
    .info-grid,
    .admin-layout{
        grid-template-columns:1fr;
    }
    .card-grid,
    .admin-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .nav{
        display:none;
    }
}
@media (max-width: 640px){
    .hero h1{
        font-size:30px;
    }
    .card-grid,
    .admin-grid{
        grid-template-columns:1fr;
    }
    .footer-inner{
        flex-direction:column;
    }
}
.admin-content h1{
    margin-top:0;
}
.admin-form{
    max-width:900px;
}
.admin-form .form-group{
    margin-bottom:18px;
}
.admin-form label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
}
.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #d8e0ea;
    border-radius:12px;
    background:#fff;
}
.admin-form textarea{
    min-height:140px;
    resize:vertical;
}
.hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}
.hero-placeholder{
    min-height:280px;
    border-radius:22px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:24px;
    font-size:24px;
    font-weight:700;
}
.site-logo{
    max-height:48px;
    width:auto;
    display:block;
}
.upload-preview{
    margin-top:12px;
    padding:12px;
    background:#f8fafc;
    border:1px solid #dde6f0;
    border-radius:12px;
    display:inline-block;
}
.upload-preview img{
    max-width:120px;
    height:auto;
    display:block;
}
.upload-preview.large img{
    max-width:320px;
}
.card-thumb{
    margin-bottom:14px;
    border-radius:16px;
    overflow:hidden;
    background:#f8fafc;
    border:1px solid #e8edf5;
}
.card-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}
.detail-image-wrap{
    margin:20px 0;
}
.detail-image{
    width:100%;
    max-width:700px;
    border-radius:18px;
    border:1px solid #e8edf5;
    display:block;
}
.upload-preview img{
    max-width:180px;
    border-radius:12px;
    display:block;
}
.site-logo{
    max-height:48px;
    width:auto;
    display:block;
}

.card-thumb{
    margin-bottom:14px;
    border-radius:16px;
    overflow:hidden;
    background:#f8fafc;
    border:1px solid #e8edf5;
}

.card-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}
.site-logo{
    max-height:48px;
    width:auto;
    display:block;
}

.detail-image-wrap{
    margin:20px 0;
}

.detail-image{
    width:100%;
    max-width:700px;
    border-radius:18px;
    border:1px solid #e8edf5;
    display:block;
}
.footer-links{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top:10px;
}
.footer-links a{
    color:#fff;
    opacity:.9;
}
.footer-links a:hover{
    opacity:1;
}
.site-logo{
    max-height:48px;
    width:auto;
    display:block;
}

.card-thumb{
    margin-bottom:14px;
    border-radius:16px;
    overflow:hidden;
    background:#f8fafc;
    border:1px solid #e8edf5;
}

.card-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.detail-image-wrap{
    margin:20px 0;
}

.detail-image{
    width:100%;
    max-width:700px;
    border-radius:18px;
    border:1px solid #e8edf5;
    display:block;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top:10px;
}

.footer-links a{
    color:#fff;
    opacity:.9;
}

.footer-links a:hover{
    opacity:1;
}
.home-content-image img{
    width:100%;
    border-radius:16px;
    display:block;
    border:1px solid #e6edf5;
    object-fit:cover;
    min-height:320px;
    max-height:420px;
}
.site-logo{
    max-height:48px;
    width:auto;
    display:block;
}

.card-thumb{
    margin-bottom:14px;
    border-radius:16px;
    overflow:hidden;
    background:#f8fafc;
    border:1px solid #e8edf5;
}

.card-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.detail-image-wrap{
    margin:20px 0;
}

.detail-image{
    width:100%;
    max-width:700px;
    border-radius:18px;
    border:1px solid #e8edf5;
    display:block;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top:10px;
}

.footer-links a{
    color:#fff;
    opacity:.9;
}

.footer-links a:hover{
    opacity:1;
}

.home-content-section{
    padding:50px 0 70px;
}

.home-content-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px;
    align-items:center;
    margin-bottom:36px;
}

.home-content-image img{
    width:100%;
    border-radius:16px;
    display:block;
    border:1px solid #e6edf5;
    object-fit:cover;
    min-height:320px;
    max-height:420px;
}

.home-content-text h2{
    margin:0 0 14px;
    font-size:38px;
    line-height:1.2;
    color:#1565c0;
}

.home-content-text p{
    margin:0 0 16px;
    color:#4b5563;
    line-height:1.8;
    font-size:16px;
}

.home-rich-content{
    max-width:1000px;
}

.home-rich-content h3{
    margin:0 0 14px;
    font-size:30px;
    line-height:1.35;
    color:#334155;
}

.home-rich-content > p{
    margin:0 0 22px;
    color:#5b6472;
    line-height:1.8;
    font-size:15px;
}

.content-list-block{
    margin:26px 0;
}

.content-list-block h4{
    margin:0 0 12px;
    font-size:22px;
    color:#334155;
}

.content-list-block ul{
    margin:0;
    padding-left:20px;
}

.content-list-block li{
    margin-bottom:10px;
    color:#4b5563;
    line-height:1.7;
}

.content-mini-cta{
    margin-top:24px;
    padding:22px 24px;
    border-radius:16px;
    border:1px solid #e5e7eb;
    background:#fff;
}

.content-mini-cta h4{
    margin:0 0 10px;
    font-size:22px;
}

.content-mini-cta p{
    margin:0;
    line-height:1.8;
    color:#4b5563;
}

.content-mini-cta.danger h4{
    color:#e11d48;
}

.content-mini-cta.success h4{
    color:#0f766e;
}

@media (max-width: 992px){
    .home-content-top{
        grid-template-columns:1fr;
    }

    .home-content-text h2{
        font-size:30px;
    }

    .home-rich-content h3{
        font-size:24px;
    }
}
/* HERO GELİŞMİŞ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(220, 38, 38, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(239, 68, 68, 0.08), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 38px;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(220, 38, 38, 0.10);
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.12);
}

.hero-title {
    margin: 0 0 16px;
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -1px;
    color: #111827;
}

.hero-desc {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.75;
    color: #4b5563;
    max-width: 590px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.06);
    color: #111827;
    font-weight: 600;
    font-size: 14px;
}

.hero-point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fee2e2;
    color: #dc2626;
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.hero-image img,
.hero-placeholder {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

.hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef2f2, #ffffff);
    color: #b91c1c;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    padding: 30px;
}

/* HERO ANİMASYON */
.hero-animate {
    animation: slideInLeft .9s ease both;
}

.hero-image-animate {
    animation: slideInRight 1s ease both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-48px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(48px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* YORUMLAR */
.reviews-section {
    padding: 24px 0 70px;
    background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
    overflow: hidden;
}

.reviews-head {
    margin-bottom: 26px;
}

.reviews-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollReviews 28s linear infinite;
}

.reviews-slider:hover .reviews-track {
    animation-play-state: paused;
}

.review-card {
    width: 330px;
    min-width: 330px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #b91c1c;
    font-size: 22px;
    flex-shrink: 0;
}

.review-user h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: #111827;
}

.review-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 15px;
    line-height: 1;
}

.review-text {
    margin: 0;
    color: #4b5563;
    line-height: 1.75;
    font-size: 15px;
}

@keyframes scrollReviews {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* MOBİL */
@media (max-width: 991px) {
    .hero {
        padding: 48px 0 34px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-image img,
    .hero-placeholder {
        min-height: 260px;
        border-radius: 24px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 26px 0 20px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 12px;
        margin-bottom: 12px;
    }

    .hero-points {
        gap: 8px;
        margin-bottom: 18px;
    }

    .hero-point {
        width: 100%;
        justify-content: flex-start;
        border-radius: 14px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .hero-image img,
    .hero-placeholder {
        min-height: 190px;
        border-radius: 18px;
    }

    .review-card {
        width: 270px;
        min-width: 270px;
        padding: 18px;
        border-radius: 20px;
    }

    .review-avatar {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .review-user h3 {
        font-size: 15px;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.65;
    }

    .reviews-section {
        padding: 18px 0 48px;
    }
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    border: 1px solid rgba(18, 140, 126, 0.22);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.22);
    transition: .25s ease;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
    filter: brightness(1.03);
}

.btn-whatsapp .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.btn-whatsapp svg {
    display: block;
}

.btn-lg.btn-whatsapp {
    padding-left: 22px;
    padding-right: 22px;
}
.card-thumb {
    width: 100%;
    margin-bottom: 14px;

}

.card-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}
.card-thumb {
    width: 100%;
    margin-bottom: 14px;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
/* Kart görselleri şeffaf ve doğal dursun */
.card-thumb {
    width: 100%;
    margin-bottom: 14px;
}

.card-thumb img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent !important;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.08));
}

/* Kart kutusu daha premium */
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.10);
    border-color: rgba(37, 211, 102, 0.18);
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    color: #111827;
}

.service-card p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Mobil */
@media (max-width: 767px) {
    .service-card {
        padding: 14px;
        border-radius: 20px;
    }

    .card-thumb {
        margin-bottom: 12px;
    }

    .card-thumb img {
        width: 100%;
        height: auto;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .card-actions {
        gap: 8px;
    }
}
/* Hakkımızda / neden biz görseli mobil düzeltme */
.home-content-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.home-content-image {
    width: 100%;
    min-width: 0;
}

.home-content-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    object-fit: cover;
}

/* Tablet */
@media (max-width: 991px) {
    .home-content-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-content-image {
        width: 100%;
        overflow: hidden;
    }

    .home-content-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 18px;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .home-content-section {
        overflow-x: hidden;
    }

    .home-content-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-content-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 16px;
    }

    .home-content-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
        object-fit: cover;
    }

    .home-content-text {
        width: 100%;
        min-width: 0;
    }
}
.why-choose-section{
    padding:84px 0 24px;
}

.why-choose-head{
    text-align:center;
    margin-bottom:34px;
}

.why-choose-head h2{
    margin:0 0 10px;
    font-size:46px;
    line-height:1.1;
    font-weight:800;
    color:#0f172a;
}

.why-choose-head p{
    margin:0;
    color:#64748b;
    font-size:16px;
}

.why-choose-grid{
    max-width:1120px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.why-card{
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:20px;
    padding:22px;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    transition:transform .2s ease, box-shadow .2s ease;
}

.why-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 36px rgba(15,23,42,.10);
}

.why-icon{
    width:40px;
    height:40px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
    color:#fff;
    background:linear-gradient(135deg,#14b8a6 0%,#2563eb 100%);
}

.why-icon svg{
    width:20px !important;
    height:20px !important;
    display:block;
    stroke:currentColor;
}

.why-card h3{
    margin:0 0 10px;
    font-size:16px;
    line-height:1.3;
    font-weight:800;
    color:#0f172a;
}

.why-card p{
    margin:0;
    color:#5b6678;
    font-size:14px;
    line-height:1.7;
}

.steps-section{
    padding:84px 0 28px;
}

.steps-head{
    text-align:center;
    margin-bottom:34px;
}

.steps-head h2{
    margin:0 0 10px;
    font-size:46px;
    line-height:1.1;
    font-weight:800;
    color:#0f172a;
}

.steps-head p{
    margin:0;
    color:#64748b;
    font-size:16px;
}

.steps-grid{
    max-width:980px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.step-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:20px;
    padding:22px 22px;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    transition:transform .2s ease, box-shadow .2s ease;
}

.step-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 36px rgba(15,23,42,.10);
}

.step-number{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:800;
    color:#fff;
    background:linear-gradient(135deg,#22c55e 0%,#16a34a 100%);
    box-shadow:0 8px 20px rgba(34,197,94,.28);
    margin-top:2px;
}

.step-content{
    flex:1;
}

.step-content h3{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0 0 10px;
    font-size:22px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
}

.step-content p{
    margin:0;
    color:#5b6678;
    font-size:15px;
    line-height:1.7;
}

.step-icon{
    width:22px;
    height:22px;
    min-width:22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#10b981;
}

.step-icon svg{
    width:22px !important;
    height:22px !important;
    display:block;
    stroke:currentColor;
}

@media (max-width: 1100px){
    .why-choose-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:768px){
    .why-choose-section{
        padding:68px 0 18px;
    }

    .why-choose-head h2,
    .steps-head h2{
        font-size:34px;
    }

    .why-choose-grid,
    .steps-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .why-card,
    .step-card{
        padding:18px;
        border-radius:18px;
    }

    .step-content h3{
        font-size:18px;
    }

    .step-content p,
    .why-card p{
        font-size:14px;
    }
}