/* ============================================
   SMART DEAL GLOBAL — Bright Premium Theme
   ============================================ */

/* ---- 1. CSS CUSTOM PROPERTIES ---- */
:root {
    --color-primary:     #1a1a2e;
    --color-primary-light: #2d2d4a;
    --color-accent:      #c8956c;
    --color-accent-light: #dbb08e;
    --color-accent-dark:  #a87650;
    --color-accent-bg:   rgba(200, 149, 108, 0.08);
    --color-accent-bg2:  rgba(200, 149, 108, 0.15);
    --color-white:       #ffffff;
    --color-bg:          #faf9f7;
    --color-bg-warm:     #f5f0eb;
    --color-text:        #2c2c3a;
    --color-text-light:  #6b6b80;
    --color-text-muted:  #9a9aab;
    --color-border:      #e8e5e0;
    --color-border-light:#f0ede8;
    --color-green:       #0d9f6e;
    --color-green-bg:    #ecfdf5;
    --color-whatsapp:    #25D366;

    --font-heading:  'Playfair Display', Georgia, serif;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --container-max: 1240px;
    --container-pad: 1.5rem;
    --section-pad:   7rem;
    --section-pad-sm: 4rem;
    --navbar-h:      80px;

    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-full: 100px;

    --shadow-sm:   0 1px 3px rgba(0,0,0,0.04);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.08);
    --shadow-xl:   0 20px 60px rgba(0,0,0,0.1);

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0, 0, 0.25, 1);
}

/* ---- 2. RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; /* Lenis handles smooth scroll */ }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-primary);
}

/* ---- 3. LAYOUT ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-title--left { text-align: left; }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ---- 4. BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    border-radius: var(--radius-full);
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.9rem 2rem;
}
.btn--primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 149, 108, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    padding: 0.9rem 2rem;
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn--card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0.7rem 1.25rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    width: 100%;
}
.btn--card:hover {
    background: var(--color-accent);
}

.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-whatsapp);
    color: white;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
.btn--whatsapp i { font-size: 1.4rem; }

/* ---- 5. NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s var(--ease);
}
.navbar--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-h);
}
.navbar__logo { z-index: 1001; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-white);
    font-weight: 700;
    transition: color 0.4s var(--ease);
}
.navbar--scrolled .logo-text { color: var(--color-primary); }
.logo-accent { color: var(--color-accent); }

.navbar__links {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}
.navbar__links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: color 0.3s;
}
.navbar--scrolled .navbar__links a { color: var(--color-text-light); }
.navbar__links a:hover { color: var(--color-accent); }
.navbar--scrolled .navbar__links a:hover { color: var(--color-accent); }

.navbar__cta-link {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
}
.navbar__cta-link:hover { background: var(--color-accent-dark) !important; }

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.navbar--scrolled .navbar__hamburger span { background: var(--color-primary); }
.navbar__hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.navbar__hamburger.is-active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---- 6. HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.75) 0%,
        rgba(26, 26, 46, 0.5) 50%,
        rgba(26, 26, 46, 0.35) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 60px;
}
.hero__text {
    max-width: 640px;
}
.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 1.25rem;
    opacity: 0;
}
.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    color: var(--color-white);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    opacity: 0;
}
.hero__title em {
    font-style: italic;
    color: var(--color-accent-light);
}
.hero__subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 520px;
    opacity: 0;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
}
.hero__stats-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    opacity: 0;
}
.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}
.hero__stat-number::after { content: '+'; font-size: 0.6em; color: var(--color-accent-light); }
.hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
}
.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ---- 7. INTRO ---- */
.intro {
    padding: var(--section-pad) 0;
    background: var(--color-white);
}
.intro__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.intro__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}
.intro__divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    margin: 1.25rem auto 1.75rem;
    border-radius: 2px;
}
.intro__text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--color-text-light);
}

/* ---- 8. MARKETS ---- */
.markets {
    padding: var(--section-pad) 0;
    background: var(--color-bg);
}
.markets .section-label { display: block; text-align: center; }
.market-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: default;
    transition: transform 0.4s var(--ease);
}
.market-card:hover { transform: translateY(-4px); }
.market-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.market-card:hover .market-card__img { transform: scale(1.06); }
.market-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,20,0.88) 0%, rgba(10,10,20,0.2) 55%, transparent 100%);
}
.market-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem;
}
.market-card__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.35rem;
}
.market-card__country {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}
.market-card__cities {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- 9. PROPERTIES (shared) ---- */
.properties {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden; /* Prevent Swiper cards from causing horizontal scroll */
}
.properties--ready { background: var(--color-white); }
.properties--offplan { background: var(--color-bg); }
.properties__header { text-align: center; margin-bottom: 0.5rem; }
.properties__header .section-label { display: block; text-align: center; }

.properties__highlight {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}
.highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: transparent;
    border: 1px solid rgba(13, 159, 110, 0.25);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-green);
}
.highlight-chip i { font-size: 0.7rem; }
.highlight-chip--accent {
    border-color: rgba(200, 149, 108, 0.35);
    color: var(--color-accent-dark);
    background: transparent;
}

