/* ═══════════════════════════════════════════════════════════════
   CARLTON LUXURY BRAND SYSTEM — Consolidated Design Language
   Inspired by: Bentley Home · Fendi Casa · Minotti · Poliform
   Philosophy: Luxury · Sophisticated · Timeless · Architectural
═══════════════════════════════════════════════════════════════ */

/* ── ROOT VARIABLES ── */
:root {
    --gold: #b8902a;
    --gold-light: #d4af5a;
    --gold-pale: #e8d5a0;
    --gold-bright: #c9a84c;
    --cream: #f7f3ec;
    --cream-dark: #ede6d8;
    --warm-black: #1a1612;
    --charcoal: #2e2a24;
    --mid: #5a5449;
    --light-text: #8a8278;
    --white: #ffffff;
    /* --gold:       #C9A84C; */
    --gold-dark: #a8882c;
    --gold-bar: rgba(180, 140, 55, 0.88);
    /* --cream:      #F7F3EC; */
    /* --warm-black: #1A1612; */
    /* --white:      #ffffff; */
    --ease: 0.25s ease;
    --ease-fast: 0.15s ease;

    /* Computed shadows */
    --shadow-card: 0 16px 56px rgba(26, 22, 18, 0.1);
    --shadow-gold: 0 12px 44px rgba(184, 144, 42, 0.18);
    --shadow-hover:
        0 24px 72px rgba(184, 144, 42, 0.16), 0 6px 20px rgba(26, 22, 18, 0.08);

    /* Transitions */
    --ease: 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-fast: 0.22s ease;
}

/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
@font-face {
    font-family: "Kokila";
    src:
        url("kokila.woff2") format("woff2"),
        url("kokila.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: "Kokila", sans-serif;
    background: var(--cream);
    color: var(--warm-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY UTILITIES ── */
.display {
    font-family: "Kokila", serif;
    font-weight: 400;
}
.display-italic {
    font-family: "Kokila", serif;
    font-style: italic;
    font-weight: 300;
}
.gold {
    color: var(--gold);
}

.label {
    font-family: "Kokila", sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-left: 0;
}

/* .rule {
  width: 52px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(184,144,42,0.25));
  margin: 1.5rem 0;
} */
.rule-center {
    margin: 1.5rem auto;
}

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(247, 243, 236, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184, 144, 42, 0.16);
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    transition: box-shadow var(--ease-fast);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-logo-img {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    margin-left: 55px;
}
.carlton-logo-svg {
    width: 44px;
    height: 44px;
}
.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.nav-brand span:first-child {
    font-family: "Kokila", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-black);
}
.nav-brand span:last-child {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    font-family: "Kokila", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    position: relative;
    transition: color var(--ease);
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 100%;
    height: 1px;
    background: var(--gold);
    transition: right var(--ease);
}
.nav-link:hover {
    color: var(--gold);
}
.nav-link:hover::after {
    right: 0;
}
.nav-cta {
    background: var(--gold);
    color: var(--white);
    font-family: "Kokila", sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    transition:
        background var(--ease),
        transform var(--ease-fast),
        box-shadow var(--ease);
    text-decoration: none;
    display: inline-block;
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(184, 144, 42, 0.32);
}

.hero-mobile {
    display: none;
}
/* Content sits above overlays */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    min-height: 472px;
    padding-bottom: 52px;
    top: 5%;
    left: 5%;
}

/* .hero {
  position: relative;
 height: 100vh;
}

.hero-bg {
  position: absolute;
  top:25px;
inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-position: 90% 20%; 
} */

.hero {
    position: relative;
    height: calc(100vh - 76px);
    margin-top: 76px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: 90% 20%; */
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ── Left text panel ── */
.hero-left {
    /* padding: 48px 0 48px 80px; */
    padding: 50px 80px 88px 94px;
    max-width: 763px;
    /* max-width: 560px; */
}

/* Eyebrow label */
.hero-eyebrow {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Main title */
.hero-title {
    font-family: "Kokila", serif;
    font-size: 65px;
    font-weight: 400;
    line-height: 1;
    color: var(--cream);
    margin-bottom: 14px;
}

/* Gold highlighted line */
.hero-title-accent {
    display: inline-block;
    background: linear-gradient(
        to right,
        var(--gold) 0%,
        var(--gold) 50%,
        rgba(201, 168, 76, 0) 100%
    );
    padding: 6px 48px 5px 0;
    margin-top: 6px;
    margin-bottom: 22px;
}
.hero-title-accent span {
    font-family: "Kokila", serif;
    font-size: 52px;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.1;
}

/* Subtitle */
.hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.86);
    max-width: 400px;
    margin-bottom: 36px;
}

/* CTA row */
.hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Pill outline button */
.btn-outline-pill {
    display: inline-block;
    /* font-family: 'Lato', sans-serif; */
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #000;
    background-color: var(--white);
    text-decoration: none;
    padding: 14px 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.48);
    border-radius: 50px;
    transition:
        border-color var(--ease),
        color var(--ease);
    cursor: pointer;
    /* background: transparent; */
}
.btn-outline-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Decorative gold frame (SVG, desktop only) ── */
.hero-deco-frame {
    position: absolute;
    right: 3%;
    top: 6%;
    width: 44%;
    max-width: 420px;
    height: 88%;
    z-index: 3;
    pointer-events: none;
}

/* ══════════════════════════════
       INFO BAR
    ══════════════════════════════ */
.hero-info-bar {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--gold-bar);
    opacity: 0.8;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 13px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.info-item {
    font-family: "Kokila", serif;
    font-size: 20px;
    font-weight: 100;
    /* letter-spacing: 0.18em; */
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    padding: 4px 18px;
}

.info-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
}

/* ══════════════════════════════
       TABLET  ≤ 1024px
    ══════════════════════════════ */
@media (max-width: 1024px) {
    .hero-left {
        padding: 48px 0 48px 48px;
        max-width: 500px;
    }
    .hero-title {
        font-size: 46px;
    }
    .hero-title-accent span {
        font-size: 42px;
    }
    .hero-deco-frame {
        width: 40%;
        right: 2%;
    }
    .info-item {
        font-size: 10px;
        padding: 4px 14px;
    }
}

@media (max-width: 768px) {
    .stats-dark-section {
        padding: 40px 20px !important;
    }

    .stats-dark-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 20px !important;
    }

    .stat-dark-box {
        min-width: 0 !important;
        gap: 12px !important;
        align-items: center;
    }

    .stat-dark-num-box {
        min-width: 75px !important;
        padding: 14px 16px !important;
    }

    .stat-dark-num-box span:first-child {
        font-size: 29px !important;
    }

    .stat-dark-box > div:last-child {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }
}

/* ══════════════════════════════════════════════════
   SECTION — BASE
══════════════════════════════════════════════════ */
.section {
    padding: 120px 100px;
}
.section-center {
    text-align: center;
}

.section-title {
    font-family: "Kokila", serif;
    font-size: 49px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--warm-black);
    margin-bottom: 6px;
}
.section-lead {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.88;
    color: var(--mid);
    /* max-width: 600px; */
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   PROBLEM SECTION — dark luxury
══════════════════════════════════════════════════ */
.problem-section {
    background: #181410;
    padding: 80px 100px;
    color: var(--white);
}
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
    margin-top: 64px;
}
.problem-title {
    color: var(--cream);
}
.problem-lead {
    font-family: "Kokila", sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.88;
    color: rgba(255, 255, 255, 0.52);
    max-width: none;
    margin: 0 0 14px;
}

/* Market continuum */
.problem-continuum {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.continuum-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 22px 20px 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
    position: relative;
    transition: all 0.36s ease;
    cursor: pointer;
    /* font-size:18px; */
}
.continuum-item:last-child {
    border-bottom: none;
}
.continuum-item:hover {
    background: rgba(184, 144, 42, 0.05);
    padding-left: 20px;
}
.continuum-num {
    font-family: "Kokila", serif;
    font-size: 34px;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 300;
    min-width: 44px;
    line-height: 1;
    transition: color 0.36s ease;
}
.continuum-text {
    display: flex;
    flex-direction: column;
}
.continuum-name {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(247, 243, 236, 0.7);
    margin-bottom: 4px;
    transition: color 0.36s ease;
}
.continuum-desc {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.32);
    transition: color 0.36s ease;
}
/* .proven-model-section {
  background-image: url(./images/Pattern.jpeg);
} */

/* .proven-model-section {
    background-image: url('./images/Pattern.jpeg');
    background-repeat: repeat;
} */
.proven-model-section {
    background-image: url("./images/Pattern.jpeg");
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.proven-model-section {
    width: 100%;

    padding: 70px 7%;

    display: grid;

    grid-template-columns:
        minmax(250px, 0.9fr)
        minmax(260px, 0.8fr)
        minmax(360px, 1fr);

    align-items: center;

    gap: 45px;

    background-image: url("./images/Pattern.jpeg");
    background-repeat: no-repeat;
    background-size: 100% auto;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.proven-model-content {
    width: 100%;
}

.proven-model-content h2 {
    margin: 0 0 22px;

    font-family: "Kokila", serif;

    font-size: clamp(38px, 3vw, 52px);

    font-weight: 400;

    line-height: 1.12;

    color: #2a2a2a;
}

.proven-model-content > p {
    max-width: 390px;

    margin: 0 0 34px;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: #444;
}

/* =====================================================
   LIST
===================================================== */

.proven-model-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.proven-model-item {
    display: flex;

    align-items: center;

    gap: 14px;
}

.proven-model-item > span {
    width: 4px;

    height: 18px;

    flex-shrink: 0;

    background: #d0ab50;
}

.proven-model-item p {
    margin: 0;

    font-family: "Kokila", serif;

    font-size: 18px;

    color: #333;
}

/* =====================================================
   CENTRE IMAGE
===================================================== */

.proven-model-image {
    width: 100%;
}

.proven-model-image img {
    display: block;

    width: 100%;

    height: 430px;

    object-fit: cover;

    border: 5px solid #ffffff;

    border-radius: 5px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* =====================================================
   FORM
===================================================== */

.proven-model-form {
    width: 100%;
}

.proven-model-form .apply-card {
    width: 100%;

    border: 0;

    border-radius: 0;

    background: transparent;

    box-shadow: none;
}

.proven-model-form .apply-body {
    padding: 0;
}

/* Remove old green form heading */

.proven-model-form .head {
    display: none;
}

/* =====================================================
   STEP DETAILS
===================================================== */

.proven-model-form .step-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 10px;

    font-family: "Poppins";

    font-size: 17px;

    color: #292524;
}

.proven-model-form .progress-track {
    height: 7px;

    margin-bottom: 32px;

    border-radius: 20px;

    background: #020202;

    overflow: hidden;
}

.proven-model-form .progress-fill {
    height: 100%;

    border-radius: 20px;

    background: #d0ab50;

    transition: width 0.4s ease;
}

/* =====================================================
   QUESTIONS
===================================================== */

.proven-model-form .question {
    margin: 0 0 22px;

    font-family: "Kokila", serif;

    font-size: clamp(29px, 2.4vw, 39px);

    font-weight: 400;

    line-height: 1.05;

    color: #292524;
}

/* =====================================================
   OPTIONS
===================================================== */

.proven-model-form .options {
    display: flex;

    flex-direction: column;

    gap: 11px;

    margin-bottom: 28px;
}

.proven-model-form .radio-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.proven-model-form .radio-option label {
    display: flex;

    align-items: center;

    min-height: 40px;

    padding: 15px 18px;

    border: 1px solid #777;

    border-radius: 8px;

    background: #020202;

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease;
}

.proven-model-form .radio-option label:hover {
    /* border-color: #d0ab50; */

    background: #fff;
    color: #020202;

    transform: translateX(3px);
}

.proven-model-form .radio-option input:checked + label {
    border-color: #d0ab50;

    background: rgba(208, 171, 80, 0.14);

    box-shadow: inset 4px 0 0 #d0ab50;
    color: #000;
}

/* =====================================================
   FORM INPUTS
===================================================== */

.proven-model-form .form-input {
    width: 100%;

    height: 52px;

    margin-bottom: 13px;

    padding: 0 16px;

    border: 1px solid #777;

    border-radius: 7px;

    outline: none;

    background: rgba(255, 255, 255, 0.45);

    color: #292524;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.proven-model-form .form-input:focus {
    border-color: #d0ab50;

    box-shadow: 0 0 0 3px rgba(208, 171, 80, 0.12);
}

.proven-model-form select.form-input {
    cursor: pointer;
}

/* =====================================================
   BUTTONS
===================================================== */

.proven-model-form .btn {
    width: 100%;

    min-height: 52px;

    border: 0;

    border-radius: 3px;

    background: #c27e35;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.2s ease;
    margin-top: 20px;
}

.proven-model-form .btn:hover {
    background: #d0ab50;

    transform: translateY(-2px);
}

/* =====================================================
   TERMS
===================================================== */

.proven-model-form .terms {
    margin: 18px 0 0;

    font-family: "Poppins";

    font-size: 10px;

    line-height: 1.6;

    color: #444;
    text-align: center;
}

.proven-model-form .terms a {
    color: #292524;

    text-decoration: none;
}

.mobile-form {
    display: none;
}

@media (max-width: 768px) {
    .proven-model-section {
        padding: 50px 20px !important;
        gap: 40px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .proven-model-section > div:first-child {
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .proven-model-section > div:first-child img {
        width: 100% !important;
        height: 280px !important;
        object-fit: cover;
        border-width: 2px !important;
    }

    .proven-model-section > div:last-child {
        min-width: 100% !important;
        max-width: 100% !important;
        text-align: left;
        display: none;
    }

    .mobile-form {
        display: flex;
        flex-direction: column;
        margin: -55vh auto 0px; /* pulls the form up to overlap the bottom
                                   quarter of .hero-mobile-visual, same visual
                                   spot as the old "top: 25%" - but as a normal
                                   flow element it can now grow freely below
                                   without being clipped. */
        width: 74%;
        background: #f7dfa4;
        padding: 20px;
        position: relative;
        z-index: 1;
        border-radius: 35px;
    }

    .proven-model-section h2 {
        font-size: 34px !important;
        line-height: 1 !important;
        margin-bottom: 16px !important;
    }

    .proven-model-section p {
        max-width: 100% !important;
        font-size: 14px !important;
        /* margin-bottom: 28px !important; */
    }

    .proven-model-section > div:last-child > div {
        gap: 16px !important;
    }

    .proven-model-section span {
        font-size: 17px !important;
        /* margin-bottom: 25px; */
    }
}

/* Mobile Only */
@media (max-width: 768px) {
    .exclusive-rights-section {
        display: none;
        padding: 50px 20px !important;
    }

    .exclusive-rights-section h2 {
        font-size: 34px !important;
        line-height: 1.2;
        margin-bottom: 12px !important;
    }

    .exclusive-rights-section h3 {
        font-size: 25px !important;
        line-height: 1.3;
        margin-bottom: 14px !important;
    }

    .exclusive-rights-section p {
        font-size: 19px !important;
        max-width: 100% !important;
        margin-bottom: 35px !important;
    }

    /* Remove the forced line break effect */
    .exclusive-rights-section p br {
        display: none;
    }

    /* Cards container */
    .exclusive-rights-section > div:last-child {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    /* Individual cards */
    .exclusive-rights-section > div:last-child > div {
        padding: 24px 12px !important;
        border-radius: 12px !important;
    }

    /* GIF icons */
    .exclusive-rights-section img {
        width: 55px;
        height: 55px;
        object-fit: contain;
        margin-bottom: 16px;
    }

    /* Card text */
    .exclusive-rights-section span {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }
}

/* Very small mobiles */
@media (max-width: 480px) {
    .exclusive-rights-section > div:last-child {
        grid-template-columns: 1fr !important;
    }
}

/* Featured / Carlton item */
.continuum-item.featured .continuum-num {
    color: var(--gold);
}
.continuum-item.featured .continuum-name {
    color: var(--gold);
    font-size: 15px;
}
.continuum-item.featured .continuum-desc {
    color: rgba(232, 213, 160, 0.88);
}
.continuum-item.featured::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--gold),
        transparent
    );
}

/* Hover states for all items */
.continuum-item:hover .continuum-num {
    color: var(--gold);
}
.continuum-item:hover .continuum-name {
    color: var(--gold);
}
.continuum-item:hover .continuum-desc {
    color: rgba(232, 213, 160, 0.8);
}
.continuum-item:hover::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}

/* Insight quote card */
.problem-insight {
    padding: 48px;
    border: 1px solid rgba(184, 144, 42, 0.22);
    background: rgba(184, 144, 42, 0.038);
    position: relative;
    overflow: hidden;
}
.problem-insight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 72px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
.insight-quote {
    font-family: "Kokila", serif;
    font-size: 27px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.58;
    color: var(--cream);
    margin-bottom: 36px;
    padding-left: 16px;
}
.insight-stat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 28px;
    border-top: 1px solid rgba(184, 144, 42, 0.22);
}
.insight-stat-num {
    font-family: "Kokila", serif;
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
}
.insight-stat-text {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.42);
    max-width: 300px;
    line-height: 1.72;
}

