@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== ELEMENTOR OVERRIDE ===== */
.e-con>.e-con-inner {
    margin: 0 !important;
    max-width: 100% !important;
    gap: 0 !important;
}

.elementor-element.e-con {
    padding: 0 !important;
}

.e-con-inner {
    padding: 0 !important;
}

/* ===== RESET ===== */
.aw-header *,
.aw-header *::before,
.aw-header *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   HEADER
   ============================================ */
.aw-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    height: 96px !important;
    background: rgba(0, 51, 102, 0.20) !important;
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.45s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.aw-header.is-hidden {
    transform: translateY(-100%);
}

.aw-header.is-scrolled {
    background: rgba(0, 51, 102, 0.85) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.aw-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo: 35px from left */
.aw-header__inner > .aw-header__logo {
    margin-left: 35px;
}

/* CTA: 35px from right */
.aw-header__inner > .aw-header__cta {
    margin-right: 35px;
}

/* Logo */
.aw-header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.aw-header__logo img {
    height: 32px;
    width: auto;
    display: block;
}

/* CTA Button (right side) */
.aw-header__cta {
    display: flex;
    height: 48px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: rgba(254, 254, 254, 0.20);
    color: #FEFEFE;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.aw-header__cta:hover {
    background: #003366;
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.aw-hero {
    position: relative;
    width: 100%;
    background: #003366;
    overflow: hidden;
}

.aw-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    min-height: 700px;
}

/* Left content - items at top, trust logos pinned to bottom (align with image) */
.aw-hero__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 140px 0 64px;
    min-height: 100%;
}

/* Badge */
.aw-hero__badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.aw-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F98755;
    flex-shrink: 0;
}

.aw-hero__badge-text {
    color: #F98755;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

/* Title */
.aw-hero__title {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.aw-hero__title-white {
    color: #FEFEFE;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.aw-hero__title-orange {
    color: #F98755;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

/* Subtitle */
.aw-hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    max-width: 480px;
}

/* Divider */
.aw-hero__divider {
    width: 100%;
    max-width: 480px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 4px 0;
}

/* Features */
.aw-hero__features {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.aw-hero__feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.aw-hero__feature-icon {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0;
    display: block;
}

.aw-hero__feature-text {
    color: #FEFEFE;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

/* Trust logos: infinite marquee, pinned to bottom (align with right image) */
.aw-hero__trust {
    width: 100%;
    max-width: 500px;
    margin-top: auto;
    overflow: hidden;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.aw-hero__trust-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: awHeroTrustScroll 28s linear infinite;
}

.aw-hero__trust-track img {
    height: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    flex: 0 0 auto;
    opacity: 0.85;
}

@keyframes awHeroTrustScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Right - Image with overlay card */
.aw-hero__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 96px 0 32px;
}

.aw-hero__media {
    position: relative;
    width: 463.801px;
    height: 620.092px;
    border-radius: 12px;
    overflow: hidden;
    background-image: url('https://lp.elithair.com.tr/wp-content/uploads/2026/05/goersel_2026-05-14_094831464.png');
    background-color: lightgray;
    background-size: 107.952% 107.658%;
    background-repeat: no-repeat;
}

/* Hide img element since background does the work */
.aw-hero__image {
    display: none !important;
}

/* Overlay card: icon left, text column on right */
.aw-hero__card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 401.2px;
    padding: 20px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.aw-hero__card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: block;
}

.aw-hero__card-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aw-hero__card-title {
    color: #FEFEFE;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.aw-hero__card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

/* ============================================
   TOUR SECTION (Saç Analiziniz Böyle Yapılıyor)
   ============================================ */
.aw-tour {
    background: #FFFFFF;
    padding: 80px 0;
    width: 100%;
}

.aw-tour__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.aw-tour__title {
    color: #003366;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.aw-tour__desc {
    color: #6E6E6E;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0 0 28px;
}

.aw-tour__embed {
    width: 1280px;
    max-width: 100%;
    height: 670.152px;
    aspect-ratio: 170 / 89;
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    position: relative;
}

.aw-tour__embed > div,
.aw-tour__embed iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

/* Steps (3-step process below embed) */
.aw-tour__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 1240px;
    margin-top: 60px;
}

.aw-tour__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    max-width: 300px;
}

.aw-tour__step-num {
    color: #E8913A;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
}

.aw-tour__step-icon {
    display: block;
}

.aw-tour__step-icon svg {
    display: block;
    width: 48px;
    height: 48px;
}

.aw-tour__step-title {
    color: #2E3033;
    font-family: "Inter", "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
}

.aw-tour__step-desc {
    color: #6E6E6E;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

.aw-tour__step-arrow {
    flex-shrink: 0;
    margin-top: 92px;
    display: flex;
    align-items: center;
}

.aw-tour__step-arrow svg {
    display: block;
}

@media (max-width: 768px) {
    .aw-tour {
        padding: 50px 0;
    }
    .aw-tour__inner {
        padding: 0 20px;
    }
    .aw-tour__title {
        font-size: 26px;
    }
    .aw-tour__desc {
        font-size: 14px;
    }
    .aw-tour__embed {
        height: auto;
        min-height: 240px;
        border-radius: 12px;
    }

    /* Steps mobile: stacked vertical with rotated arrows */
    .aw-tour__steps {
        flex-direction: column;
        align-items: center;
        gap: 44px;
        margin-top: 40px;
    }

    .aw-tour__step {
        max-width: 280px;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .aw-tour__step-num {
        font-size: 28px;
        line-height: 32px;
    }

    .aw-tour__step-title {
        font-size: 17px;
        line-height: 24px;
    }

    .aw-tour__step-desc {
        font-size: 13px;
        line-height: 18px;
    }

    .aw-tour__step-arrow {
        margin: 0;
        transform: rotate(90deg);
    }
}

/* ============================================
   SOLUTION SECTION (Peki Çözüm Ne?)
   ============================================ */
.aw-solution {
    background: #FBFBFB;
    padding: 80px 100px;
    width: 100%;
}

.aw-solution__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
}

/* LEFT */
.aw-solution__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: center;
}

.aw-solution__title {
    color: #003366;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin: 0;
}

.aw-solution__desc {
    color: #6E6E6E;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

/* List */
.aw-solution__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    list-style: none;
    padding: 0;
    margin: 4px 0;
}

.aw-solution__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2E3033;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
}