/* Property Cards */
.property-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.property-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
}
.property-card__image {
    position: relative;
    height: 200px;
    min-height: 200px;
    overflow: hidden;
    background: var(--color-bg);
    flex-shrink: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.property-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.property-card:hover .property-card__image img { transform: scale(1.04); }

.property-card__badge {
    position: absolute;
    top: 12px;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-body);
    z-index: 2;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.property-card__badge--discount {
    right: 12px;
    background: var(--color-green);
    color: white;
}
.property-card__badge--plan {
    left: 12px;
    background: rgba(255,255,255,0.9);
    color: var(--color-primary);
}
.property-card__badge--flexible {
    left: 12px;
    top: 46px;
    background: #2d7a4f;
    color: white;
}
.property-card__badge--negotiable {
    right: 12px;
    background: var(--color-accent);
    color: white;
}

.property-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.property-card__name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.property-card__location {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}
.property-card__location i {
    color: var(--color-accent);
    margin-right: 0.25rem;
    font-size: 0.75rem;
}
.property-card__details {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border-light);
}
.property-card__details i {
    color: var(--color-accent);
    margin-right: 0.25rem;
    font-size: 0.75rem;
}
.property-card__pricing { margin-bottom: 1rem; margin-top: auto; }
.property-card__price-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    margin-bottom: 0.1rem;
}
.property-card__price-label--smart {
    color: var(--color-green);
    margin-top: 0.4rem;
}
.property-card__original-price {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    display: block;
}
.property-card__smart-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}
.property-card__starting {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}
.property-card__chips { margin-bottom: 1rem; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 500;
}
.chip--plan {
    background: var(--color-accent-bg);
    color: var(--color-accent-dark);
    border: 1px solid rgba(200, 149, 108, 0.2);
}
.chip--plan i { font-size: 0.65rem; color: var(--color-accent); }
.chip--flexible { background: #eaf4ee; color: #2d7a4f; border: 1px solid rgba(45,122,79,0.2); }
.chip--flexible i { font-size: 0.65rem; color: #2d7a4f; }

/* Equal-height swiper slides */
.ready-swiper .swiper-wrapper,
.offplan-swiper .swiper-wrapper {
    align-items: stretch;
}
.ready-swiper .swiper-slide,
.offplan-swiper .swiper-slide {
    height: auto;
}

/* Swiper controls */
.swiper { overflow: hidden; }
.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.swiper-nav { display: flex; gap: 0.5rem; }
.swiper-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s var(--ease);
}
.swiper-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.swiper-pagination {
    position: static !important;
    width: auto !important;
}
.swiper-pagination-bullet {
    background: var(--color-border);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 10px;
}

/* ---- 10. WHY SMART DEALS ---- */
.why-smart {
    padding: var(--section-pad) 0;
    background: var(--color-white);
}
.why-smart .section-label { display: block; text-align: center; }
.why-smart__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.benefit-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    border: 1px solid var(--color-border-light);
    transition: all 0.35s var(--ease);
}
.benefit-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.benefit-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-accent-bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.benefit-card__icon i {
    font-size: 1.15rem;
    color: var(--color-accent);
}
.benefit-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.benefit-card__text {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* ---- 11. HOW WE HELP ---- */
.how-we-help {
    padding: var(--section-pad) 0;
    background: var(--color-bg);
}
.how-we-help__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.how-we-help__text .section-label { display: inline-block; }
.how-we-help__intro {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin: 1rem 0 2.25rem;
}
.how-we-help__steps {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step__number {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    min-width: 40px;
}
.step__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
}
.step__text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}
.how-we-help__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

/* ---- 12. FINAL CTA ---- */
.final-cta {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}
.final-cta__bg {
    position: absolute;
    inset: 0;
}
.final-cta__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.final-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.7) 100%);
}
.final-cta__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.final-cta__title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}
.final-cta__subtitle {
    font-size: 1.1rem;
    color: var(--color-accent-light);
    font-weight: 500;
    margin-bottom: 1rem;
}
.final-cta__text {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.final-cta__btn { margin-bottom: 1.5rem; }
.final-cta__note { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ---- 13. FOOTER ---- */
.footer {
    padding: 1.5rem 0;
    background: var(--color-primary);
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-white);
    font-weight: 700;
}
.footer__copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* ---- 14. FLOATING WHATSAPP ---- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.35s var(--ease);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ---- 15. ANIMATIONS (GSAP classes) ---- */
.reveal { opacity: 0; transform: translateY(30px); }

/* Fallback: if GSAP hasn't initialized after 3s, show hero content anyway */
@keyframes fallback-show {
    to { opacity: 1; transform: none; }
}
.hero__eyebrow, .hero__title, .hero__subtitle, .hero__actions, .hero__stats-row {
    animation: fallback-show 0.01s 3.5s forwards;
}

/* ---- 16. RESPONSIVE ---- */
@media (max-width: 768px) {
    :root { --section-pad: var(--section-pad-sm); --navbar-h: 64px; }

    .navbar__hamburger { display: flex; }
    .navbar__links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* iOS Safari: accounts for address bar */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(26, 26, 46, 0.98);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        gap: 2rem;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
    }
    .navbar__links.is-open { transform: translateY(0); }
    .navbar__links a { font-size: 1.2rem; color: rgba(255,255,255,0.85) !important; }
    .navbar__hamburger.is-active span { background: var(--color-white) !important; }

    .hero { min-height: 90vh; }
    .hero__content { padding-top: 110px; padding-bottom: 40px; }
    .hero__stats-row { gap: 1.5rem; margin-top: 2.5rem; }
    .hero__stat-number { font-size: 1.8rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    .swiper-controls { flex-direction: column; gap: 1rem; }

    .markets__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .why-smart__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .how-we-help__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .how-we-help__visual { order: -1; }
    .section-title--left { text-align: center; }
    .how-we-help__intro { text-align: center; }
    .how-we-help__text .section-label { display: block; text-align: center; }
    .footer__inner { flex-direction: column; gap: 0.5rem; text-align: center; }
    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .markets__grid { grid-template-columns: repeat(2, 1fr); }
    .why-smart__grid { grid-template-columns: 1fr; }
    .properties__highlight { flex-direction: column; align-items: center; }
    .hero__stats-row { flex-wrap: wrap; gap: 1.25rem; }
    .hero__stat-divider { display: none; }
}