/* ══════════════════════════════════════════════════
   AGITATE SECTION — Why State Master Franchise
══════════════════════════════════════════════════ */
.agitate-section {
    background: var(--cream-dark);
    padding: 87px 100px;
}
.agitate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(184, 144, 42, 0.14);
    margin-top: 72px;
    border: 1px solid rgba(184, 144, 42, 0.14);
}
.agitate-card {
    background: var(--cream);
    padding: 52px 40px;
    position: relative;
    transition:
        transform var(--ease),
        box-shadow var(--ease),
        background var(--ease);
    overflow: hidden;
}
.agitate-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
    opacity: 0;
    transition: opacity var(--ease);
}
.agitate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
    z-index: 1;
}
.agitate-card:hover::after {
    opacity: 1;
}

.agitate-icon {
    margin-bottom: 32px;
}
.agitate-icon svg {
    width: 52px;
    height: 52px;
    stroke: var(--gold);
    stroke-width: 1.35;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--ease);
}
.agitate-card:hover .agitate-icon svg {
    transform: translateY(-3px);
}

.agitate-card h3 {
    font-family: "Kokila", serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--warm-black);
    margin-bottom: 18px;
    line-height: 1.2;
}
.agitate-card p {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.88;
    color: var(--mid);
}

/* ══════════════════════════════════════════════════
   STORY / SOLUTION SECTION
══════════════════════════════════════════════════ */
.story-section {
    padding: 80px 100px;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
    margin-top: 64px;
}
.story-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.step-item {
    display: flex;
    gap: 32px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(184, 144, 42, 0.12);
    transition: padding-left var(--ease);
}
.step-item:hover {
    padding-left: 8px;
}
.step-item:last-child {
    border-bottom: none;
}
.step-num {
    font-family: "Kokila", serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    min-width: 32px;
    padding-top: 2px;
    opacity: 0.8;
    transition: opacity var(--ease);
}
.step-item:hover .step-num {
    opacity: 1;
}
.step-content h4 {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-black);
    margin-bottom: 9px;
}
.step-content p {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.78;
    color: var(--mid);
}

.story-visual {
    position: relative;
}
.story-img-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 88px rgba(26, 22, 18, 0.18);
}
.story-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}
.story-img-wrapper:hover .story-img {
    transform: scale(1.04);
}
.story-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 22, 18, 0.88);
    padding: 22px 28px;
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(184, 144, 42, 0.28);
}
.story-img-caption p {
    font-family: "Kokila", serif;
    font-style: italic;
    font-size: 17px;
    color: var(--cream);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   TRANSFORM / EARNINGS SECTION — dark
══════════════════════════════════════════════════ */
.transform-section {
    background: #110e0a;
    padding: 80px 100px;
    color: var(--white);
}
.transform-title-sec {
    color: var(--cream);
}
.transform-lead {
    color: rgba(255, 255, 255, 0.46);
}
.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 72px;
}
.transform-card {
    border: 1px solid rgba(184, 144, 42, 0.16);
    padding: 48px 38px;
    position: relative;
    background: rgba(255, 255, 255, 0.022);
    transition:
        border-color var(--ease),
        background var(--ease),
        transform var(--ease),
        box-shadow var(--ease);
    overflow: hidden;
}
.transform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(184, 144, 42, 0.28),
        transparent
    );
    transition: background var(--ease);
}
.transform-card:hover {
    border-color: rgba(184, 144, 42, 0.52);
    background: rgba(184, 144, 42, 0.042);
    transform: translateY(-8px);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.32),
        0 0 44px rgba(184, 144, 42, 0.055);
}
.transform-card.highlight {
    border-color: rgba(184, 144, 42, 0.7);
    background: rgba(184, 144, 42, 0.065);
}
.transform-card.highlight::before {
    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
    opacity: 0.52;
}
.transform-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: "Kokila", sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 28px;
}
.transform-num {
    font-family: "Kokila", serif;
    font-size: 60px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 14px;
}
.transform-title {
    font-family: "Kokila", sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 18px;
    min-height: 32px;
}
.transform-desc {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.42);
}

/* ══════════════════════════════════════════════════
   OFFER / INVESTMENT ZONES
══════════════════════════════════════════════════ */
.offer-section {
    padding: 80px 100px;
}
.offer-zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 72px;
}
.zone-card {
    background: var(--white);
    border: 1px solid rgba(184, 144, 42, 0.18);
    padding: 52px 38px;
    position: relative;
    transition:
        transform var(--ease),
        box-shadow var(--ease),
        border-color var(--ease);
}
.zone-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184, 144, 42, 0.44);
}
.zone-card.featured {
    border-color: var(--gold);
    background: var(--cream);
    box-shadow: 0 8px 44px rgba(184, 144, 42, 0.11);
}
.zone-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(184, 144, 42, 0.22);
}
.zone-featured-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-family: "Kokila", sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    padding: 6px 20px;
    white-space: nowrap;
}
.zone-label {
    font-family: "Kokila", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.zone-name {
    font-family: "Kokila", serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--warm-black);
    margin-bottom: 20px;
}
.zone-price {
    font-family: "Kokila", serif;
    font-size: 44px;
    font-weight: 400;
    color: var(--warm-black);
    line-height: 1;
    margin-bottom: 6px;
}
.zone-price-sub {
    font-family: "Kokila", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--light-text);
    margin-bottom: 32px;
}
.zone-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(184, 144, 42, 0.14);
}
.zone-features li {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 14px;
}
.zone-features li::before {
    content: "";
    width: 18px;
    height: 1px;
    /* background: var(--gold); */
    flex-shrink: 0;
}
.zone-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: "Kokila", sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 16px;
    cursor: pointer;
    transition:
        background var(--ease),
        color var(--ease),
        transform var(--ease-fast);
    text-decoration: none;
    display: block;
    text-align: center;
}
.zone-btn:hover,
.zone-card.featured .zone-btn {
    background: var(--gold);
    color: var(--white);
}

/* ══════════════════════════════════════════════════
   REVENUE PROJECTIONS
══════════════════════════════════════════════════ */
.revenue-section {
    background: var(--cream-dark);
    padding: 80px 100px;
}
.revenue-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(184, 144, 42, 0.14);
    border: 1px solid rgba(184, 144, 42, 0.14);
    margin: 72px 0 44px;
}
.scenario {
    background: var(--cream-dark);
    padding: 56px 44px;
    text-align: center;
    position: relative;
    transition: background var(--ease);
}
.scenario:hover {
    background: var(--cream);
}
.scenario.mid {
    background: var(--cream);
}
.scenario.mid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
}
.scenario-label {
    font-family: "Kokila", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.scenario-centres {
    font-family: "Kokila", serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--warm-black);
    line-height: 1;
    margin-bottom: 6px;
}
.scenario-centres-label {
    font-family: "Kokila", sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-text);
    margin-bottom: 32px;
}
.scenario-math {
    font-family: "Kokila", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.78;
    margin-bottom: 24px;
}
.scenario-result {
    background: var(--warm-black);
    padding: 20px;
    margin-top: 8px;
}
.scenario-result-num {
    font-family: "Kokila", serif;
    font-size: 30px;
    color: var(--gold);
    font-weight: 400;
}
.scenario-result-label {
    font-family: "Kokila", sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 6px;
}
.revenue-note {
    font-family: "Kokila", sans-serif;
    font-size: 17px;
    color: var(--light-text);
    text-align: center;
    font-style: italic;
    line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   WHAT YOU OWN
══════════════════════════════════════════════════ */
.owns-section {
    padding: 80px 100px;
}
.owns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(184, 144, 42, 0.11);
    border: 1px solid rgba(184, 144, 42, 0.11);
    margin-top: 72px;
}
.owns-item {
    background: var(--white);
    padding: 44px 40px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition:
        background var(--ease),
        padding-left var(--ease);
}
.owns-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gold);
    transition: width var(--ease);
}
.owns-item:hover::before {
    width: 3px;
}
.owns-item:hover {
    background: rgba(247, 243, 236, 0.72);
    padding-left: 44px;
}
.owns-num {
    font-family: "Kokila", serif;
    font-size: 44px;
    color: rgba(184, 144, 42, 0.65);
    font-weight: 300;
    line-height: 1;
    min-width: 40px;
    transition: color var(--ease);
}
.owns-item:hover .owns-num {
    color: var(--gold);
}
.owns-content h4 {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warm-black);
    margin-bottom: 12px;
}
.owns-content p {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.78;
    color: var(--mid);
}

/* ══════════════════════════════════════════════════
   CTA SECTION — dark luxury
══════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    overflow: hidden;

    background: #020202;

    padding: 110px 30px;

    text-align: center;
}

/* Decorative gold circle */