.aw-solution__list li svg {
    flex-shrink: 0;
    width: 24px !important;
    height: 24px !important;
    display: block;
}

/* CTA block */
.aw-solution__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.aw-solution__cta-text {
    color: #2E3033;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.aw-solution__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    padding: 14px 24px;
    border-radius: 12px;
    background: #F98755;
    color: #FEFEFE;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.aw-solution__cta-btn:hover {
    background: #003366;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* RIGHT - Card with image and stats */
.aw-solution__right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aw-solution__card {
    display: inline-flex;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    box-shadow: 0 2px 8px rgba(10, 13, 18, 0.04);
    width: fit-content;
}

.aw-solution__image {
    width: 390px !important;
    height: 390px !important;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    align-self: center;
}

.aw-solution__stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding-top: 12px;
    gap: 16px;
}

.aw-solution__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.aw-solution__stat-value {
    color: #003366;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.398px;
}

.aw-solution__stat-label {
    color: #6B7280;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

/* ============================================
   FINAL CTA SECTION (Saç Ekimi İçin Uygun Musunuz?)
   ============================================ */
.aw-final {
    background: linear-gradient(119deg, #036 0%, #001A33 100%);
    padding: 64px 336px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.aw-final__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 768px;
}

/* Badge: same style as hero badge */
.aw-final__badge {
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.aw-final__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F98755;
    flex-shrink: 0;
}

.aw-final__badge-text {
    color: #F98755;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

/* Title: same style as hero */
.aw-final__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.aw-final__title-white {
    color: #FEFEFE;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.aw-final__title-orange {
    color: #F98755;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

/* Description */
.aw-final__desc {
    color: #F1F8FE;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    margin: 0;
    max-width: 520px;
}

/* CTA Button */
.aw-final__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    padding: 16px 32px;
    border-radius: 12px;
    background: #F98755;
    color: #FEFEFE;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.aw-final__cta:hover {
    background: #003366;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Security note (lock icon + text) */
.aw-final__security {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #FBFBFB;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.055px;
}

.aw-final__security svg {
    flex-shrink: 0;
}

/* 3 small feature badges */
.aw-final__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.aw-final__feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    color: #FEFEFE;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   FOOTER SECTION (copied 1:1 from fiyat-teklifi)
   ============================================ */
.site-footer {
    background: #003366;
    width: 100%;
    padding: 96px 100px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.site-footer__inner {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: nowrap;
}

.site-footer__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    color: #FFFFFF;
    min-width: 0;
}

.site-footer__badge {
    display: none;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin: 0 0 120px;
}

.site-footer__logo img {
    height: 36px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
}

.site-footer__intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__title {
    color: #FFFFFF;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.site-footer__desc {
    color: rgba(255, 255, 255, 0.85);
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
}

.site-footer__contacts {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.site-footer__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.site-footer__contact:hover {
    opacity: 0.8;
}

.site-footer__contact svg {
    flex-shrink: 0;
    color: #FFFFFF;
}

.site-footer__contact-sep {
    display: inline-block;
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.site-footer__map {
    position: relative;
    width: 429px;
    height: 429px;
    border-radius: 11.216px;
    overflow: hidden;
    flex-shrink: 0;
    background: lightgray 0.436px 0.265px / 113.508% 100% no-repeat;
}

.site-footer__map iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

.site-footer__map-button {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #003366;
    color: #FFFFFF;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
    z-index: 2;
}

.site-footer__map-button:hover {
    background: #002244;
}

.site-footer__map-button svg {
    flex-shrink: 0;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.site-footer__copy {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.site-footer__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-footer__social a {
    color: rgba(255, 255, 255, 0.85);
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.site-footer__social a:hover {
    color: #FFFFFF;
}

@media (max-width: 1100px) {
    .site-footer {
        padding: 60px 36px;
    }
    .site-footer__top {
        flex-direction: column;
        gap: 40px;
    }
    .site-footer__map {
        width: 100%;
        max-width: 429px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .site-footer__logo {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    /* Final CTA mobile */
    .aw-final {
        padding: 48px 24px;
    }
    .aw-final__inner {
        gap: 20px;
    }
    .aw-final__title-white,
    .aw-final__title-orange {
        font-size: 32px;
        line-height: 40px;
    }
    .aw-final__desc {
        font-size: 14px;
        line-height: 20px;
    }
    .aw-final__cta {
        width: 100%;
        max-width: 100%;
    }
    .aw-final__security {
        font-size: 12px;
        line-height: 18px;
    }
    .aw-final__badges {
        flex-wrap: wrap;
        gap: 8px;
    }
    .aw-final__feature-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Footer mobile */
    .site-footer {
        padding: 40px 24px 32px;
    }

    .site-footer__inner {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .site-footer__top,
    .site-footer__left,
    .site-footer__bottom {
        display: contents;
    }

    .site-footer__logo {
        order: 1;
        margin: 0 0 24px;
    }

    .site-footer__logo img {
        height: 32px !important;
    }

    .site-footer__intro {
        order: 2;
        gap: 8px;
        margin-bottom: 20px;
    }

    .site-footer__title {
        font-size: 18px;
    }

    .site-footer__desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .site-footer__contacts {
        order: 3;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0 0 18px;
    }

    .site-footer__contact {
        justify-content: center;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        gap: 10px;
        font-size: 15px;
    }

    .site-footer__contact[href^="mailto"] span {
        text-decoration: underline;
    }

    .site-footer__contact-sep {
        display: none;
    }

    .site-footer__social {
        order: 4;
        list-style: none;
        margin: 0 0 24px;
        padding: 18px 0 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .site-footer__social li {
        padding: 0 14px;
        border-right: 1px solid rgba(255, 255, 255, 0.28);
        line-height: 1;
    }

    .site-footer__social li:last-child {
        border-right: none;
        padding-right: 0;
    }

    .site-footer__social li:first-child {
        padding-left: 0;
    }

    .site-footer__social a {
        font-size: 14px;
        text-decoration: underline;
    }

    .site-footer__map {
        order: 5;
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 0 24px;
    }

    .site-footer__copy {
        order: 6;
        text-align: left;
        font-size: 13px;
        padding: 20px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        width: 100%;
        margin: 0;
    }
}

/* ============================================
   FAQ SECTION (Sıkça Sorulan Sorular)
   ============================================ */
.ek-faq {
    background: #FFFFFF !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 80px 36px !important;
    box-sizing: border-box !important;
    z-index: 1;
}

.ek-faq__inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ek-faq__title {
    font-family: 'Sofia Pro', 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #1a1a1a;
    text-align: center;
    margin: 0;
}

.ek-faq__list {
    display: flex;
    flex-direction: column;
}

.ek-faq__item {
    border-top: 1px solid #E0E0E0;
}

.ek-faq__item:first-child {
    border-top: none;
}

.ek-faq__question {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.ek-faq__question-text {
    font-family: 'Sofia Pro', 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #003366;
}

.ek-faq__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
}

.ek-faq__icon-plus,
.ek-faq__icon-minus {
    width: 100% !important;
    height: 100% !important;
    max-width: 36px !important;
    object-fit: contain;
}

.ek-faq__icon-plus { display: block; }
.ek-faq__icon-minus { display: none; }

.ek-faq__item.active .ek-faq__icon-plus { display: none; }
.ek-faq__item.active .ek-faq__icon-minus { display: block; }

.ek-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.ek-faq__answer-inner {
    padding: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ek-faq__answer-text {
    font-family: 'Sofia Pro', 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    margin: 0;
}

.ek-faq__answer-text strong {
    font-weight: 700;
    color: #1a1a1a;
}

.ek-faq__answer-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    width: fit-content;
    background: #F98755;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Sofia Pro', 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FEFEFE;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.ek-faq__answer-cta:hover {
    background: #003366;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .ek-faq { padding: 48px 20px !important; }
    .ek-faq__title { font-size: 28px; line-height: 36px; }
    .ek-faq__question-text { font-size: 16px; line-height: 24px; }
    .ek-faq__icon { width: 32px; height: 32px; min-width: 32px; }
}

/* ============================================
   WHY SECTION (Neden ElitHair Sizin İçin En İyi Tercih?)
   ============================================ */
.aw-why {
    background: #FBFBFB;
    padding: 80px 36px;
    width: 100%;
}

.aw-why__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.aw-why__title {
    color: #003366;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 14px;
}

.aw-why__subtitle {
    color: #6E6E6E;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 40px;
}

.aw-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.aw-why__card {
    display: flex;
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1 0 0;
    min-height: 144px;
    border-radius: 12px;
    border: 1px solid #EFEFEF;
    background: #FFFFFF;
    box-shadow: 0 2px 4px rgba(10, 13, 18, 0.06);
}

.aw-why__card-icon {
    flex-shrink: 0;
    display: block;
}

.aw-why__card-icon svg {
    display: block;
    width: 48px;
    height: 48px;
}

.aw-why__card-title {
    color: #2E3033;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
}

.aw-why__card-desc {
    color: #6E6E6E;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

/* ============================================
   TRUST SECTION (Binlerce Mutlu Hasta, Tek Bir Seçim)
   ============================================ */
.aw-trust {
    background: #FFFFFF;
    padding: 80px 0 60px;
    width: 100%;
    overflow: hidden;
}

.aw-trust__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.aw-trust__title {
    color: #003366;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

/* Top: 2 small score cards */
.aw-trust__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.aw-trust__top-card {
    width: 288px;
    height: 110px;
    border-radius: 12px;
    border: 1px solid #EFEFEF;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(10, 13, 18, 0.04);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
}

.aw-trust__top-card-icon {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    object-fit: contain;
    flex-shrink: 0;
}

.aw-trust__top-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.aw-trust__top-card-score {
    color: #003366;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.aw-trust__top-card-score--excellent {
    color: #15803D;
    font-family: "Inter", 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.027px;
}

.aw-trust__top-card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.aw-trust__top-card-stars svg {
    display: block;
    flex-shrink: 0;
}

.aw-trust__top-card-label {
    color: #9CA3AF;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

/* Slider - on web: 3 cards centered, no sliding; on mobile: arrow slider */
.aw-trust__slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.aw-trust__track-wrap {
    overflow: visible;
    flex: 0 0 auto;
}

.aw-trust__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: center;
}

/* Arrows: hidden on web, shown on mobile */
.aw-trust__arrow {
    display: none;
}

/* Review card */
.aw-trust__review {
    width: 394px;
    height: 257px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #EFEFEF;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(10, 13, 18, 0.04);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.aw-trust__review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aw-trust__review-top svg {
    display: block;
    flex-shrink: 0;
}

.aw-trust__review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.aw-trust__review-text {
    color: #6E6E6E;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 22.75px;
    margin: 0;
    flex: 1;
}

.aw-trust__review-divider {
    width: 100%;
    height: 1px;
    border: none;
    background: #EFEFEF;
    margin: 0;
}

.aw-trust__review-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.aw-trust__review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aw-trust__review-photo {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0;
}

.aw-trust__review-author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.aw-trust__review-name {
    color: #003366;
    font-family: "Inter", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.aw-trust__review-location {
    color: #6E6E6E;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.aw-trust__review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #DCFCE7;
    color: #16A34A;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    white-space: nowrap;
}

.aw-trust__review-verified svg {
    flex-shrink: 0;
}

/* Arrow base (display controlled per viewport) */
.aw-trust__arrow {
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: opacity 0.3s ease;
}

.aw-trust__arrow:hover {
    opacity: 0.6;
}

.aw-trust__arrow svg {
    display: block;
}

/* ============================================
   RESULTS SECTION (Gerçek Hastalar, Gerçek Sonuçlar)
   ============================================ */
.ft-results {
    background: #FFFFFF;
    padding: 80px 0 60px;
    width: 100%;
    overflow: hidden;
}

.ft-results__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 36px;
}

.ft-results__title {
    color: #003366;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 40px;
}

.ft-results__title span {
    color: #F98755;
}

.ft-results__slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ft-results__track-wrap {
    overflow: hidden;
    flex: 1;
}

.ft-results__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-results__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    width: calc(50% - 12px);
}

.ft-results__card-img {
    max-width: 498px !important;
    width: 100% !important;
    height: 607px !important;
    border-radius: 12px !important;
    object-fit: cover !important;
    display: block;
    background: lightgray 50% / cover no-repeat;
}

.ft-results__card-name {
    color: #003366;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.ft-results__card-grafts {
    color: #003366;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.ft-results__card-time {
    color: #003366;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.ft-results__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: opacity 0.3s ease;
}

.ft-results__arrow:hover {
    opacity: 0.6;
}

.ft-results__arrow svg {
    display: block;
}

.ft-results__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.ft-results__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 372px;
    padding: 16px 32px;
    border-radius: 12px;
    background: #F98755;
    color: #FEFEFE;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.ft-results__cta:hover {
    background: #003366;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ============================================
   FACTS SECTION (Kimsenin Söylemediği 4 Gerçek)
   ============================================ */
.aw-facts {
    background: #FFFFFF;
    padding: 80px 100px;
    width: 100%;
}

.aw-facts__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.aw-facts__title {
    color: #003366;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin: 0 0 14px;
}

.aw-facts__subtitle {
    color: #6E6E6E;
    text-align: center;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 48px;
}

/* Grid: 2x2 on web */
.aw-facts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Card */
.aw-facts__card {
    display: flex;
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #EFEFEF;
    background: #FFFFFF;
    box-shadow: 0 2px 4px rgba(10, 13, 18, 0.06);
}

/* Top row: icon left + badge right */
.aw-facts__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

/* Icon wrapper */
.aw-facts__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aw-facts__card-icon--blue {
    background: #EFF6FF;
}

.aw-facts__card-icon--green {
    background: #ECFDF5;
}

.aw-facts__card-icon--orange {
    background: #FFF7ED;
}

.aw-facts__card-icon--red {
    background: #FFF5F5;
}

.aw-facts__card-icon svg {
    display: block;
}

/* Card icons that come with their own 56x56 rect: render at full size */
.aw-facts__card-icon--standalone {
    background: transparent;
    width: 56px;
    height: 56px;
}

/* Badge */
.aw-facts__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.aw-facts__badge--red {
    background: #FEE2E2;
    color: #DC2626;
}

.aw-facts__badge--orange {
    background: #FFEDD5;
    color: #EA580C;
}

.aw-facts__badge--yellow {
    background: #FEF3C7;
    color: #A16207;
}

/* Card content */
.aw-facts__card-title {
    color: #2E3033;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
    width: 100%;
    text-align: left;
}

.aw-facts__card-desc {
    color: #6E6E6E;
    font-family: "Sofia Pro", 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    width: 100%;
    text-align: left;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .aw-header {
        height: 64px !important;
        background: linear-gradient(180deg, rgba(0, 51, 102, 0.20) 21.3%, rgba(0, 51, 102, 0.10) 79.81%, rgba(0, 51, 102, 0.00) 100%) !important;
    }

    .aw-header__inner {
        padding: 0 16px;
        gap: 12px;
    }

    .aw-header__logo img {
        height: 24px;
    }

    .aw-header__cta {
        height: 40px;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 10px;
    }

    /* ================ HERO MOBILE ================ */
    /* Reorder elements: badge → image → title → subtitle → features → trust */
    .aw-hero__inner {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 84px 20px 32px;
        min-height: auto;
    }

    .aw-hero__left {
        display: contents;
    }

    /* Badge inside media on mobile (positioned by JS), top-left 13/15px */
    .aw-hero__media .aw-hero__badge {
        position: absolute;
        top: 15px;
        left: 13px;
        margin: 0;
        padding: 6px 12px;
        z-index: 10;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        align-self: auto;
        order: initial;
    }

    .aw-hero__badge-text {
        font-size: 12px;
        line-height: 1.3;
    }

    /* Image second - full width */
    .aw-hero__right {
        order: 2;
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .aw-hero__media {
        position: relative;
        width: 100% !important;
        max-width: 100%;
        height: 480px !important;
        background-size: cover;
        background-position: center;
        border-radius: 16px;
    }

    /* Card: wider, text on single line */
    .aw-hero__card {
        bottom: 16px;
        left: 16px;
        right: 16px;
        width: auto;
        transform: none;
        padding: 14px 16px;
        gap: 12px;
    }

    .aw-hero__card-icon {
        width: 40px;
        height: 40px;
    }

    .aw-hero__card-icon svg {
        width: 40px;
        height: 40px;
    }

    .aw-hero__card-title {
        font-size: 14px;
        line-height: 1.3;
        white-space: nowrap;
    }

    .aw-hero__card-desc {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 2px;
        white-space: nowrap;
    }

    /* Title third, centered, single line (inline spans) */
    .aw-hero__title {
        order: 3;
        display: block;
        text-align: center;
        margin: 4px 0 0;
    }

    .aw-hero__title-white,
    .aw-hero__title-orange {
        display: inline;
        font-size: 22px;
        line-height: 28px;
        text-align: center;
        white-space: nowrap;
    }

    /* Subtitle fourth */
    .aw-hero__subtitle {
        order: 4;
        text-align: center;
        font-size: 13px;
        line-height: 20px;
        margin: 0 auto;
        max-width: 320px;
    }

    /* Divider hidden on mobile */
    .aw-hero__divider {
        display: none;
    }

    /* Features fifth, centered row */
    .aw-hero__features {
        order: 5;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .aw-hero__feature {
        gap: 6px;
    }

    .aw-hero__feature-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .aw-hero__feature-text {
        font-size: 12px;
    }

    /* Trust logos sixth, no marquee on mobile - just centered row */
    .aw-hero__trust {
        order: 6;
        max-width: 100% !important;
        margin: 4px 0 0 !important;
        padding: 6px 0;
        -webkit-mask-image: none;
                mask-image: none;
    }

    .aw-hero__trust-track {
        gap: 14px;
        animation: awHeroTrustScroll 22s linear infinite;
    }

    .aw-hero__trust-track img {
        height: 22px !important;
        max-height: 22px !important;
    }

    /* ================ SOLUTION MOBILE ================ */
    .aw-solution {
        padding: 40px 20px;
    }

    .aw-solution__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Card first on mobile */
    .aw-solution__right {
        order: 1;
    }

    .aw-solution__left {
        order: 2;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .aw-solution__title {
        font-size: 28px;
        line-height: 32px;
        display: none;
    }

    .aw-solution__desc {
        text-align: center;
        font-size: 14px;
        line-height: 22px;
    }

    .aw-solution__list {
        align-items: flex-start;
        align-self: stretch;
        gap: 12px;
        padding-left: 8px;
    }

    .aw-solution__list li {
        font-size: 14px;
    }

    .aw-solution__cta {
        align-items: center;
        width: 100%;
    }

    .aw-solution__cta-text {
        text-align: center;
        font-size: 15px;
    }

    .aw-solution__cta-btn {
        width: 100%;
        max-width: 100%;
    }

    .aw-solution__card {
        padding: 20px;
        gap: 12px;
        border-radius: 20px;
    }

    .aw-solution__image {
        height: 280px !important;
    }

    .aw-solution__stat-value {
        font-size: 20px;
        line-height: 28px;
    }

    .aw-solution__stat-label {
        font-size: 11px;
    }

    /* ================ WHY MOBILE ================ */
    .aw-why {
        padding: 50px 16px;
    }

    .aw-why__title {
        font-size: 24px;
        line-height: 1.3;
    }

    .aw-why__subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 28px;
    }

    .aw-why__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .aw-why__card {
        padding: 16px;
        min-height: auto;
        gap: 8px;
    }

    .aw-why__card-icon svg {
        width: 40px;
        height: 40px;
    }

    .aw-why__card-title {
        font-size: 15px;
        line-height: 20px;
    }

    .aw-why__card-desc {
        font-size: 12px;
        line-height: 17px;
    }

    /* ================ TRUST MOBILE ================ */
    .aw-trust {
        padding: 50px 0 40px;
    }

    .aw-trust__inner {
        padding: 0 16px;
        gap: 20px;
    }

    .aw-trust__title {
        font-size: 24px;
        line-height: 1.3;
    }

    .aw-trust__top {
        gap: 12px;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: center;
    }

    .aw-trust__top-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: calc(50% - 6px);
        max-width: 180px;
        height: auto;
        min-height: 120px;
        padding: 12px 10px;
        gap: 6px;
    }

    .aw-trust__top-card-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .aw-trust__top-card-content {
        align-items: center;
        gap: 4px;
    }

    .aw-trust__top-card-score,
    .aw-trust__top-card-score--excellent {
        font-size: 18px;
    }

    .aw-trust__top-card-stars {
        justify-content: center;
    }

    .aw-trust__top-card-stars svg {
        width: 12px !important;
        height: 12px !important;
    }

    .aw-trust__top-card-label {
        font-size: 10px;
        line-height: 1.3;
        white-space: nowrap;
        text-align: center;
    }

    /* Slider mobile: single review card */
    .aw-trust__slider {
        gap: 6px;
        justify-content: center;
        align-items: center;
    }

    .aw-trust__track-wrap {
        overflow: hidden;
        flex: 0 1 280px;
    }

    .aw-trust__track {
        justify-content: flex-start;
    }

    .aw-trust__review {
        width: 280px !important;
        height: auto;
        min-height: 280px;
        padding: 20px;
        gap: 12px;
    }

    /* Bottom section: divider above, verified at top-right, profile below */
    .aw-trust__review-divider {
        display: block;
    }

    .aw-trust__review-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .aw-trust__review-verified {
        align-self: flex-end;
        order: 1;
    }

    .aw-trust__review-author {
        order: 2;
        justify-content: flex-start;
    }

    .aw-trust__arrow {
        display: flex;
        width: 36px;
        height: 36px;
    }

    .aw-trust__arrow svg {
        width: 36px !important;
        height: 36px !important;
    }

    /* ================ RESULTS MOBILE ================ */
    .ft-results {
        padding: 50px 0 40px;
    }

    .ft-results__inner {
        padding: 0 12px;
    }

    .ft-results__title {
        font-size: 28px;
    }

    .ft-results__title span {
        display: block;
    }

    .ft-results__slider {
        gap: 8px;
        justify-content: center;
        align-items: center;
    }

    .ft-results__track-wrap {
        flex: 0 1 267px;
    }

    .ft-results__card {
        width: 267px !important;
        flex-shrink: 0;
        gap: 8px;
    }

    .ft-results__card-img {
        width: 267px !important;
        max-width: 267px !important;
        height: 325px !important;
    }

    .ft-results__arrow {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .ft-results__arrow svg {
        width: 36px !important;
        height: 36px !important;
    }

    .ft-results__cta {
        width: 100%;
    }

    /* ================ FACTS MOBILE ================ */
    .aw-facts {
        padding: 50px 20px;
    }

    .aw-facts__title {
        font-size: 28px;
        line-height: 32px;
    }

    .aw-facts__subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 28px;
    }

    .aw-facts__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .aw-facts__card {
        padding: 20px;
        gap: 14px;
    }

    .aw-facts__card-icon {
        width: 48px;
        height: 48px;
    }

    .aw-facts__card-icon--standalone {
        width: 48px;
        height: 48px;
    }

    .aw-facts__card-icon--standalone svg {
        width: 48px !important;
        height: 48px !important;
    }

    .aw-facts__card-title {
        font-size: 17px;
    }

    .aw-facts__card-desc {
        font-size: 13px;
        line-height: 20px;
    }
}