.cta-section::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 700px;
    height: 700px;

    border: 1px solid rgba(208, 171, 80, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

/* Outer decorative circle */

.cta-section::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 1050px;
    height: 1050px;

    border: 1px solid rgba(208, 171, 80, 0.04);

    border-radius: 50%;

    pointer-events: none;
}

/* Main content wrapper */

.cta-inner {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    display: flex;

    justify-content: center;

    align-items: center;
}

/* Centre content */

.cta-content {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}

/* Top label */

.cta-content .label {
    display: block;

    color: rgba(208, 171, 80, 0.75);

    font-family: "Kokila", serif;

    font-size: 14px;

    font-weight: 400;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    margin-bottom: 18px;
}

/* Gold divider */

.cta-content .rule {
    width: 55px;

    height: 1px;

    background: rgba(208, 171, 80, 0.55);

    margin-bottom: 25px;
}

/* Main heading */

.cta-title {
    max-width: 850px;
    margin: 0 0 28px;
    color: #ffffff;
    font-family: "Kokila", serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

/* Highlighted heading */

.cta-title em {
    color: #d0ab50;

    font-style: italic;
}

/* Description */

.cta-subtitle {
    max-width: 650px;

    margin: 0 0 38px;

    color: rgba(255, 255, 255, 0.7);

    font-family: "Kokila", serif;

    font-size: 22px;

    font-weight: 300;

    line-height: 1.1;
}

/* CTA button */

.btn-gold {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 290px;

    padding: 18px 35px;

    background: #d0ab50;

    color: #020202;

    border: 1px solid #d0ab50;

    text-decoration: none;

    font-family: "Kokila", serif;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 0.1em;

    /* text-transform: uppercase; */

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-gold:hover {
    background: transparent;

    color: #d0ab50;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(208, 171, 80, 0.18);
}

/* Confidential note */

.cta-note {
    margin: 17px 0 0;

    color: rgba(255, 255, 255, 0.4);

    font-family: "Kokila", serif;

    font-size: 12px;

    letter-spacing: 0.08em;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 20px;
    }

    .cta-section::before {
        width: 440px;

        height: 440px;
    }

    .cta-section::after {
        width: 650px;

        height: 650px;
    }

    .cta-title {
        font-size: 40px;

        line-height: 1.12;
    }

    .cta-subtitle {
        max-width: 100%;

        font-size: 17px;

        line-height: 1.65;
    }

    .cta-content .label {
        display: none;
        font-size: 11px;

        letter-spacing: 0.15em;
    }

    .cta-content .rule {
        display: none;
    }
    .btn-gold {
        width: 100%;

        max-width: 330px;

        min-width: auto;

        padding: 17px 20px;

        font-size: 13px;
    }

    .cta-note {
        font-size: 10px;

        line-height: 1.6;
    }
}

/* ══════════════════════════════════════════════════
   FOOTER — ultra-dark luxury · centered stack
══════════════════════════════════════════════════ */
footer {
    background: #070707;
    padding: 48px 100px 36px;
    border-top: 1px solid rgba(184, 144, 42, 0.11);
    text-align: center;
}
.footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-brand-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
}
.footer-brand p {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgb(255 255 255 / 66%);
    line-height: 1.8;
    margin-top: 20px;
    max-width: 800px;
    text-align: center;
}
.footer-col h5 {
    font-family: "Kokila", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.footer-col a {
    display: block;
    font-family: "Kokila", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.32);
    text-decoration: none;
    margin-bottom: 13px;
    transition:
        color var(--ease),
        padding-left var(--ease);
}
.footer-col a:hover {
    color: var(--gold);
    padding-left: 6px;
}
.footer-bottom {
    margin-top: 10px;
    padding-top: 10px;
    /* border-top: 1px solid rgba(255,255,255,0.06); */
}
.footer-bottom p {
    font-family: "Kokila", sans-serif;
    font-size: 13px;
    color: rgb(255 255 255 / 57%);
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 0;
}
.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footer-powered {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 144, 42, 0.09);
    font-family: "Kokila", sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}
.footer-powered a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--ease);
}

.footer-powered a:hover {
    color: var(--gold-light);
}

/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-up {
    animation: fadeUp 0.82s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.fade-up-1 {
    animation-delay: 0.1s;
}
.fade-up-2 {
    animation-delay: 0.22s;
}
.fade-up-3 {
    animation-delay: 0.36s;
}
.fade-up-4 {
    animation-delay: 0.52s;
}
.fade-up-5 {
    animation-delay: 0.68s;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — max 1023px  (base mobile/tablet reset)
══════════════════════════════════════════════════ */
@media (max-width: 1023px) {
    nav {
        padding: 0 28px;
        height: 72px;
    }
    .nav-right .nav-link {
        display: none;
    }

    .hero {
        padding-top: 72px;
    }
    .hero-content {
        min-height: calc(80vh - 382px);
        padding-top: 32px;
    }
    .hero .hero-left {
        max-width: 100%;
        padding: 60px 44px 152px;
    }
    .hero .hero-badge {
        right: 28px;
        bottom: 84px;
        max-width: 256px;
        padding: 18px 22px;
    }
    .hero .powered-by {
        right: 28px;
        top: calc(72px + 24px);
    }

    .hero-title {
        font-size: 39px !important;
    }
    .section-title {
        font-size: 42px;
    }
    .cta-title {
        font-size: 37px;
    }

    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section,
    .cta-section {
        padding: 80px 44px;
    }
    footer {
        padding: 60px 44px 36px;
    }
    .gold-divider {
        margin: 0 44px;
    }

    .problem-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .agitate-grid,
    .transform-grid,
    .offer-zones,
    .revenue-scenarios,
    .owns-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════
   1920px+ — ultra-wide containment (1920 – 2559)
══════════════════════════════════════════════════ */
@media (min-width: 1920px) {
    nav {
        padding: 0 140px;
    }
    .hero .hero-left {
        padding: 62px 80px 100px 180px;
    }
    .hero-title {
        font-size: 66px !important;
    }
    .section-title {
        font-size: 64px !important;
    }
    .cta-title {
        font-size: 64px;
    }
    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section,
    .cta-section {
        padding: 140px 180px;
    }
    footer {
        padding: 100px 180px 60px;
    }
    .gold-divider {
        margin: 0 180px;
    }
    .problem-grid,
    .story-grid {
        gap: 112px;
    }
    .agitate-grid,
    .transform-grid,
    .offer-zones,
    .revenue-scenarios,
    .owns-grid {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
    .agitate-grid {
        margin-top: 72px;
    }
    .transform-grid {
        margin-top: 72px;
    }
    .offer-zones {
        margin-top: 72px;
    }
    .revenue-scenarios {
        margin: 72px auto 44px;
    }
    .owns-grid {
        margin-top: 72px;
    }
    .cta-form {
        max-width: 540px;
    }
    .footer-grid {
        max-width: 1600px;
        margin: 0 auto 56px;
    }
}

/* ══════════════════════════════════════════════════
   1440px – 1919px — large desktop containment
══════════════════════════════════════════════════ */
@media (min-width: 1440px) and (max-width: 1919px) {
    nav {
        padding: 0 100px;
    }
    .nav-right {
        gap: 40px;
    }

    .hero-title {
        font-size: 65px !important;
    }
    .hero-subtitle {
        font-size: 19px;
        max-width: 520px;
    }
    .hero-stats {
        gap: 52px;
    }

    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section,
    .cta-section {
        padding: 50px 120px;
    }
    .fi-section {
        padding: 120px 120px;
    }
    footer {
        padding: 30px 120px 22px;
    }
    .gold-divider {
        margin: 0 120px;
    }

    .section-title {
        font-size: 52px !important;
    }
    .cta-title {
        font-size: 44px;
    }
    .section-lead {
        font-size: 19px;
    }

    .agitate-grid,
    .transform-grid,
    .offer-zones,
    .revenue-scenarios,
    .owns-grid {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
    }
    .agitate-grid {
        margin-top: 72px;
    }
    .transform-grid {
        margin-top: 72px;
    }
    .offer-zones {
        margin-top: 72px;
    }
    .revenue-scenarios {
        margin: 72px auto 44px;
    }
    .owns-grid {
        margin-top: 72px;
    }
    .footer-grid {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }

    .problem-grid {
        gap: 100px;
    }
    .story-grid {
        gap: 100px;
    }
    .transform-num {
        font-size: 68px;
    }
    .scenario-centres {
        font-size: 31px;
    }
    .zone-price {
        font-size: 49px;
    }
}

/* ══════════════════════════════════════════════════
   1024px – 1279px — standard laptop / 1024 screen
══════════════════════════════════════════════════ */
@media (min-width: 1024px) and (max-width: 1279px) {
    nav {
        padding: 0 36px;
    }
    .nav-right {
        gap: 22px;
    }
    .hero .hero-left {
        padding: 45px 52px 72px 60px;
    }
    .hero-title {
        font-size: 43px !important;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section,
    .cta-section {
        padding: 92px 60px;
    }
    footer {
        padding: 64px 60px 40px;
    }
    .gold-divider {
        margin: 0 60px;
    }
    .section-title {
        font-size: 46px !important;
    }
    .cta-title {
        font-size: 43px;
    }
    .problem-grid {
        gap: 64px;
    }
    .story-grid {
        gap: 60px;
    }
    .agitate-card {
        padding: 44px 32px;
    }
    .transform-card {
        padding: 38px 28px;
    }
    .zone-card {
        padding: 44px 28px;
    }
    .scenario {
        padding: 44px 32px;
    }
    .owns-item {
        padding: 38px 32px;
    }
}

/* ══════════════════════════════════════════════════
   768px – 1023px — tablet
══════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {
    nav {
        padding: 0 28px;
        height: 68px;
    }
    .hero {
        min-height: auto;
        padding-top: 68px;
    }
    .hero-content {
        min-height: calc(100vh - 68px);
        padding-top: 28px;
    }
    .hero .hero-left {
        padding: 36px 44px 152px;
    }
    .hero-title {
        font-size: 35px !important;
    }
    .hero-subtitle {
        max-width: 100%;
        font-size: 15px;
    }
    .hero-stats {
        gap: 28px;
    }
    .hero-ctas {
        flex-wrap: wrap;
    }
    .hero .hero-badge {
        right: 24px;
        bottom: 84px;
        max-width: 250px;
        padding: 16px 20px;
    }
    .hero .powered-by {
        right: 24px;
        top: calc(68px + 22px);
    }

    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section,
    .cta-section {
        padding: 72px 44px;
    }
    footer {
        padding: 52px 44px 32px;
    }
    .gold-divider {
        margin: 0 44px;
    }

    .section-title {
        font-size: 38px !important;
    }
    .cta-title {
        font-size: 34px;
    }
    .section-lead {
        max-width: 100%;
    }

    /* Restore 2-column grids on tablet */
    .problem-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 52px;
    }
    .problem-insight {
        padding: 36px 32px;
    }
    .insight-quote {
        font-size: 21px;
    }

    .agitate-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 52px;
    }
    .agitate-card {
        padding: 40px 32px;
    }

    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 52px;
    }

    .transform-grid {
        margin-top: 52px;
    }
    .transform-card {
        padding: 36px 32px;
    }

    .offer-zones {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 52px auto 0;
    }

    .revenue-scenarios {
        grid-template-columns: 1fr;
        margin-top: 52px;
    }
    .scenario {
        padding: 44px 44px;
    }

    .owns-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 52px;
    }
    .owns-item:hover {
        padding-left: 44px;
    }
}

/* ══════════════════════════════════════════════════
   max 767px — mobile base
══════════════════════════════════════════════════ */
@media (max-width: 767px) {
    /* ── Nav ── */
    nav {
        padding: 0 20px;
        height: 64px;
    }
    .nav-cta {
        padding: 9px 16px;
        font-size: 10px;
    }
    .nav-brand span:first-child {
        font-size: 13px;
    }
    .nav-logo-img {
        height: 40px;
    }

    /* ── Hero layout ── */
    .hero {
        min-height: auto;
        padding-top: 64px;
        display: block;
    }
    .hero-content {
        min-height: auto;
        align-items: flex-start;
        padding-top: 0;
    }
    .hero .hero-left {
        padding: 32px 20px 36px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    /* ── Hero title — fluid clamp ── */
    .hero-title {
        font-size: clamp(30px, 8.5vw, 42px) !important;
        line-height: 1.08;
        margin-bottom: 16px;
        text-align: center;
    }
    .hero-eyebrow {
        margin-bottom: 16px;
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    /* ── Stats — 3-column grid ── */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 28px;
        padding-bottom: 28px;
    }
    .stat-num {
        font-size: 26px;
    }
    .stat-label {
        font-size: 8.5px;
        letter-spacing: 0.15em;
        margin-top: 6px;
    }

    /* ── CTA buttons — full-width stacked ── */
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        width: 100%;
    }
    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        box-sizing: border-box;
        display: block;
    }
    .hero .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        box-sizing: border-box;
        display: block;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* ── Hero badge — flows below hero content (not absolute) ── */
    .hero .hero-badge {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        max-width: 100%;
        width: calc(100% - 32px);
        margin: 0 16px 28px;
        padding: 18px 20px;
    }
    .hero-badge-title {
        font-size: 15px;
    }
    .hero-badge-sub {
        font-size: 11px;
    }
    .hero-dots {
        bottom: 12px;
    }

    /* ── Sections ── */
    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section {
        padding: 56px 20px;
    }
    .cta-section {
        padding: 72px 20px;
    }
    footer {
        padding: 52px 20px 32px;
    }
    .gold-divider {
        margin: 0 20px;
    }

    /* ── Typography ── */
    .section-title {
        font-size: 28px !important;
        line-height: 1.12;
    }
    .section-lead {
        font-size: 15px;
        max-width: 100%;
    }
    .cta-title {
        font-size: 24px;
        line-height: 1.12;
    }
    .cta-subtitle {
        font-size: 17px;
        font-family: "poppins";
        line-height: 1.2;
    }

    /* ── Problem ── */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    .problem-insight {
        padding: 28px 24px;
    }
    .insight-quote {
        font-size: 18px;
    }
    .insight-stat-num {
        font-size: 28px !important;
    }
    .continuum-item.featured::before {
        left: 0;
    }

    /* ── Agitate ── */
    .agitate-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    .agitate-card {
        padding: 32px 24px;
    }
    .agitate-card h3 {
        font-size: 22px;
    }

    /* ── Story ── */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    /* ── Transform ── */
    .transform-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 40px;
    }
    .transform-card {
        padding: 28px 24px;
    }
    .transform-num {
        font-size: 48px;
    }
    .transform-grid .transform-card:nth-child(3) .transform-num {
        min-height: auto;
    }

    /* ── Offer zones ── */
    .offer-zones {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }
    .zone-card {
        padding: 40px 24px;
    }
    .zone-btn {
        padding: 16px;
    }
    .zone-featured-tag {
        font-size: 9px;
        padding: 5px 14px;
    }

    /* ── Revenue ── */
    .revenue-scenarios {
        grid-template-columns: 1fr;
        margin: 40px 0 32px;
    }
    .scenario {
        padding: 32px 24px;
    }
    .scenario-centres {
        font-size: 22px;
    }

    /* ── Owns ── */
    .owns-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    .owns-item {
        padding: 28px 20px;
    }
    .owns-item:hover {
        padding-left: 24px;
    }

    /* ── CTA section ── */
    .cta-inner {
        gap: 32px;
    }
    .cta-left {
        align-items: center;
        text-align: center;
        margin-bottom: 0;
    }
    .cta-left .label {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-left .rule {
        width: 44px;
        height: 1px;
        margin: 12px auto 18px;
    }
    .cta-left .cta-title {
        text-align: center;
        margin: -11px auto 20px;
    }
    .cta-left .cta-subtitle {
        text-align: center;
        margin: 0 auto;
        font-size: 14px;
    }
    .cta-right {
        padding: 28px 20px;
    }

    /* ── CTA form ── */
    .cta-form {
        max-width: 100%;
    }
    .cta-form-row {
        flex-direction: column;
        gap: 12px;
    }
    .btn-gold,
    .btn-outline-light {
        padding: 16px 20px;
        width: 100%;
        text-align: center;
        display: block;
        box-sizing: border-box;
        font-family: "poppins";
        letter-spacing: 0.1em;
        border-radius: 10px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 48px;
    }
    .footer-brand p {
        max-width: 100%;
    }
}

/* ══════════════════════════════════════════════════
   MOBILE CENTER ALIGNMENT — max 767px only
══════════════════════════════════════════════════ */
@media (max-width: 767px) {
    /* Labels & decorative rules */
    .label {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .rule {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-mobile-logo {
        display: flex;
        justify-content: center;
        padding: 20px;
        position: relative;
        z-index: 1;
    }

    .hero-mobile-logo img {
        height: 90px;
    }
    /* Hero */
    .hero .hero-left {
        text-align: center;
    }
    .hero-eyebrow {
        text-align: center;
    }
    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        justify-content: center;
    }

    /* Section headings */
    .section-title {
        text-align: center;
    }
    .section-lead {
        text-align: center;
    }

    /* Problem section */
    .problem-title {
        text-align: center;
    }
    .problem-lead {
        text-align: center;
    }
    .problem-insight {
        text-align: center;
    }
    .insight-stat {
        align-items: center;
    }
    .insight-stat-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .insight-quote {
        text-align: center;
    }

    /* Agitate cards */
    .agitate-card {
        text-align: center;
    }
    .agitate-icon {
        display: flex;
        justify-content: center;
    }

    /* Story steps */
    .step-item {
        flex-direction: column;
        align-items: center;
    }
    .step-content {
        text-align: center;
    }

    /* Transform cards */
    .transform-card {
        text-align: center;
    }
    .transform-badge {
        display: block;
        text-align: center;
    }
    .transform-desc {
        text-align: center;
    }

    /* Offer zones */
    .zone-card {
        text-align: center;
    }
    .zone-features li {
        justify-content: center;
    }
    .zone-features li::before {
        display: none;
    }

    /* Owns section */
    .owns-item {
        flex-direction: column;
        align-items: center;
    }
    .owns-content {
        text-align: center;
    }
    .owns-item:hover {
        padding-left: 20px;
    }

    /* Continuum items */
    .continuum-text {
        text-align: center;
    }
    .continuum-item {
        justify-content: center;
    }

    /* FI section */
    .fi-left {
        align-items: center;
        text-align: center;
    }
    .fi-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .fi-card {
        text-align: center;
    }
    .fi-card-title {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        padding: 0 16px;
    }
    .fi-eyebrow,
    .fi-eyebrow-right {
        text-align: center;
    }
    .fi-heading,
    .fi-subheading {
        text-align: center;
    }
    .fi-heading-right,
    .fi-subheading-right {
        text-align: center;
    }
    .fi-desc-right {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .fi-amount-box {
        margin-left: auto;
        margin-right: auto;
        align-items: center;
    }
    .fi-amount-num,
    .fi-amount-label {
        text-align: center;
    }
    .fi-split-list {
        margin-left: auto;
        margin-right: auto;
    }
    .fi-gold-note {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer — 3 lines: logo · description · copyright */
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px 28px;
        gap: 0;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .footer-brand-logo-row {
        justify-content: center;
        margin-bottom: 0;
    }
    .footer-brand-logo-row img {
        height: 52px !important;
        margin: 0 auto;
        display: block;
    }
    .footer-brand p {
        font-size: 12px;
        line-height: 1.7;
        max-width: 100%;
        text-align: center;
        margin-top: 14px;
        margin-bottom: 0;
        padding: 0 8px;
    }
    .footer-bottom {
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        width: 100%;
        text-align: center;
    }
    .footer-bottom p {
        font-size: 11px;
        letter-spacing: 0.06em;
        text-align: center;
        line-height: 1.6;
    }
}

/* ══════════════════════════════════════════════════
   max 576px — small mobile
══════════════════════════════════════════════════ */
@media (max-width: 576px) {
    nav {
        height: 60px;
    }
    .hero {
        padding-top: 60px;
    }
    .hero-content {
        min-height: auto;
    }
    .nav-logo-img {
        height: 34px;
    }
    .section-title {
        font-size: 20px !important;
    }
    .cta-title {
        font-size: 33px;
        color: #d0ab50;
    }
    .cta-title em {
        font-style: normal;
    }
    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section {
        padding: 48px 18px;
    }
    .cta-section {
        padding: 56px 16px;
    }
    .cta-right {
        padding: 24px 18px;
    }
    .cta-inner {
        gap: 28px;
    }
}

/* ══════════════════════════════════════════════════
   max 480px — medium mobile
══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero .hero-left {
        padding: 28px 16px 32px;
    }
    .hero .hero-badge {
        width: calc(100% - 24px);
        margin: 0 12px 24px;
        padding: 14px 16px;
    }
    .hero-stats {
        gap: 10px;
    }
    .stat-num {
        font-size: 24px;
    }
    .stat-label {
        font-size: 8px;
    }
    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section {
        padding: 44px 16px;
    }
    .cta-section {
        padding: 52px 14px;
    }
    .cta-right {
        padding: 22px 16px;
    }
    .cta-inner {
        gap: 24px;
    }
    footer {
        padding: 40px 16px 24px;
    }
    .gold-divider {
        margin: 0 16px;
    }
    .agitate-card {
        padding: 28px 20px;
    }
    .zone-card {
        padding: 32px 20px;
    }
    .transform-card {
        padding: 24px 20px;
    }
    .scenario {
        padding: 28px 20px;
    }
    .owns-item {
        padding: 24px 16px;
    }
    .problem-insight {
        padding: 24px 20px;
    }
}

/* ══════════════════════════════════════════════════
   max 390px — iPhone 14 / modern standard
══════════════════════════════════════════════════ */
@media (max-width: 390px) {
    .hero .hero-left {
        padding: 24px 16px 28px;
    }
    .hero-subtitle {
        font-size: 13px;
    }
    .stat-num {
        font-size: 22px;
    }
    .hero-stats {
        gap: 8px;
    }
}

/* ══════════════════════════════════════════════════
   max 375px — iPhone SE / standard
══════════════════════════════════════════════════ */
@media (max-width: 375px) {
    nav {
        padding: 0 16px;
    }
    .nav-brand span:first-child {
        font-size: 12px;
    }
    .nav-brand span:last-child {
        font-size: 8px;
        letter-spacing: 0.18em;
    }
    .nav-cta {
        padding: 8px 12px;
        font-size: 9px;
    }
    .nav-logo-img {
        height: 28px;
    }
    .hero .hero-left {
        padding: 44px 14px 24px;
    }
    .hero-subtitle {
        font-size: 12.5px;
    }
    .hero .hero-badge {
        width: calc(100% - 20px);
        margin: 0 10px 20px;
        padding: 14px 16px;
    }
    .section-title {
        font-size: 24px !important;
    }
    .cta-title {
        font-size: 19px;
    }
    .insight-quote {
        font-size: 17px;
    }
    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section {
        padding: 40px 14px;
    }
    .cta-section {
        padding: 48px 14px;
    }
    .cta-right {
        padding: 20px 14px;
    }
    .cta-inner {
        gap: 22px;
    }
    footer {
        padding: 36px 14px 22px;
    }
    .gold-divider {
        margin: 0 14px;
    }
}

/* ══════════════════════════════════════════════════
   max 320px — minimum / small Android
══════════════════════════════════════════════════ */
@media (max-width: 320px) {
    .hero-subtitle {
        font-size: 12px;
    }
    .section-title {
        font-size: 22px !important;
    }
    .cta-title {
        font-size: 18px;
    }
    .stat-num {
        font-size: 20px;
    }
    .stat-label {
        font-size: 7.5px;
        letter-spacing: 0.1em;
    }
    .hero-stats {
        gap: 6px;
    }
    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section {
        padding: 36px 12px;
    }
    .cta-section {
        padding: 44px 12px;
    }
    footer {
        padding: 32px 12px 20px;
    }
    .gold-divider {
        margin: 0 12px;
    }
    .hero .hero-left {
        padding: 16px 12px 20px;
    }
    .hero .hero-badge {
        width: calc(100% - 16px);
        margin: 0 8px 16px;
        padding: 12px 14px;
    }
    .agitate-card {
        padding: 24px 16px;
    }
    .zone-card {
        padding: 28px 16px;
    }
    .transform-card {
        padding: 20px 16px;
    }
    .scenario {
        padding: 24px 16px;
    }
    .owns-item {
        padding: 20px 14px;
    }
    .problem-insight {
        padding: 20px 16px;
    }
}

/* ══════════════════════════════════════════════════
   NUMERIC TYPOGRAPHY — Times New Roman
   Financial-report / investment-deck aesthetics
══════════════════════════════════════════════════ */
.stat-num,
.step-num,
.transform-num,
.zone-price,
.scenario-centres,
.scenario-result-num,
.owns-num,
.continuum-num,
.insight-stat-num,
.fi-amount-num {
    font-family: "Kokila", serif;
}

/* ══════════════════════════════════════════════════
   FOCO + INVESTMENT — COMBINED SECTION
══════════════════════════════════════════════════ */
.fi-section {
    background: #e8e3d8;
    padding: 100px 60px;
}
.fi-inner {
    display: grid;
    grid-template-columns: 520px 580px;
    gap: 90px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── Left column ── */
.fi-left {
    display: flex;
    flex-direction: column;
}
.fi-eyebrow {
    font-family: "Kokila", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111111;
    display: block;
    margin-bottom: 18px;
}
.fi-heading {
    font-family: "Kokila", serif;
    font-size: 64px;
    font-weight: 600;
    color: #a9893a;
    line-height: 1;
    margin-bottom: 8px;
}
.fi-subheading {
    font-family: "Kokila", sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px;
    line-height: 1.2;
}
.fi-desc {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 500px;
}
.fi-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.fi-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    max-width: 100%;
}
.fi-card-title {
    font-family: "Kokila", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    background: var(--white);
    border-radius: 12px;
    width: 360px;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: none;
}
.fi-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
}
.fi-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    margin-bottom: 24px;
}
.fi-card-list li:last-child {
    margin-bottom: 0;
}
.fi-card-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.fi-card-list-grid li {
    margin-bottom: 15px;
}
.fi-card-list li::before {
    content: "";
    display: block;
    width: 4px;
    height: 22px;
    background: #f07a22;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Right column — Gold Card ── */
.fi-gold-card {
    background: #c3a75c;
    border-radius: 34px;
    width: 580px;
    padding: 54px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.fi-gold-card::before {
    display: none;
}
.fi-eyebrow-right {
    font-family: "Kokila", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f4e8c2;
    display: block;
    margin-bottom: 20px;
}
.fi-heading-right {
    font-family: "Kokila", serif;
    font-size: 54px;
    font-weight: 600;
    color: #e8e3d8;
    line-height: 1;
    margin-bottom: 6px;
}
.fi-subheading-right {
    font-family: "Kokila", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: rgba(26, 22, 18, 0.85);
    margin-bottom: 18px;
    line-height: 1.2;
}
.fi-desc-right {
    font-family: "Kokila", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(26, 22, 18, 0.75);
    line-height: 1.3;
    margin-bottom: 34px;
    max-width: 430px;
}
.fi-amount-box {
    background: #dec57a;
    border-radius: 24px;
    width: 445px;
    min-height: 130px;
    padding: 24px 28px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.fi-amount-num {
    font-family: "Kokila", Times, serif;
    font-size: 76px;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1;
    margin-bottom: 6px;
}
.fi-amount-label {
    font-family: "Kokila", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgba(26, 22, 18, 0.75);
    line-height: 1.2;
}
.fi-split-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-bottom: 0;
    padding-left: 0;
}
.fi-split-list li {
    font-family: "Kokila", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.fi-split-list li::before {
    content: "✓";
    color: #f07a22;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.fi-split-list li strong {
    font-weight: 700;
}
.fi-gold-note {
    font-family: "Kokila", sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    max-width: 420px;
}

/* ── FOCO+INVEST Responsive ── */

/* Below 1440px: switch fixed columns to flexible so fixed widths can't overflow */
@media (max-width: 1439px) {
    .fi-inner {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
    .fi-gold-card {
        width: 100%;
    }
    .fi-amount-box {
        width: 100%;
    }
}

/* 1280px – 1439px: two-column, generous gap */
@media (min-width: 1280px) and (max-width: 1439px) {
    .fi-section {
        padding: 100px 60px;
    }
    .fi-inner {
        gap: 80px;
    }
}

/* 1024px — two-column, compact */
@media (min-width: 1024px) and (max-width: 1279px) {
    .fi-section {
        padding: 88px 56px;
    }
    .fi-inner {
        gap: 44px;
    }
    .fi-heading {
        font-size: 50px;
    }
    .fi-subheading {
        font-size: 22px;
    }
    .fi-desc {
        font-size: 17px;
    }
    .fi-card-title {
        width: 100%;
        max-width: 360px;
    }
    .fi-card-list li {
        font-size: 16px;
    }
    .fi-gold-card {
        min-height: auto;
        padding: 44px 40px;
        border-radius: 28px;
    }
    .fi-heading-right {
        font-size: 50px;
    }
    .fi-subheading-right {
        font-size: 20px;
    }
    .fi-desc-right {
        font-size: 15px;
    }
    .fi-amount-num {
        font-size: 58px;
    }
    .fi-amount-label {
        font-size: 16px;
    }
    .fi-split-list li {
        font-size: 16px;
    }
    .fi-gold-note {
        font-size: 14px;
    }
}

/* Tablet and below — single column */
@media (max-width: 1023px) {
    .fi-section {
        padding: 80px 44px;
    }
    .fi-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fi-heading {
        font-size: 52px;
    }
    .fi-heading-right {
        font-size: 52px;
    }
    .fi-gold-card {
        min-height: auto;
        border-radius: 28px;
        width: 100%;
    }
    .fi-amount-num {
        font-size: 64px;
    }
    .fi-card-title {
        width: 100%;
        max-width: 100%;
    }
    .fi-amount-box {
        width: 100%;
    }
    .fi-desc-right {
        max-width: 100%;
    }
    .fi-card-list-grid {
        grid-template-columns: 1fr;
    }
}

/* 768px – 1023px: center constrain */
@media (min-width: 768px) and (max-width: 1023px) {
    .fi-section {
        padding: 72px 44px;
    }
    .fi-inner {
        max-width: 700px;
        margin: 0 auto;
    }
    .fi-gold-card {
        width: 100%;
        box-sizing: border-box;
    }
    .fi-amount-box {
        width: 100%;
        box-sizing: border-box;
    }
    .fi-card-list-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .fi-section {
        padding: 56px 20px;
    }
    .fi-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .fi-left {
        align-items: center;
        text-align: center;
    }
    .fi-heading {
        font-size: 40px;
        text-align: center;
    }
    .fi-subheading {
        font-size: 20px;
        text-align: center;
    }
    .fi-eyebrow {
        text-align: center;
    }
    .fi-desc {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 32px;
        text-align: center;
    }
    .fi-cards {
        gap: 20px;
    }
    .fi-card {
        text-align: center;
    }
    .fi-card-title {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        padding: 0 16px;
    }
    .fi-card-list-grid {
        display: flex;
        flex-direction: column;
        width: fit-content;
        margin-left: 50px;
        margin-right: auto;
    }
    .fi-card-list li {
        font-size: 16px;
        margin-bottom: 18px;
        justify-content: flex-start;
        width: 100%;
    }
    .fi-gold-card {
        border-radius: 24px;
        padding: 36px 24px 32px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    .fi-eyebrow-right {
        text-align: center;
    }
    .fi-heading-right {
        font-size: 36px;
        text-align: center;
    }
    .fi-subheading-right {
        font-size: 19px;
        text-align: center;
    }
    .fi-desc-right {
        font-size: 15px;
        max-width: 100%;
        text-align: center;
    }
    .fi-amount-box {
        width: 100%;
        min-height: auto;
        padding: 20px 20px;
        border-radius: 18px;
        margin: 0 auto 28px;
        box-sizing: border-box;
        align-items: center;
    }
    .fi-amount-num {
        font-size: 48px;
        text-align: center;
    }
    .fi-amount-label {
        font-size: 15px;
        text-align: center;
    }
    .fi-split-list {
        display: flex;
        flex-direction: column;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        gap: 12px;
        margin-bottom: 24px;
    }
    .fi-split-list li {
        font-size: 15px;
        justify-content: flex-start;
    }
    .fi-gold-note {
        font-size: 13px;
        max-width: 100%;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .fi-section {
        padding: 48px 16px;
    }
    .fi-gold-card {
        padding: 32px 20px 28px;
        text-align: center;
    }
    .fi-split-list li {
        font-size: 14px;
    }
    .fi-card-list li {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .fi-section {
        padding: 44px 14px;
    }
    .fi-gold-card {
        padding: 28px 18px 24px;
        box-sizing: border-box;
        text-align: center;
    }
    .fi-amount-num {
        font-size: 42px;
        text-align: center;
    }
    .fi-amount-box {
        padding: 18px 16px;
        align-items: center;
    }
}
@media (max-width: 430px) {
    .fi-section {
        padding: 40px 14px;
    }
    .fi-heading {
        font-size: 34px;
        text-align: center;
    }
    .fi-heading-right {
        font-size: 32px;
        text-align: center;
    }
    .fi-gold-card {
        padding: 26px 16px 22px;
    }
    .fi-amount-num {
        font-size: 40px;
        text-align: center;
    }
    .fi-subheading {
        font-size: 18px;
        text-align: center;
    }
    .fi-subheading-right {
        font-size: 17px;
        text-align: center;
    }
}
@media (max-width: 390px) {
    .fi-heading {
        font-size: 32px;
        text-align: center;
    }
    .fi-heading-right {
        font-size: 30px;
        text-align: center;
    }
    .fi-amount-num {
        font-size: 38px;
        text-align: center;
    }
}
@media (max-width: 375px) {
    .fi-section {
        padding: 38px 12px;
    }
    .fi-heading {
        font-size: 30px;
        text-align: center;
    }
    .fi-heading-right {
        font-size: 28px;
        text-align: center;
    }
    .fi-amount-num {
        font-size: 36px;
        text-align: center;
    }
    .fi-subheading {
        font-size: 17px;
        text-align: center;
    }
    .fi-subheading-right {
        font-size: 16px;
        text-align: center;
    }
    .fi-gold-card {
        padding: 24px 14px 20px;
    }
}
@media (max-width: 360px) {
    .fi-section {
        padding: 36px 12px;
    }
    .fi-heading {
        font-size: 28px;
        text-align: center;
    }
    .fi-heading-right {
        font-size: 26px;
        text-align: center;
    }
    .fi-gold-card {
        padding: 22px 14px 18px;
    }
    .fi-amount-num {
        font-size: 34px;
        text-align: center;
    }
    .fi-desc {
        font-size: 14px;
        text-align: center;
    }
    .fi-card-list li {
        font-size: 14px;
    }
}
@media (max-width: 320px) {
    .fi-section {
        padding: 32px 10px;
    }
    .fi-heading {
        font-size: 26px;
        text-align: center;
    }
    .fi-heading-right {
        font-size: 24px;
        text-align: center;
    }
    .fi-amount-num {
        font-size: 30px;
        text-align: center;
    }
    .fi-desc {
        font-size: 13px;
        text-align: center;
    }
    .fi-gold-note {
        font-size: 12px;
        text-align: center;
    }
    .fi-gold-card {
        padding: 20px 12px 16px;
    }
}

/* 1440px — restore exact pixel-spec layout */
@media (min-width: 1440px) and (max-width: 1919px) {
    .fi-section {
        padding: 80px 80px;
    }
    .fi-inner {
        grid-template-columns: 520px 580px;
        gap: 90px;
        max-width: 1280px;
        justify-content: center;
    }
    .fi-gold-card {
        width: 580px;
    }
    .fi-amount-box {
        width: 445px;
        min-height: 130px;
    }
    .fi-heading {
        font-size: 50px;
    }
    .fi-heading-right {
        font-size: 50px;
    }
    .fi-amount-num {
        font-size: 50px;
    }
}

/* 1920px */
@media (min-width: 1920px) {
    .fi-section {
        padding: 140px 100px;
    }
    .fi-inner {
        grid-template-columns: 600px 680px;
        gap: 100px;
        max-width: 1500px;
        justify-content: center;
    }
    .fi-heading {
        font-size: 72px;
    }
    .fi-subheading {
        font-size: 30px;
    }
    .fi-desc {
        font-size: 20px;
    }
    .fi-card-title {
        width: 420px;
        height: 56px;
        font-size: 22px;
    }
    .fi-card-list li {
        font-size: 20px;
    }
    .fi-gold-card {
        width: 680px;
        padding: 60px;
    }
    .fi-heading-right {
        font-size: 72px;
    }
    .fi-subheading-right {
        font-size: 26px;
    }
    .fi-desc-right {
        font-size: 20px;
    }
    .fi-amount-box {
        width: 520px;
        min-height: 150px;
        padding: 28px 32px;
    }
    .fi-amount-num {
        font-size: 88px;
    }
    .fi-amount-label {
        font-size: 22px;
    }
    .fi-split-list {
        gap: 20px;
    }
    .fi-split-list li {
        font-size: 20px;
    }
    .fi-gold-note {
        font-size: 18px;
        max-width: 500px;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE ENHANCEMENTS — Additional Breakpoints & Fixes
═══════════════════════════════════════════════════════════ */

/* ── Global text overflow protection ── */
.hero-title,
.section-title,
.cta-title,
.hero-subtitle,
.section-lead,
.zone-price,
.transform-num,
.scenario-centres,
.insight-stat-num,
.continuum-name,
.continuum-desc,
.step-content h4,
.step-content p,
.agitate-card h3,
.agitate-card p,
.owns-content h4,
.owns-content p,
.zone-features li,
.zone-name,
.scenario-math,
.hero-badge-title,
.hero-badge-sub {
    overflow-wrap: break-word;
    word-break: break-word;
    /* font-size:18px; */
}
img {
    max-width: 100%;
    height: auto;
}

/* ── Fix nav-logo-img excess left margin on non-desktop ── */
@media (max-width: 1023px) {
    .nav-logo-img {
        margin-left: 0;
    }
}

/* ── Mobile hero stat numbers — prevent overflow ── */
@media (max-width: 767px) {
    .hero-stats .stat-num {
        font-size: clamp(12px, 4.5vw, 26px);
        line-height: 1;
    }
    .hero-stats {
        overflow: hidden;
    }
    .hero {
        overflow-x: hidden;
    }
    .revenue-note {
        font-size: 13px;
        line-height: 1.7;
    }
    .footer-brand-logo-row img {
        height: 95px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   2560px+ — ULTRA-WIDE
═══════════════════════════════════════════════════════════ */
@media (min-width: 2560px) {
    nav {
        padding: 0 200px;
        height: 92px;
    }
    .nav-logo-img {
        height: 54px;
        max-width: 220px;
    }
    .nav-brand span:first-child {
        font-size: 18px;
    }
    .nav-link {
        font-size: 12px;
    }
    .nav-right {
        gap: 48px;
    }
    .nav-cta {
        padding: 14px 36px;
        font-size: 12px;
    }

    .hero {
        padding-top: 92px;
    }
    .hero-content {
        min-height: calc(100vh - 92px);
    }
    .hero .hero-left {
        padding: 76px 100px 120px 240px;
        max-width: 960px;
    }
    .hero-title {
        font-size: 83px !important;
    }
    .hero-subtitle {
        font-size: 22px;
        max-width: 580px;
    }
    .hero-stats {
        gap: 60px;
    }
    .stat-num {
        font-size: 54px;
    }
    .stat-label {
        font-size: 12px;
    }
    .hero .hero-badge {
        right: 80px;
        bottom: 120px;
        max-width: 380px;
        padding: 32px 40px;
    }
    .hero-badge-title {
        font-size: 24px;
    }
    .hero-badge-sub {
        font-size: 14px;
    }

    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section,
    .cta-section {
        padding: 160px 220px;
    }
    .fi-section {
        padding: 160px 220px;
    }
    footer {
        padding: 120px 220px 80px;
    }
    .gold-divider {
        margin: 0 220px;
    }

    .section-title {
        font-size: 76px !important;
    }
    .section-lead {
        font-size: 22px;
    }
    .cta-title {
        font-size: 76px;
    }
    .cta-subtitle {
        font-size: 20px;
        max-width: 680px;
    }

    .problem-grid {
        gap: 140px;
    }
    .story-grid {
        gap: 140px;
    }
    .agitate-grid,
    .transform-grid,
    .offer-zones,
    .revenue-scenarios,
    .owns-grid {
        max-width: 2100px;
        margin-left: auto;
        margin-right: auto;
    }
    .agitate-grid {
        margin-top: 72px;
    }
    .transform-grid {
        margin-top: 72px;
    }
    .offer-zones {
        margin-top: 72px;
    }
    .revenue-scenarios {
        margin: 72px auto 44px;
    }
    .owns-grid {
        margin-top: 72px;
    }

    .agitate-card {
        padding: 68px 56px;
    }
    .transform-card {
        padding: 64px 56px;
    }
    .zone-card {
        padding: 68px 56px;
    }
    .scenario {
        padding: 76px 60px;
    }
    .owns-item {
        padding: 60px 56px;
    }
    .problem-insight {
        padding: 68px 60px;
    }
    .fi-card {
        padding: 0;
    }

    .transform-num {
        font-size: 80px;
    }
    .transform-grid .transform-card:nth-child(3) .transform-num {
        min-height: 80px;
    }
    .scenario-centres {
        font-size: 36px;
    }
    .zone-price {
        font-size: 59px;
    }
    .cta-inner {
        max-width: 1800px;
        gap: 120px;
    }

    .fi-inner {
        grid-template-columns: 1fr 1fr;
        gap: 96px;
        max-width: 1900px;
    }
    .fi-heading {
        font-size: 88px;
    }
    .fi-subheading {
        font-size: 36px;
    }
    .fi-desc {
        font-size: 22px;
    }
    .fi-card-title {
        width: 460px;
        height: 60px;
        font-size: 26px;
    }
    .fi-card-list li {
        font-size: 22px;
    }
    .fi-gold-card {
        width: 100%;
        padding: 64px 64px 56px;
    }
    .fi-heading-right {
        font-size: 68px;
    }
    .fi-subheading-right {
        font-size: 32px;
    }
    .fi-amount-num {
        font-size: 96px;
    }
    .fi-amount-label {
        font-size: 26px;
    }
    .fi-amount-box {
        width: 90%;
        padding: 36px 40px;
    }
    .fi-split-list li {
        font-size: 26px;
    }
    .fi-gold-note {
        font-size: 18px;
        max-width: 90%;
    }
}

/* ═══════════════════════════════════════════════════════════
   1366px – 1439px
═══════════════════════════════════════════════════════════ */
@media (min-width: 1366px) and (max-width: 1439px) {
    nav {
        padding: 0 80px;
    }
    .nav-right {
        gap: 28px;
    }
    .hero .hero-left {
        padding: 45px 64px 72px 80px;
    }
    .hero-title {
        font-size: 48px !important;
    }

    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section,
    .cta-section {
        padding: 100px 80px;
    }
    .fi-section {
        padding: 100px 80px;
    }
    footer {
        padding: 72px 80px 44px;
    }
    .gold-divider {
        margin: 0 80px;
    }

    .section-title {
        font-size: 48px !important;
    }
    .cta-title {
        font-size: 45px;
    }
    .problem-grid {
        gap: 72px;
    }
    .story-grid {
        gap: 72px;
    }
    .agitate-card {
        padding: 48px 36px;
    }
    .transform-card {
        padding: 44px 34px;
    }
    .zone-card {
        padding: 48px 34px;
    }
    .scenario {
        padding: 52px 40px;
    }
    .owns-item {
        padding: 40px 36px;
    }
}

/* ═══════════════════════════════════════════════════════════
   1280px – 1365px
═══════════════════════════════════════════════════════════ */
@media (min-width: 1280px) and (max-width: 1365px) {
    nav {
        padding: 0 64px;
    }
    .nav-right {
        gap: 24px;
    }
    .hero .hero-left {
        padding: 45px 56px 72px 72px;
    }
    .hero-title {
        font-size: 46px !important;
    }

    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section,
    .cta-section {
        padding: 96px 72px;
    }
    .fi-section {
        padding: 96px 72px;
    }
    footer {
        padding: 68px 72px 40px;
    }
    .gold-divider {
        margin: 0 72px;
    }

    .section-title {
        font-size: 47px !important;
    }
    .cta-title {
        font-size: 44px;
    }
    .agitate-card {
        padding: 46px 34px;
    }
    .transform-card {
        padding: 42px 32px;
    }
    .zone-card {
        padding: 46px 30px;
    }
    .scenario {
        padding: 50px 36px;
    }
    .owns-item {
        padding: 38px 34px;
    }
}

/* ═══════════════════════════════════════════════════════════
   992px – 1023px — restore 3-col grids within tablet range
═══════════════════════════════════════════════════════════ */
@media (min-width: 992px) and (max-width: 1023px) {
    .agitate-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .agitate-card {
        padding: 36px 26px;
    }
    .transform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .transform-card {
        padding: 32px 22px;
    }
    .problem-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .owns-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   430px — iPhone 14 Pro Max / large Android
═══════════════════════════════════════════════════════════ */
@media (max-width: 430px) {
    nav {
        height: 60px;
        padding: 0 18px;
    }
    .hero {
        padding-top: 60px;
    }
    .hero-content {
        min-height: auto;
    }
    .hero .hero-left {
        padding: 26px 18px 32px;
    }
    .hero .hero-badge {
        width: calc(100% - 28px);
        margin: 0 14px 24px;
    }
    .hero-stats {
        gap: 10px;
    }

    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section {
        padding: 44px 18px;
    }
    .cta-section {
        padding: 44px 18px;
    }
    .fi-section {
        padding: 44px 18px;
    }
    footer {
        padding: 0px 18px 28px;
    }
    .gold-divider {
        margin: 0 18px;
    }
    .agitate-card {
        padding: 28px 20px;
    }
    .zone-card {
        padding: 32px 20px;
    }
    .transform-card {
        padding: 24px 20px;
    }
    .scenario {
        padding: 28px 20px;
    }
    .owns-item {
        padding: 24px 16px;
    }
    .problem-insight {
        padding: 24px 20px;
    }
}

/* ═══════════════════════════════════════════════════════════
   360px — Common small Android
═══════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
    nav {
        padding: 0 12px;
        height: 56px;
    }
    .nav-logo-img {
        height: 26px;
    }
    .nav-brand span:first-child {
        font-size: 11px;
    }
    .nav-cta {
        padding: 7px 10px;
        font-size: 8.5px;
    }
    .hero {
        padding-top: 56px;
    }
    .hero-content {
        min-height: auto;
    }
    .hero .hero-left {
        padding: 26px 12px 22px;
    }
    .hero-title {
        font-size: clamp(24px, 6.5vw, 30px) !important;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 12px;
    }
    .hero-stats {
        gap: 6px;
    }
    .stat-label {
        font-size: 7px;
        letter-spacing: 0.08em;
    }
    .hero .hero-badge {
        width: calc(100% - 16px);
        margin: 0 8px 16px;
        padding: 11px 13px;
    }
    .hero-badge-title {
        font-size: 13px;
    }
    .hero-badge-sub {
        font-size: 10px;
    }

    .section-title {
        font-size: 20px !important;
        line-height: 1.12;
    }
    .cta-title {
        font-size: 32px;
    }

    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section {
        padding: 36px 12px;
    }
    .cta-section {
        padding: 44px 12px;
    }
    .fi-section {
        padding: 36px 12px;
    }
    footer {
        padding: 32px 12px 20px;
    }
    .gold-divider {
        margin: 0 12px;
    }

    .agitate-card {
        padding: 22px 14px;
    }
    .zone-card {
        padding: 26px 14px;
    }
    .transform-card {
        padding: 20px 14px;
    }
    .scenario {
        padding: 22px 14px;
    }
    .owns-item {
        padding: 20px 12px;
    }
    .problem-insight {
        padding: 20px 14px;
    }
    .zone-price {
        font-size: 36px;
    }
    .scenario-centres {
        font-size: 18px;
    }
    .transform-num {
        font-size: 40px;
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO — CENTER CONTENT ON ALL MOBILE BREAKPOINTS
   Desktop (≥768px) completely unchanged.
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    /* Horizontally center all text in the hero left column */
    .hero .hero-left {
        text-align: center;
        align-items: center;
    }

    /* Center the subtitle block within the column */
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    /* Center each stat column's stacked children (number + label) */
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center any gold rule rendered inside hero */
    .hero .rule {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ═══════════════════════════════════════════════════════════
   TRANSFORM SECTION — vertical alignment fix for card 3
   Card 3 (.transform-num font-size: 32px via inline style) is
   shorter than cards 1 & 2 (60px). Making it inline-block with
   min-height: 60px ensures all three .transform-title elements
   start at the same vertical position. Cards 1 & 2 are unaffected
   (their nums are naturally 60px, meeting the min-height already).
   Mobile: stacked cards — alignment irrelevant, reset to auto.
   2560px: nums scale to 80px, so override min-height to match.
═══════════════════════════════════════════════════════════ */
.transform-grid .transform-card:nth-child(3) .transform-num {
    display: inline-block;
    min-height: 50px;
}

/* ═══════════════════════════════════════════════════════════
   TERRITORY INVESTMENT SECTION
═══════════════════════════════════════════════════════════ */
.territory-investment-section {
    background-color: #f9f6f0;
    padding: 80px 5%;
    text-align: center;
    font-family: sans-serif;
}
.territory-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #c09f62;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.territory-title {
    font-family: "Kokila", serif;
    font-size: 42px;
    color: #222;
    font-weight: 400;
    margin-bottom: 8px;
}
.territory-subtitle {
    font-family: "Kokila", serif;
    font-size: 38px;
    color: #c09f62;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 24px;
}
.territory-desc {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}
.territory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.territory-card {
    display: flex;
    flex-direction: column;
}
.territory-card-inner {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    flex-grow: 1;
}
.territory-card-featured .territory-card-inner {
    background: #f9f6f0;
    border: 1px solid #c09f62;
}
.territory-tier-badge {
    display: inline-block;
    background: #f4f4f4;
    color: #555;
    font-size: 14px;
    padding: 8px 30px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.territory-card-featured .territory-tier-badge {
    background: #fff;
}
.territory-card-title {
    font-family: "Kokila", serif;
    font-size: 28px;
    font-weight: 400;
    color: #222;
    margin-bottom: 24px;
}
.territory-card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}
.territory-price {
    font-family: "Kokila", serif;
    font-size: 46px;
    font-weight: 400;
    color: #222;
    margin-bottom: 24px;
}
.territory-features {
    list-style: none;
    padding: 0;
    margin: 0;
    /* border-top: 1px solid #eee; */
}
.territory-features li {
    font-size: 12px;
    color: #444;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}
.territory-card-featured .territory-features {
    /* border-top: 1px solid #e0d8c8; */
}
.territory-card-featured .territory-features li {
    border-bottom: 1px solid #e0d8c8;
}
.territory-btn {
    display: block;
    background-color: #c7a456;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 24px;
    .hero-stats {
        gap: 6px;
    }
    .stat-label {
        font-size: 7px;
        letter-spacing: 0.08em;
    }
    .hero .hero-badge {
        width: calc(100% - 16px);
        margin: 0 8px 16px;
        padding: 11px 13px;
    }
    .hero-badge-title {
        font-size: 13px;
    }
    .hero-badge-sub {
        font-size: 10px;
    }

    .section-title {
        font-size: 20px !important;
        line-height: 1.12;
    }
    .cta-title {
        font-size: 16px;
    }

    .section,
    .problem-section,
    .agitate-section,
    .story-section,
    .transform-section,
    .offer-section,
    .revenue-section,
    .owns-section {
        padding: 36px 12px;
    }
    .cta-section {
        padding: 44px 12px;
    }
    .fi-section {
        padding: 36px 12px;
    }
    footer {
        padding: 32px 12px 20px;
    }
    .gold-divider {
        margin: 0 12px;
    }

    .agitate-card {
        padding: 22px 14px;
    }
    .zone-card {
        padding: 26px 14px;
    }
    .transform-card {
        padding: 20px 14px;
    }
    .scenario {
        padding: 22px 14px;
    }
    .owns-item {
        padding: 20px 12px;
    }
    .problem-insight {
        padding: 20px 14px;
    }
    .zone-price {
        font-size: 36px;
    }
    .scenario-centres {
        font-size: 18px;
    }
    .transform-num {
        font-size: 40px;
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO — CENTER CONTENT ON ALL MOBILE BREAKPOINTS
   Desktop (≥768px) completely unchanged.
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    /* Horizontally center all text in the hero left column */
    .hero .hero-left {
        text-align: center;
        align-items: center;
    }

    /* Center the subtitle block within the column */
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    /* Center each stat column's stacked children (number + label) */
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center any gold rule rendered inside hero */
    .hero .rule {
        margin-left: auto;
        margin-right: auto;
    }
}
/* Hidden on desktop */
.hero-mobile-highlights {
    display: none;
}

/* Mobile only */
@media screen and (max-width: 768px) {
    .hero-mobile-highlights {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero-mobile-highlight {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        min-height: 55px;

        padding: 14px 15px;
        box-sizing: border-box;

        background: #2a2a2c;

        color: #bcbcc0;

        font-family: Arial, sans-serif;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.3;
        letter-spacing: 0.3px;

        text-align: center;
    }

    /* Second row */
    .hero-mobile-highlight:nth-child(2) {
        background: #242527;
    }

    /* Third row */
    .hero-mobile-highlight:nth-child(3) {
        background: #17181a;
    }

    /* Last row */
    .hero-mobile-highlight-last {
        background: #090a0b;

        color: #c5c5c8;

        min-height: 55px;

        font-size: 13px;
        letter-spacing: 0.5px;
    }
}
/* ═══════════════════════════════════════════════════════════
   TRANSFORM SECTION — vertical alignment fix for card 3
   Card 3 (.transform-num font-size: 32px via inline style) is
   shorter than cards 1 & 2 (60px). Making it inline-block with
   min-height: 60px ensures all three .transform-title elements
   start at the same vertical position. Cards 1 & 2 are unaffected
   (their nums are naturally 60px, meeting the min-height already).
   Mobile: stacked cards — alignment irrelevant, reset to auto.
   2560px: nums scale to 80px, so override min-height to match.
═══════════════════════════════════════════════════════════ */
.transform-grid .transform-card:nth-child(3) .transform-num {
    display: inline-block;
    min-height: 50px;
}

/* ═══════════════════════════════════════════════════════════
   TERRITORY INVESTMENT SECTION
═══════════════════════════════════════════════════════════ */
.territory-investment-section {
    background-color: #f9f6f0;
    padding: 50px 5%;
    text-align: center;
    font-family: sans-serif;
}
.territory-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #c09f62;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.territory-title {
    font-family: "Kokila", serif;
    font-size: 34px;
    color: #222;
    font-weight: 400;
    margin-bottom: 8px;
}
.territory-subtitle {
    font-family: "Kokila", serif;
    font-size: 34px;
    color: #c09f62;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 24px;
}
.territory-desc {
    font-size: 18px;
    color: #666;
    max-width: 789px;
    margin: 0 auto 60px;
    line-height: 1.6;
}
.territory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.territory-card {
    display: flex;
    flex-direction: column;
}
.territory-card-inner {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    flex-grow: 1;
}
.territory-card-featured .territory-card-inner {
    background: #f9f6f0;
    border: 1px solid #c09f62;
}
.territory-tier-badge {
    font-family: "Kokila", serif;
    display: inline-block;
    background: #f4f4f4;
    color: #555;
    font-size: 19px;
    padding: 8px 30px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.territory-card-featured .territory-tier-badge {
    background: #fff;
}
.territory-card-title {
    font-family: "Kokila", serif;
    font-size: 28px;
    font-weight: 400;
    color: #222;
    margin-bottom: 24px;
}
.territory-card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}
.territory-price {
    font-family: "Kokila", serif;
    font-size: 46px;
    font-weight: 400;
    color: #222;
    margin-bottom: 24px;
}
.territory-features {
    list-style: none;
    padding: 0;
    margin: 0;
    /* border-top: 1px solid #eee; */
}
.territory-features li {
    font-size: 16px;
    color: #444;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.territory-card-featured .territory-features {
    /* border-top: 1px solid #e0d8c8; */
}
.territory-card-featured .territory-features li {
    border-bottom: 1px solid #e0d8c8;
}
.territory-btn {
    display: block;
    background-color: #c7a456;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 24px;
    text-align: center;
    margin-top: 10px;
    transition: background 0.3s ease;
    letter-spacing: 1px;
}
.territory-btn:hover {
    background-color: #b3914a;
}

/* ═══════════════════════════════════════════════════════════
   ARCHITECTURE & FOCO RECAP SECTIONS
═══════════════════════════════════════════════════════════ */
.architecture-section {
    background-color: #eee7dd;
    padding: 10px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}
.architecture-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin-left: 40px;
}
.architecture-title {
    font-family: "Kokila", serif;
    font-size: 48px;
    font-weight: 400;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.1;
}
.architecture-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.4;
}
.architecture-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.arch-card {
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    flex: 1;
    min-width: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.arch-card-gold {
    background-color: #d1a852;
}
.arch-card-white {
    background-color: #ffffff;
}
.arch-card svg {
    margin-bottom: 16px;
}
.arch-card-num {
    font-family: "Kokila", serif;
    font-size: 48px;
    font-weight: 400;
    color: #111;
    line-height: 1;
    margin-bottom: 8px;
    margin-top: 10px;
}
.arch-card-label {
    font-family: sans-serif;
    font-size: 13px;
    color: #333;
}
.architecture-note {
    font-family: sans-serif;
    font-size: 19px;
    color: #555;
    line-height: 1.5;
}
.architecture-map {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.architecture-map img {
    max-width: 100%;
    height: auto;
    /* filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1)); */
}
.arc-img {
    width: 60px;
}
.arc-img-loc {
    width: 45px;
}

/* ==================================
   MOBILE TERRITORY INVESTMENT SECTION
   Desktop version remains unchanged
================================== */

/* Hide mobile section on desktop */
.territory-investment-mobile {
    display: none;
}

/* ==================================
   MOBILE
================================== */

@media screen and (max-width: 768px) {
    /* Hide only desktop territory section */
    .territory-investment-section {
        display: none;
    }

    /* Show mobile version */
    .territory-investment-mobile {
        display: block;
        width: 100%;
        padding: 40px 20px 50px;
        box-sizing: border-box;
        background: #1c1d1f;
    }

    /* ===============================
     HEADER
  =============================== */

    .territory-mobile-header {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .territory-mobile-header h2 {
        margin: 0;
        color: #d7b967;
        font-family: "kokila";
        font-size: 37px;
        font-weight: 500;
        line-height: 1;
    }

    .territory-mobile-header p {
        margin: 16px 0 0;
        color: #b6b6b8;
        font-family: "poppins";
        font-size: 17px;
        font-weight: 400;
        line-height: 1.3;
    }

    /* ===============================
     CARDS
  =============================== */

    .territory-mobile-card {
        position: relative;
        width: 100%;
        max-width: 305px;
        margin: 0 auto 55px;
        padding-bottom: 28px; /* Space for overlapping button */
        border-radius: 23px;
        overflow: visible; /* Allow button to overflow */
    }

    .territory-mobile-card-content {
        position: relative;
        z-index: 2;
        min-height: 215px;
        padding: 21px 14px 28px;
        background: #000;
        border-radius: 23px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        text-align: center;
    }

    /* Zone badge */
    .territory-mobile-zone {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 65px;
        height: 25px;
        padding: 0 11px;
        border-radius: 30px;

        color: #c6c6c6;
        background: linear-gradient(180deg, #3d3f42 0%, #292b2e 100%);

        font-family: Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
    }

    /* Card title */
    .territory-mobile-card h3 {
        margin: 10px 0 11px;
        color: #c7c5c5;

        font-family: "kokila";
        font-size: 25px;
        font-weight: 500;
        line-height: 1.15;
    }

    /* Image */
    .territory-mobile-image {
        width: 100%;
        height: 98px;
        overflow: hidden;
        border-radius: 17px;
    }

    .territory-mobile-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Price */
    .territory-mobile-price {
        margin-top: 22px;
        color: #c7c5c5;

        font-family: "kokila";
        font-size: 45px;
        font-weight: 400;
        line-height: 1;
    }

    /* ===============================
     BUTTON
  =============================== */

    .territory-mobile-btn {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 15%);

        z-index: 1;

        width: calc(108% - 26px);
        min-height: 48px;
        padding: 110px 15px 15px;
        box-sizing: border-box;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 0 0 18px 18px;

        color: #1c1710;
        background: linear-gradient(
            90deg,
            #d8b75f 0%,
            #e2c878 50%,
            #cfa94e 100%
        );

        text-decoration: none;
        text-align: center;

        font-family: "kokila";
        font-size: 20px;
        font-weight: 500;
        line-height: 1.2;

        transition: 0.3s;
    }

    .territory-mobile-btn:active {
        background: #9f7d31;
        color: #fff;
    }

    /* Remove bottom margin from last card */
    .territory-mobile-card:last-child {
        margin-bottom: 0;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .architecture-section {
        padding: 70px 5%;
        gap: 50px;
    }

    .architecture-content {
        margin-left: 0;
        max-width: 100%;
    }

    .architecture-title {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .architecture-section {
        flex-direction: column;
        padding: 50px 20px;
        gap: 40px;
        text-align: center;
    }

    .architecture-content,
    .architecture-map {
        min-width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    .architecture-map {
        display: none;
    }

    .architecture-title {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .architecture-subtitle {
        font-size: 17px;
        margin-bottom: 28px;
    }

    /* Remove forced line breaks on mobile */
    .architecture-subtitle br,
    .architecture-note br {
        display: none;
    }

    .architecture-cards {
        gap: 14px;
        justify-content: center;
        margin-bottom: 0px;
    }

    .arch-card {
        /* min-width: calc(50% - 7px);
    padding: 20px 12px;
    flex: 0 0 calc(50% - 7px); */
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 16px 50px;
    }

    /* Make the 3rd card full width */
    .arch-card:last-child {
        flex: 0 0 100%;
        max-width: 220px;
        margin: 0 auto;
        background-color: #d1a852;
    }

    .arch-card-num {
        font-size: 38px;
    }

    .arch-card-label {
        font-size: 28px;
        width: 200px;
    }

    .architecture-note {
        font-size: 16px;
    }

    .arc-img {
        width: 64px;
    }

    .arc-img-loc {
        width: 55px;
    }

    .architecture-map img {
        width: 100%;
        max-width: 420px;
    }
}

/* Small mobiles */
@media (max-width: 480px) {
    .architecture-title {
        font-size: 37px;
        width: 195px;
        margin: 0 auto 20px;
        color: var(--gold);
    }

    .architecture-subtitle {
        font-size: 17px;
        width: 321px;
        margin: 0 auto 28px;
    }

    .architecture-cards {
        flex-direction: column;
    }

    .arch-card,
    .arch-card:last-child {
        width: 100%;
        max-width: 100%;
        text-align: left;
        /* flex: 1; */
    }

    .arch-card-num {
        font-size: 45px;
    }

    .architecture-note {
        font-size: 15px;
        display: none;
    }
}

.foco-recap-section {
    background-color: #f9f6f0;
    padding: 50px 5%;
    text-align: center;
}
.foco-title {
    font-family: "Kokila", serif;
    font-size: 42px;
    font-weight: 400;
    color: #222;
    margin-bottom: 16px;
}
.foco-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #444;
    margin-bottom: 50px;
}
.foco-image-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.foco-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    max-height: 350px;
}
.foco-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    padding: 0 20px;
}
.foco-stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-width: 420px;
}
.foco-stat-num {
    font-family: "Kokila", serif;
    font-size: 44px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}
.foco-stat-label {
    font-family: "Kokila", serif;
    font-size: 23px;
    color: #444;
}
.foco-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.foco-tag {
    border: 1.5px dashed #000;
    border-radius: 30px;
    padding: 10px 24px;
    font-family: "Kokila", serif;
    font-size: 18px;
    color: #333;
    background-color: transparent;
}

/* Tablet */
@media (max-width: 1024px) {
    .foco-recap-section {
        padding: 80px 4%;
    }

    .foco-stat-card {
        min-width: 320px;
        padding: 22px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .arch-img {
        width: 80px;
    }
    .foco-recap-section {
        padding: 45px 20px 40px;
    }

    .foco-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .foco-subtitle {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .foco-image-container {
        height: 307px;
        margin: 98px auto 0;
    }

    .foco-image-container img {
        max-height: 250px;
        border-radius: 14px;
    }

    .foco-stats {
        flex-direction: column;
        gap: 16px;
        margin-top: -30px;
        padding: 0;
    }

    .foco-stat-card {
        min-width: auto;
        width: 79%;
        max-width: 420px;
        margin: 0 auto;
        padding: 20px;
    }

    .foco-stat-num {
        font-size: 34px;
        line-height: 1.1;
    }

    .foco-stat-label {
        font-size: 18px;
    }

    .foco-tags {
        gap: 12px;
        margin-top: 10px;
    }

    .foco-tag {
        font-size: 16px;
        padding: 8px 18px;
    }
    .nav,
    .hero {
        display: none;
    }
}

/* Small mobiles */
@media (max-width: 480px) {
    .foco-title {
        font-size: 37px;
        color: #d0ab50;
        line-height: 1;
    }

    .foco-subtitle {
        font-size: 17px;
    }

    .foco-image-container img {
        height: 250px;
    }

    .foco-stat-card {
        padding: 10px 16px;
    }

    .foco-stat-num {
        font-size: 28px;
    }

    .foco-stat-label {
        font-size: 16px;
    }

    .foco-tags {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 18px;
        width: 100%;
    }

    .foco-tag {
        width: 100%;
        max-width: 360px; /* Increase width */
        height: 46px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px dashed #5a5a5a;
        border-radius: 12px;
        background: transparent;

        font-family: "Poppins", sans-serif;
        font-size: 17px;
        font-weight: 400;
        color: #4a4a4a;

        box-sizing: border-box;
    }
    nav,
    .hero {
        display: none;
    }
    .hero-mobile {
        display: block;
    }
    .card1 {
        position: relative;
        bottom: 270px;
    }
    .card2 {
        position: relative;
        bottom: 114px;
    }
}

.revenue-sec {
    margin: 60px 0px;
}
.header-rule {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 24px;
}
.revenue-head {
    font-family: "Kokila", serif;
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 18px 0;
    letter-spacing: 1px;
}
/* .title-rule {
    width: 385px;
    height: 2px;
    background: rgba(168, 136, 44, 0.4);
    margin: 0 auto 50px auto;
  } */
.title-rule {
    width: 220px; /* total line length */
    height: 1px;
    background: rgba(168, 136, 44, 0.4);
    margin: 0 auto 50px auto;
    position: relative;
}

.title-rule::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; /* gold bar length */
    height: 4px; /* gold bar thickness */
    background: #b8923f; /* gold color */
}
.cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}
/* .card {
    background: #fdfbf7;
    flex: 1;
    max-width: 420px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  .card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
  } */
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card {
    background: #fdfbf7;
    flex: 1;
    max-width: 380px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    overflow: visible;
    position: relative;
}

/* .card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
} */
.icon-circle {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    border: 5px solid #fdfbf7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-circle svg {
    width: 38px;
    height: 38px;
    fill: #fdfbf7;
}
.card-body {
    padding: 60px 30px 35px 30px;
    text-align: center;
}
.card-body h2 {
    font-family: "Kokila", serif;
    font-size: 35px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}
.card-rule {
    width: 280px;
    height: 2px;
    background: rgba(168, 136, 44, 0.4);
    margin: 0 auto 18px auto;
    position: relative;
}
.card-rule::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; /* gold bar length */
    height: 4px; /* gold bar thickness */
    background: #b8923f; /* gold color */
}
.card-body p {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: flex-start;
    text-align: left;
}
.card-body p .bullet {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 30px;
    line-height: 1.3;
    margin-right: 10px;
    margin-top: -8px;
}
.card-body p .text {
    flex: 1;
}

.card-img {
    position: relative;
    height: 260px;
    overflow: visible; /* Change from hidden */
}

.icon-circle {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    border: 5px solid #fdfbf7;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.icon-circle img {
    width: 32px;
    height: 32px;
}
.card-body {
    padding: 60px 30px 35px 30px;
    text-align: center;
    position: relative;
    z-index: 0; /* add this so it sits below the circle */
}

/* ==========================
   MOBILE RESPONSIVE
   ========================== */
@media (max-width: 768px) {
    .revenue-sec {
        margin: 40px 0;
        padding: 0 20px;
    }

    .revenue-head {
        font-size: 34px;
        line-height: 1.2;
    }

    .title-rule {
        width: 160px;
        margin-bottom: 35px;
    }

    .cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 100%;
    }

    .card-img {
        height: 220px;
    }

    .icon-circle {
        width: 75px;
        height: 75px;
        bottom: -38px;
    }

    .icon-circle svg {
        width: 30px;
        height: 30px;
    }

    .card-body {
        padding: 55px 20px 28px;
    }

    .card-body h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .card-rule {
        width: 220px;
        margin-bottom: 16px;
    }

    .card-body p {
        font-size: 18px;
        justify-content: center;
        text-align: center;
        margin-left: 0px !important;
    }

    .card-body p .bullet {
        font-size: 26px;
        margin-right: 8px;
        display: none;
    }

    .lux {
        margin-left: 0px !important;
    }
    /* remove inline margin hacks on mobile */
    /* .card-body > div{
    margin-left: 38px !important;
  } */
}

/* =====================================
   MOBILE REVENUE SECTION
   Desktop remains unchanged
===================================== */

/* Hidden on desktop */
.revenue-sec-mobile {
    display: none;
}

/* Mobile only */
@media screen and (max-width: 768px) {
    /* Hide existing desktop revenue section */
    .revenue-sec {
        display: none;
    }

    /* Show mobile section */
    .revenue-sec-mobile {
        display: block;
        width: 100%;
        padding: 34px 16px 30px;
        background: linear-gradient(180deg, #d9b861 0%, #d2ae50 100%);
    }

    /* Top heading */
    .mobile-revenue-top {
        text-align: center;
        margin-bottom: 30px;
    }

    .mobile-revenue-top p {
        margin: 0;
        color: #1d1d1d;
        font-family: Georgia, serif;
        font-size: 37px;
        font-weight: 400;
        line-height: 1.1;
    }

    .mobile-revenue-top h2 {
        margin: 2px 0 0;
        color: #1d1d1d;
        font-family: Georgia, serif;
        font-size: 37px;
        font-weight: 500;
        line-height: 1.1;
    }

    /* Cards wrapper */
    .mobile-revenue-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    /* Individual card */
    .mobile-revenue-card {
        width: 100%;
        max-width: 290px;
        min-height: 290px;
        padding: 24px 27px 26px;
        background: #292929;
        border-radius: 30px;
        box-sizing: border-box;
    }

    /* Card title */
    .mobile-card-title {
        margin-bottom: 20px;
        color: #d8b65e;
        text-align: center;
        font-family: Arial, sans-serif;
        font-size: 21px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: 0.1px;
    }

    /* Image */
    .mobile-card-image {
        width: 100%;
        height: 133px;
        overflow: hidden;
        border-radius: 10px;
    }

    .mobile-card-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Bullet points */
    .mobile-card-points {
        margin-top: 14px;
        margin-left: 34px;
    }

    .mobile-card-points p {
        position: relative;
        margin: 0 0 8px;
        padding-left: 8px;
        color: #d5d5d5;
        font-family: Arial, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.3;
    }

    .mobile-card-points p::before {
        content: "•";
        position: absolute;
        left: -4px;
        top: -2px;
        color: #d5d5d5;
        font-size: 18px;
    }

    .mobile-card-points p:last-child {
        margin-bottom: 0;
    }
}
/* ═══════════════════════════════════════════════════════════
   MOBILE HERO — .hero-mobile section (background-image version)
   Logo + guest photos + diamond are already baked into the
   provided background image. Only the text block is placed
   here, in the empty band between the logo and the photos.
   Appended block only — no existing rule above is modified.
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Outer section now grows with its content instead of clipping it. */
    /* Background image + gradient now live on the outer, growing section,
       so they stretch to cover however tall the form makes it. */
    /* .hero-mobile {
        display: block;
        width: 100%;
        min-height: 100vh;
        overflow: visible;
        background-image: url("./images/V3-Mobile-View-copy.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
    } */

    /* .hero-mobile {
        width: 100%;
        height: clamp(700px, 100vh, 820px);

        background: url("./images/V3-Mobile-View-copy.jpg") top center / cover
            no-repeat;
    } */

    .hero-mobile {
        width: 100%;
        height: calc(100vh + 60px);
        max-height: 900px;

        background: url("./images/V3-Mobile-View-copy.jpg") top center / cover
            no-repeat;
    }

    /* .hero-mobile::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: linear-gradient(
            180deg,
            rgba(21, 18, 14, 0.8) 0%,
            rgba(11, 9, 7, 0) 100%
        );
        z-index: 0;
        pointer-events: none;
    } */

    /* Visual wrapper is now just a positioning box for the logo + title -
       no background of its own, no clipping. Height stays 100vh so the
       existing top:18% / bottom:44% percentages on .hero-mobile-content
       keep resolving exactly as before. */
    .hero-mobile-visual {
        position: relative;
        width: 100%;
        height: 100vh;
        z-index: 1;
    }

    .hero-mobile-content {
        position: absolute;
        left: 0;
        right: 0;
        top: 18%;
        bottom: 44%;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 24px;
        box-sizing: border-box;

        background: radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0.32) 0%,
            rgba(0, 0, 0, 0) 72%
        );
    }

    .hero-mobile .hero-mobile-eyebrow {
        font-family: "Kokila", sans-serif;
        font-size: clamp(10.5px, 3vw, 13px);
        font-weight: 700;
        letter-spacing: 0.14em;
        color: var(--gold);
        text-transform: uppercase;
        margin: 0 0 14px;
        text-align: center;
        max-width: 280px;
    }

    .hero-mobile .hero-mobile-title {
        font-family: "Kokila", serif;
        font-weight: 600;
        /* text-transform: uppercase; */
        color: #d0ab50;
        font-size: clamp(26px, 8.6vw, 38px) !important;
        line-height: 1.1;
        letter-spacing: 1px;
        margin: 0 0 16px !important;
        text-align: center;
    }

    .hero-mobile-subheading {
        font-family: "Kokila", sans-serif;
        font-weight: 700;
        color: #757574;
        font-size: clamp(14px, 6vw, 17px);
        line-height: 1.35;
        margin: 0 0 12px;
        text-align: center;
    }

    .hero-mobile .hero-mobile-text {
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-size: clamp(12px, 3.3vw, 14px) !important;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.6);
        max-width: 300px !important;
        margin: 0 !important;
        text-align: center;
    }
}

/* Small-phone refinements, 320px–480px */
@media (max-width: 480px) {
    .hero-mobile .hero-mobile-title {
        font-size: clamp(24px, 8.8vw, 30px) !important;
    }
    .hero-mobile-content {
        top: 9%;
        bottom: 42%;
        padding: 0 18px;
    }
}

/* =====================================
   MULTI-STEP FORM BACK BUTTON
===================================== */

.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 18px;
    padding: 9px 18px;

    border: 1px solid #cfa862;
    border-radius: 4px;

    background: transparent;
    color: #cfa862;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.back-btn:hover {
    background: #cfa862;
    color: #111111;
}

/* Just Exploring Thank You */

.exploring-thank-you {
    width: 100%;
    padding: 35px 25px;
    box-sizing: border-box;

    text-align: center;

    background: #cfa862;
    border: 1px solid rgba(207, 168, 98, 0.45);
    border-radius: 12px;
}

.exploring-thank-you h3 {
    margin: 0 0 12px;

    color: #cfa862;

    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 500;
}

.exploring-thank-you p {
    max-width: 420px;
    margin: 0 auto;

    color: #d0d0d0;

    font-size: 15px;
    line-height: 1.6;
}

.exploring-back-btn {
    margin-top: 22px;
    padding: 10px 20px;

    border: 1px solid #cfa862;
    border-radius: 4px;

    background: transparent;
    color: #cfa862;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}

.exploring-back-btn:hover {
    background: #cfa862;
    color: #111;
}

.exploring-thank-you {
    text-align: center;
    padding: 30px 15px;
}

.exploring-thank-you h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #a8882c;
}

.exploring-thank-you p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.back-to-form-btn {
    background: #a8882c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.back-to-form-btn:hover {
    background: #8d7122;
}

@media (max-width: 480px) {
    .hero-mobile .hero-mobile-title {
        font-size: clamp(24px, 9.4vw, 37px) !important;
        line-height: 1;
    }
    .hero-mobile-content {
        top: 4%;
        bottom: 42%;
        padding: 0 18px;
    }
}
