/* ============================================================
   MedSpa Prime — Premium Stylesheet
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    --color-bg:        #ffffff;
    --color-soft:      #f8f6f2;
    --color-text:      #1e1e1e;
    --color-muted:     #5a5a5a;
    --color-line:      #e7e2d8;
    --color-gold:      #c9a96a;
    --color-gold-deep: #b08f4d;
    --color-teal:      #4f7c7d;
    --color-dark:      #131313;
    --color-dark-2:    #1a1a1a;

    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --container:    1200px;
    --radius-sm:    8px;
    --radius-md:    14px;
    --radius-lg:    22px;
    --radius-xl:    28px;

    --shadow-sm:    0 2px 8px rgba(20,20,20,.04);
    --shadow-md:    0 12px 30px rgba(20,20,20,.06);
    --shadow-lg:    0 30px 60px rgba(20,20,20,.10);
    --shadow-gold:  0 14px 30px rgba(201,169,106,.28);

    --ease:         cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html { overflow-x: hidden; }

img, svg, video { display: block; max-width: 100%; }

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

button,
a,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 .5em;
    color: var(--color-text);
}

h1 em, h2 em, h3 em, h4 em {
    font-style: italic;
    color: var(--color-gold-deep);
}

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection {
    background: var(--color-gold);
    color: #fff;
}

.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: .6rem 1rem;
    background: var(--color-text);
    color: #fff;
    z-index: 9999;
    border-radius: 6px;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 7rem 0;
    position: relative;
}

.section-soft {
    background: var(--color-soft);
}

.section-dark {
    background: var(--color-dark);
    color: #efece4;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #fff;
}

.section-head {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    margin-bottom: .65rem;
}

.section-sub {
    color: var(--color-muted);
    font-size: 1.05rem;
    margin: 0;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-gold-deep);
    margin-bottom: 1.2rem;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201,169,106,.18);
}

.eyebrow-on-dark {
    color: var(--color-gold);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .95rem 1.6rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: .95rem;
    letter-spacing: .01em;
    cursor: pointer;
    transition:
        transform .3s var(--ease),
        box-shadow .3s var(--ease),
        background .3s var(--ease),
        color .3s var(--ease),
        border-color .3s var(--ease);
    border: 1px solid transparent;
    will-change: transform;
    white-space: nowrap;
}

.btn-sm {
    padding: .7rem 1.15rem;
    font-size: .85rem;
}

.btn-lg {
    padding: 1.1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-arrow {
    transition: transform .35s var(--ease);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* primary — gold gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
    color: #fff;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(201,169,106,.36);
}

/* ghost — transparent w/ border */
.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-line);
}
.btn-ghost:hover {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}
.btn-ghost.btn-on-dark {
    color: #efece4;
    border-color: rgba(255,255,255,.18);
}
.btn-ghost.btn-on-dark:hover {
    background: #fff;
    color: var(--color-text);
    border-color: #fff;
}

/* outline — for footer */
.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
}
.btn-outline:hover {
    background: var(--color-text);
    color: #fff;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,.7);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.92);
    border-bottom-color: var(--color-line);
    box-shadow: 0 8px 24px rgba(20,20,20,.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .8rem;
    padding-bottom: .8rem;
    transition: padding .3s var(--ease);
}

.site-header.is-scrolled .header-inner {
    padding-top: .55rem;
    padding-bottom: .55rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--color-text);
}

.brand-logo {
    display: block;
    height: 80px;
    width: auto;
    max-width: 100%;
    transition: transform .35s var(--ease), filter .35s var(--ease), height .3s var(--ease);
}

.brand:hover .brand-logo {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.site-header.is-scrolled .brand-logo {
    height: 64px;
}

.brand-footer .brand-logo {
    height: 88px;
}

.brand-text em {
    font-style: italic;
    color: var(--color-gold-deep);
    margin-left: .15em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.9rem;
    align-items: center;
}

.nav-link {
    position: relative;
    font-size: .95rem;
    font-weight: 500;
    color: var(--color-text);
    padding: .25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transform: translateX(-50%);
    transition: width .3s var(--ease);
}

.nav-link:hover,
.nav-link.is-active { color: var(--color-gold-deep); }
.nav-link:hover::after,
.nav-link.is-active::after { width: 22px; }

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 12.5rem 0 6rem;
    overflow: hidden;
    background:
        radial-gradient(1200px 600px at 100% -10%, rgba(201,169,106,.10), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(79,124,125,.08), transparent 60%),
        var(--color-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    animation: float 14s ease-in-out infinite;
}

.orb-1 {
    width: 380px; height: 380px;
    top: -80px; right: -60px;
    background: radial-gradient(closest-side, rgba(201,169,106,.6), transparent);
}

.orb-2 {
    width: 320px; height: 320px;
    bottom: -120px; left: -80px;
    background: radial-gradient(closest-side, rgba(79,124,125,.4), transparent);
    animation-delay: -5s;
}

.orb-3, .orb-4 {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .35;
}
.orb-3 {
    width: 380px; height: 380px;
    top: -120px; right: -80px;
    background: radial-gradient(closest-side, rgba(201,169,106,.7), transparent);
}
.orb-4 {
    width: 320px; height: 320px;
    bottom: -120px; left: -80px;
    background: radial-gradient(closest-side, rgba(79,124,125,.6), transparent);
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(20,20,20,.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(20,20,20,.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}

@keyframes float {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(20px,-30px) scale(1.05); }
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.4rem, 4.4vw, 4.1rem);
    margin-bottom: 1.4rem;
    letter-spacing: -.015em;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 540px;
    margin-bottom: 2.2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: 2.5rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    font-size: .9rem;
    color: var(--color-muted);
}
.hero-meta li {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.meta-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-card {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(0) rotate(.4deg);
    transition: transform .4s var(--ease);
}
.dashboard-card:hover { transform: translateY(-4px) rotate(0deg); }

.dash-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-soft);
    border-bottom: 1px solid var(--color-line);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #e3ddd0;
}
.dash-dots span:nth-child(1) { background: #e6c1a0; }
.dash-dots span:nth-child(2) { background: #f0d68f; }
.dash-dots span:nth-child(3) { background: #b5d2c3; }

.dash-title {
    font-size: .85rem;
    font-weight: 500;
    color: var(--color-muted);
    letter-spacing: .04em;
}

.dash-body { padding: 1.4rem; }

.dash-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.dash-stat {
    background: var(--color-soft);
    border-radius: var(--radius-md);
    padding: .9rem 1rem;
}

.dash-label {
    display: block;
    font-size: .75rem;
    color: var(--color-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.dash-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: .55rem;
}

.dash-bar {
    display: block;
    height: 4px;
    background: rgba(20,20,20,.06);
    border-radius: 99px;
    overflow: hidden;
}
.dash-bar > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-deep));
    border-radius: 99px;
    animation: barGrow 2s var(--ease) both;
}

@keyframes barGrow {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
}

.dash-chart {
    background: linear-gradient(180deg, rgba(248,246,242,.5), rgba(248,246,242,0));
    border-radius: var(--radius-md);
    padding: .5rem 0;
    margin-bottom: 1rem;
}

.dash-foot {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.dash-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(201,169,106,.10);
    border: 1px solid rgba(201,169,106,.22);
    border-radius: 99px;
    padding: .4rem .8rem;
    font-size: .78rem;
    font-weight: 500;
    color: var(--color-gold-deep);
}
.dash-pill.muted {
    background: rgba(20,20,20,.04);
    border-color: var(--color-line);
    color: var(--color-muted);
}

.pill-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(201,169,106,.2);
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(201,169,106,.2); }
    50%      { box-shadow: 0 0 0 8px rgba(201,169,106,0); }
}

/* Floating cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .8rem 1rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: .85rem;
    animation: floatCard 7s ease-in-out infinite;
}

.floating-card strong {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    font-size: .88rem;
}
.floating-card span {
    display: block;
    color: var(--color-muted);
    font-size: .75rem;
}

.fc-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
}
.fc-icon.alt {
    background: linear-gradient(135deg, var(--color-teal), #355a5b);
}

.floating-card-1 {
    top: -1.5rem; left: -1.5rem;
    animation-delay: -1s;
}
.floating-card-2 {
    bottom: -1.5rem; right: -1.5rem;
    animation-delay: -3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.6rem 1.8rem;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(201,169,106,.05), transparent 55%);
    opacity: 0;
    transition: opacity .35s var(--ease);
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,169,106,.4);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-deep);
    background: linear-gradient(135deg, rgba(201,169,106,.14), rgba(201,169,106,.04));
    border: 1px solid rgba(201,169,106,.25);
    margin-bottom: 1.2rem;
    transition: transform .35s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.06) rotate(-2deg); }

.service-title {
    font-size: 1.45rem;
    margin-bottom: .55rem;
}

.service-text {
    color: var(--color-muted);
    font-size: .95rem;
    margin: 0;
}

.service-rule {
    display: block;
    width: 32px; height: 2px;
    background: var(--color-gold);
    margin-top: 1.2rem;
    border-radius: 99px;
    transition: width .35s var(--ease);
}
.service-card:hover .service-rule { width: 56px; }

/* ---------- How It Works ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    counter-reset: step;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,169,106,.45), transparent);
    z-index: 0;
}

.step {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    z-index: 1;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 18px rgba(201,169,106,.3);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.step-text {
    color: var(--color-muted);
    margin: 0;
    font-size: .98rem;
}

/* ---------- Partner ---------- */
.partner-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, #1f1c17 60%, #2a241a 100%);
    color: #ece6d8;
    border-radius: var(--radius-xl);
    padding: 4rem;
    overflow: hidden;
    isolation: isolate;
}

.partner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(201,169,106,.25);
    pointer-events: none;
}

.partner-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(201,169,106,.28), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
}

.partner-title {
    color: #fff;
    font-size: clamp(1.75rem, 2.7vw, 2.5rem);
    margin-bottom: 1rem;
}

.partner-sub {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.partner-points {
    display: grid;
    gap: .65rem;
}
.partner-points li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(255,255,255,.85);
    font-size: .98rem;
}
.partner-points li::before {
    content: '';
    position: absolute;
    left: 0; top: .55em;
    width: 14px; height: 8px;
    border-left: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    transform: rotate(-45deg);
}

.partner-aside {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.apply-card {
    position: relative;
    width: 100%;
    background:
        linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201,169,106,.30);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.9rem 1.9rem;
    overflow: hidden;
    isolation: isolate;
    transition: transform .4s var(--ease), border-color .3s var(--ease);
}
.apply-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201,169,106,.5);
}

.apply-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px 220px at 0% 0%, rgba(201,169,106,.18), transparent 60%),
        radial-gradient(360px 200px at 100% 100%, rgba(79,124,125,.10), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.apply-stamp {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    background: rgba(201,169,106,.10);
    border: 1px solid rgba(201,169,106,.32);
}

.apply-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .42rem .85rem;
    background: rgba(201,169,106,.10);
    border: 1px solid rgba(201,169,106,.30);
    border-radius: 99px;
    font-size: .7rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.apply-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(201,169,106,.18);
    animation: pulse 1.6s ease-in-out infinite;
}

.apply-card-title {
    color: #fff;
    font-size: 1.65rem;
    margin-bottom: .4rem;
}

.apply-card-sub {
    color: rgba(255,255,255,.65);
    font-size: .92rem;
    line-height: 1.55;
    margin: 0 0 1.4rem;
}

.apply-steps {
    display: grid;
    gap: .85rem;
    margin: 0 0 1.6rem;
    padding: 0;
    list-style: none;
}

.apply-steps li {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
}

.apply-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9rem;
    margin-top: 1px;
    box-shadow: 0 6px 14px rgba(201,169,106,.28);
}

.apply-step-body strong {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: .98rem;
    margin-bottom: .12rem;
    letter-spacing: -.005em;
}

.apply-step-body span {
    display: block;
    color: rgba(255,255,255,.55);
    font-size: .82rem;
    line-height: 1.45;
}

.apply-fineprint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    margin: 1rem 0 0;
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .02em;
}

.fineprint-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
}

/* ---------- Why Us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.why-card {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease);
    text-align: left;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,169,106,.35);
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-deep);
    background: rgba(201,169,106,.10);
    margin-bottom: 1.1rem;
}

.why-title {
    font-size: 1.3rem;
    margin-bottom: .35rem;
}
.why-text {
    color: var(--color-muted);
    margin: 0;
    font-size: .94rem;
}

/* ---------- FAQ ---------- */
.faq-wrap {
    max-width: 820px;
}

.faq-list {
    display: grid;
    gap: .75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item[open] {
    border-color: rgba(201,169,106,.35);
    box-shadow: var(--shadow-sm);
}

.faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    transition: background .3s var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-item:hover .faq-q { background: rgba(248,246,242,.5); }

.faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: var(--color-gold-deep);
    border-radius: 99px;
    transform: translate(-50%, -50%);
    transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s var(--ease);
}
.faq-item[open] .faq-a { max-height: 500px; }

.faq-a p {
    color: var(--color-muted);
    margin: 0;
    padding: 0 1.5rem 1.4rem;
    font-size: .98rem;
    line-height: 1.7;
}

/* ---------- Final CTA + Form ---------- */
.final-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(800px 400px at 100% 0%, rgba(201,169,106,.1), transparent 60%),
        radial-gradient(700px 400px at 0% 100%, rgba(79,124,125,.08), transparent 60%),
        var(--color-dark);
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.final-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.final-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: #fff;
    margin-bottom: 1rem;
}

.final-sub {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 520px;
}

.final-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

/* Form */
.contact-form {
    background: #fff;
    color: var(--color-text);
    border-radius: var(--radius-xl);
    padding: 2.4rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201,169,106,.18);
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.field {
    display: block;
    margin-bottom: 1rem;
}

.field-label {
    display: block;
    font-size: .82rem;
    font-weight: 500;
    color: var(--color-muted);
    margin-bottom: .4rem;
    letter-spacing: .02em;
}

.optional {
    color: rgba(20,20,20,.4);
    font-weight: 400;
}

.field input,
.field textarea {
    width: 100%;
    padding: .9rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line);
    background: var(--color-soft);
    font-family: inherit;
    font-size: 16px; /* iOS Safari does not zoom-on-focus when ≥16px */
    color: var(--color-text);
    transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder {
    color: rgba(20,20,20,.35);
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201,169,106,.15);
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Honeypot — visually hidden, off-screen */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
.hp-field input { width: 1px; height: 1px; }

.form-status {
    margin: 1rem 0 .25rem;
    font-size: .9rem;
    min-height: 1.4em;
}
.form-status.is-success { color: #2f7d4f; }
.form-status.is-error   { color: #b94a4a; }

.form-fineprint {
    font-size: .8rem;
    color: var(--color-muted);
    margin: 0;
    text-align: center;
}

/* ---------- Footer (minimal — campaign landing) ---------- */
.site-footer-min {
    background: var(--color-soft);
    border-top: 1px solid var(--color-line);
    padding: 4.5rem 0 1.75rem;
    position: relative;
    overflow: hidden;
}

.site-footer-min::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid var(--color-line);
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
}

.footer-tagline-min {
    color: var(--color-muted);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 420px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.4rem;
}

.powered-by-card {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1.3rem .85rem 1.4rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.powered-by-card:hover {
    border-color: rgba(201,169,106,.45);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(20,20,20,.05);
}

.powered-label {
    font-size: .68rem;
    font-weight: 500;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .22em;
}

.powered-name {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-gold-deep);
    line-height: 1;
}

.powered-arrow {
    color: var(--color-gold-deep);
    transition: transform .3s var(--ease);
}
.powered-by-card:hover .powered-arrow {
    transform: translate(2px, -2px);
}

.footer-links {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--color-muted);
    font-size: .88rem;
    font-weight: 500;
    position: relative;
    transition: color .25s var(--ease);
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transform: translateX(-50%);
    transition: width .3s var(--ease);
}

.footer-links a:hover {
    color: var(--color-gold-deep);
}
.footer-links a:hover::after {
    width: 18px;
}

.footer-base {
    padding-top: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copyright-min {
    margin: 0;
    font-size: .8rem;
    color: rgba(20,20,20,.45);
    letter-spacing: .03em;
    text-align: center;
}

@media (max-width: 820px) {
    .site-footer-min       { padding: 3.5rem 0 1.5rem; }

    .footer-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-bottom: 2rem;
    }
    .footer-left   { align-items: center; }
    .footer-right  { align-items: center; }
    .footer-tagline-min { max-width: none; font-size: .98rem; }
    .footer-links  { justify-content: center; }

    .footer-base {
        text-align: center;
    }
}

/* ---------- Footer (legacy 4-column — unused on this page) ---------- */
.site-footer {
    background: #faf8f4;
    border-top: 1px solid var(--color-line);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand .brand {
    margin-bottom: 1rem;
}
.footer-tagline {
    color: var(--color-muted);
    max-width: 320px;
    font-size: .95rem;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.footer-list {
    display: grid;
    gap: .5rem;
}
.footer-list a {
    color: var(--color-muted);
    font-size: .95rem;
    transition: color .2s var(--ease);
}
.footer-list a:hover { color: var(--color-gold-deep); }

.footer-contact-line {
    color: var(--color-muted);
    font-size: .95rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-line);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.copyright,
.signature {
    margin: 0;
    font-size: .85rem;
    color: var(--color-muted);
}

.signature span {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    color: var(--color-gold-deep);
    margin-left: .25em;
}

/* ---------- Section variants ---------- */
.section-tight {
    padding: 5rem 0 4.5rem;
}

.section-sub.on-dark {
    color: rgba(255,255,255,.72);
}

/* ---------- Button shine ---------- */
.btn-shine {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255,255,255,.0) 30%,
        rgba(255,255,255,.45) 50%,
        rgba(255,255,255,.0) 70%,
        transparent 100%
    );
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 1;
    transition: left .9s var(--ease);
}
.btn-shine:hover::after { left: 130%; }

/* ---------- Audience (Who this is for) ---------- */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .85rem 1rem;
    max-width: 980px;
    margin: 0 auto;
}

.audience-item {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1.25rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    font-size: .98rem;
    font-weight: 500;
    color: var(--color-text);
    transition: transform .35s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.audience-item:hover {
    transform: translateY(-3px);
    border-color: rgba(201,169,106,.45);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #fff, #fffaf0);
}

.audience-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
    box-shadow: 0 4px 10px rgba(201,169,106,.32);
    flex-shrink: 0;
}

/* ---------- Built for Conversion ---------- */
.conv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.conv-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem 1.7rem;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease);
    overflow: hidden;
}
.conv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(201,169,106,.06), transparent 55%);
    opacity: 0;
    transition: opacity .35s var(--ease);
    pointer-events: none;
}
.conv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,169,106,.4);
}
.conv-card:hover::before { opacity: 1; }

.conv-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-deep);
    background: linear-gradient(135deg, rgba(201,169,106,.14), rgba(201,169,106,.04));
    border: 1px solid rgba(201,169,106,.25);
    margin-bottom: 1rem;
    transition: transform .35s var(--ease);
}
.conv-card:hover .conv-icon { transform: scale(1.06) rotate(-2deg); }

.conv-title {
    font-size: 1.3rem;
    margin-bottom: .35rem;
}

.conv-text {
    color: var(--color-muted);
    font-size: .95rem;
    margin: 0;
}

/* ---------- Capability highlights ---------- */
.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-xl);
    padding: 1.6rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .5rem .35rem;
    border-right: 1px solid var(--color-line);
}
.highlight-item:last-child { border-right: none; }

.highlight-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
    box-shadow: 0 4px 10px rgba(201,169,106,.3);
}

.highlight-label {
    font-size: .98rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: -.005em;
}

/* ---------- Pricing (light premium) ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-xl);
    padding: 2.4rem 2rem 2rem;
    transition: transform .4s var(--ease), border-color .3s var(--ease), box-shadow .4s var(--ease);
    isolation: isolate;
}
.price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,169,106,.45);
    box-shadow: 0 24px 50px rgba(20,20,20,.08);
}

.price-card-featured {
    border-color: rgba(201,169,106,.55);
    box-shadow: 0 28px 60px rgba(201,169,106,.18);
    transform: translateY(-6px);
    z-index: 2;
}
.price-card-featured:hover {
    transform: translateY(-10px);
    border-color: rgba(201,169,106,.7);
    box-shadow: 0 36px 70px rgba(201,169,106,.24);
}

.price-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem 1.4rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(201,169,106,.4);
    white-space: nowrap;
    z-index: 3;
}

.price-card-head { margin-bottom: 1.5rem; }

.price-name {
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    margin: 0 0 .45rem;
    letter-spacing: -.005em;
}

.price-tag {
    margin: 0;
    font-size: .94rem;
    color: var(--color-muted);
    line-height: 1.55;
    min-height: 2.7em;
}

.price-amount {
    padding: .25rem 0 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-line);
}

.price-from-label {
    display: block;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 400;
    color: var(--color-muted);
    margin-bottom: .35rem;
    letter-spacing: 0;
    text-transform: none;
}

.price-money {
    display: block;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: -.015em;
}

.price-per {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-muted);
    margin-left: .15rem;
}

.price-setup {
    display: block;
    margin-top: .65rem;
    font-size: .88rem;
    color: var(--color-muted);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: grid;
    gap: .7rem;
    flex-grow: 1;
}

.price-features li {
    position: relative;
    padding-left: 2rem;
    font-size: .96rem;
    color: var(--color-text);
    line-height: 1.5;
    min-height: 22px;
}
.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .15em;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(201,169,106,.14);
    border: 1px solid rgba(201,169,106,.35);
}
.price-features li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: .55em;
    width: 10px;
    height: 5px;
    border-left: 2px solid var(--color-gold-deep);
    border-bottom: 2px solid var(--color-gold-deep);
    transform: rotate(-45deg);
}

.price-includes {
    margin: 0 0 1.5rem;
    border: 1px solid rgba(201,169,106,.30);
    border-radius: var(--radius-md);
    background: rgba(201,169,106,.06);
    overflow: hidden;
    transition: border-color .3s var(--ease), background .3s var(--ease);
}
.price-includes[open] {
    border-color: rgba(201,169,106,.5);
}

.price-includes summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .85rem;
    padding: .9rem 1rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-gold-deep);
}
.price-includes summary::-webkit-details-marker { display: none; }

.price-includes-arrow {
    color: var(--color-gold-deep);
    background: rgba(201,169,106,.18);
    border-radius: 50%;
    padding: 6px;
    width: 26px;
    height: 26px;
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}
.price-includes[open] .price-includes-arrow {
    transform: rotate(180deg);
}

.price-includes-body {
    padding: .25rem 1rem 1.1rem;
    display: grid;
    gap: .85rem;
    border-top: 1px solid rgba(201,169,106,.25);
}

.price-includes-row strong {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: .03em;
    margin: .55rem 0 .25rem;
}

.price-includes-row span {
    display: block;
    font-size: .85rem;
    line-height: 1.6;
    color: var(--color-muted);
}

.price-card .btn-block { margin-top: auto; }

.price-card .btn-outline {
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    border: 1px solid var(--color-line);
    transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.price-card .btn-outline:hover {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

/* ---------- Good to Know (replaces Important note) ---------- */
.good-to-know {
    margin-top: 3rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-xl);
    padding: 2.2rem 2rem 1.9rem;
    box-shadow: var(--shadow-sm);
}

.gtk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-gold-deep);
    margin-bottom: 1.4rem;
}
.gtk-dash {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 99px;
}

.gtk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gtk-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}

.gtk-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-deep);
    background: rgba(201,169,106,.10);
    border: 1px solid rgba(201,169,106,.28);
}

.gtk-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .25rem;
}

.gtk-text span {
    display: block;
    font-size: .9rem;
    color: var(--color-muted);
    line-height: 1.55;
}

/* ---------- Founding Clinic Partner Program ---------- */
.founding {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 500px at 100% 0%, rgba(201,169,106,.14), transparent 60%),
        radial-gradient(800px 500px at 0% 100%, rgba(79,124,125,.10), transparent 60%),
        var(--color-dark);
}

.founding-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founding-text { color: rgba(255,255,255,.85); }

.founding-flame {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .5rem 1rem .5rem .85rem;
    background: linear-gradient(135deg, rgba(255,140,80,.18), rgba(201,169,106,.18));
    border: 1px solid rgba(255,140,80,.4);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffcd9b;
    margin-bottom: 1.4rem;
    box-shadow: 0 8px 18px rgba(255,140,80,.18);
}
.founding-flame-icon {
    color: #ff8c50;
    display: inline-flex;
    animation: flameGlow 2s ease-in-out infinite;
}
@keyframes flameGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(255,140,80,.6)); }
    50%      { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(255,140,80,.9)); }
}

.founding-title {
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: -.01em;
}

.founding-sub {
    color: rgba(255,255,255,.78);
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0 0 .8rem;
    max-width: 540px;
}
.founding-sub-soft {
    color: rgba(255,255,255,.55);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 540px;
}

.founding-h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin: 0 0 .9rem;
    color: var(--color-gold);
}

.founding-ideal {
    list-style: none;
    margin: 0 0 1.8rem;
    padding: 0;
    display: grid;
    gap: .55rem;
}
.founding-ideal li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255,255,255,.82);
    font-size: .98rem;
    line-height: 1.5;
}
.founding-ideal li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    transform: rotate(-45deg);
}

.founding-availability {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1rem;
    background: rgba(201,169,106,.10);
    border: 1px solid rgba(201,169,106,.30);
    border-radius: 99px;
    color: var(--color-gold);
    font-size: .9rem;
    font-weight: 500;
    margin: 0 0 2rem;
    width: fit-content;
    max-width: 100%;
}
.founding-availability-icon { color: var(--color-gold); }

.founding-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

/* Glow button */
.btn-glow {
    box-shadow:
        0 14px 30px rgba(201,169,106,.35),
        0 0 0 1px rgba(201,169,106,.4),
        0 0 30px rgba(201,169,106,.25);
}
.btn-glow:hover {
    box-shadow:
        0 18px 36px rgba(201,169,106,.5),
        0 0 0 1px rgba(201,169,106,.6),
        0 0 50px rgba(201,169,106,.35);
}

/* Right column — benefits + offer cards */
.founding-aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.founding-card {
    position: relative;
    background:
        linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201,169,106,.30);
    border-radius: var(--radius-xl);
    padding: 1.9rem 1.8rem;
    color: rgba(255,255,255,.82);
    transition: transform .4s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
    isolation: isolate;
}
.founding-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(360px 200px at 100% 0%, rgba(201,169,106,.18), transparent 60%);
    pointer-events: none;
    z-index: -1;
    border-radius: inherit;
}
.founding-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201,169,106,.5);
    box-shadow: 0 24px 50px rgba(0,0,0,.30);
}

.founding-card-head {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.1rem;
}

.founding-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
    color: #1a1410;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(201,169,106,.32);
}

.founding-card-title {
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-weight: 600;
    margin: 0;
    letter-spacing: -.005em;
}

.founding-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem .85rem;
}
.founding-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    color: rgba(255,255,255,.85);
    font-size: .92rem;
    line-height: 1.45;
}

.benefit-tick {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1410;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
    margin-top: 1px;
}

/* Founding tiers card — 3-row pricing list */
.founding-tiers .founding-card-head {
    align-items: flex-start;
}

.founding-tiers-meta {
    margin: .15rem 0 0;
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .04em;
}

.founding-tiers-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: .65rem;
}

.founding-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1.1rem;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(201,169,106,.18);
    border-radius: var(--radius-md);
    transition: transform .35s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.founding-tier:hover {
    transform: translateY(-2px);
    border-color: rgba(201,169,106,.4);
    background: rgba(201,169,106,.08);
}

.founding-tier-featured {
    background: rgba(201,169,106,.10);
    border-color: rgba(201,169,106,.5);
    box-shadow: inset 0 0 0 1px rgba(201,169,106,.15);
}

.ft-name {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -.005em;
}

.ft-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201,169,106,.18);
    flex-shrink: 0;
}

.ft-pricing {
    text-align: right;
    line-height: 1.25;
}

.ft-price {
    display: inline-flex;
    align-items: baseline;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    letter-spacing: .01em;
    flex-wrap: wrap;
}
.ft-price strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.015em;
}
.ft-per {
    font-family: var(--font-body);
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    margin-left: -.2rem;
}

.ft-setup {
    display: flex;
    align-items: baseline;
    gap: .55rem;
    flex-wrap: wrap;
    font-size: .88rem;
    color: var(--color-gold);
    margin-top: .35rem;
    letter-spacing: .01em;
    font-weight: 500;
}

/* Strikethrough "was" price — shown next to founding price */
.ft-was {
    color: rgba(255,255,255,.75);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.005em;
    white-space: nowrap;
}
/* Custom strike — pseudo-element centered horizontally through the digits.
   We use linear-gradient on the s element itself (not a pseudo) so the line
   is part of the inline box and stays perfectly level edge-to-edge. */
.ft-was s {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 0 2px;
    line-height: 1;
    background-image: linear-gradient(
        to bottom,
        transparent calc(50% - 1.5px),
        var(--color-gold)  calc(50% - 1.5px),
        var(--color-gold)  calc(50% + 1.5px),
        transparent calc(50% + 1.5px)
    );
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* For setup line, slimmer strike that matches the gold tone */
.ft-setup .ft-was {
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    color: rgba(201,169,106,.85);
}
.ft-setup .ft-was s {
    background-image: linear-gradient(
        to bottom,
        transparent calc(50% - 1px),
        var(--color-gold)  calc(50% - 1px),
        var(--color-gold)  calc(50% + 1px),
        transparent calc(50% + 1px)
    );
}

.founding-tiers-note {
    margin: 0;
    text-align: center;
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .03em;
    padding: .75rem 0 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

/* CTA pulse — subtle ring expansion using ::before, doesn't repaint the button */
.btn-pulse {
    position: relative;
}
.btn-pulse::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(201,169,106,.55);
    animation: ctaPulse 2.6s ease-out infinite;
    pointer-events: none;
}
@keyframes ctaPulse {
    0%   { box-shadow: 0 0 0 0 rgba(201,169,106,.55); }
    70%  { box-shadow: 0 0 0 14px rgba(201,169,106,0); }
    100% { box-shadow: 0 0 0 0 rgba(201,169,106,0); }
}
@media (prefers-reduced-motion: reduce) {
    .btn-pulse::before { animation: none; }
}

/* Stagger reveal for new grids */
.conv-grid .reveal:nth-child(1) { transition-delay: 0s; }
.conv-grid .reveal:nth-child(2) { transition-delay: .06s; }
.conv-grid .reveal:nth-child(3) { transition-delay: .12s; }
.conv-grid .reveal:nth-child(4) { transition-delay: .18s; }
.conv-grid .reveal:nth-child(5) { transition-delay: .24s; }
.conv-grid .reveal:nth-child(6) { transition-delay: .30s; }

.pricing-grid .reveal:nth-child(1) { transition-delay: 0s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: .12s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: .24s; }

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger reveal children */
.services-grid .reveal:nth-child(1) { transition-delay: 0s; }
.services-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .24s; }

.steps .reveal:nth-child(1) { transition-delay: 0s; }
.steps .reveal:nth-child(2) { transition-delay: .12s; }
.steps .reveal:nth-child(3) { transition-delay: .24s; }

.why-grid .reveal:nth-child(1) { transition-delay: 0s; }
.why-grid .reveal:nth-child(2) { transition-delay: .08s; }
.why-grid .reveal:nth-child(3) { transition-delay: .16s; }
.why-grid .reveal:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */

/* ============================================================
   Responsive system
   1280  — large desktop (default container caps here)
   1200  — medium desktop tightening
   1024  — tablet & small desktop
    880  — mobile menu activates (prevents nav crowding bigger logo)
    720  — phone landscape / large phone portrait
    480  — standard phone portrait
    360  — small phone portrait
    320  — extra-small / older devices
   ============================================================ */

/* ---------- 1200px — medium desktop ---------- */
@media (max-width: 1200px) {
    .section { padding: 6rem 0; }

    .hero { padding: 11rem 0 5rem; }

    .pricing-grid { gap: 1rem; }
    .price-card   { padding: 2.1rem 1.6rem 1.7rem; }
    .price-name   { font-size: 1.5rem; }
    .price-money  { font-size: 2.3rem; }
    .good-to-know { padding: 2rem 1.6rem; }

    .conv-grid { gap: 1rem; }
    .partnership-grid { gap: 1rem; }
}

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
    .section { padding: 5.5rem 0; }
    .section-tight { padding: 4rem 0 3.5rem; }

    .hero { padding: 10rem 0 4rem; }
    .hero-grid   { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { max-width: 540px; margin: 0 auto; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid      { grid-template-columns: repeat(2, 1fr); }

    .conv-grid          { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid       { grid-template-columns: 1fr; gap: 2.5rem 1.25rem; }

    /* Founding — flatten so children re-order: badge, heading, text, benefits, pricing, availability, CTAs */
    .founding-grid      {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
    .founding-text,
    .founding-aside     { display: contents; }

    .fd-1 { order: 1; align-self: flex-start; }
    .fd-2 { order: 2; }
    .fd-3 { order: 3; margin-bottom: .5rem; }
    .fd-4 { order: 4; }
    .fd-5 { order: 5; }
    .fd-5b{ order: 6; align-self: flex-start; margin-bottom: .25rem; }
    .fd-6 { order: 7; flex-wrap: wrap; }
    .fd-6 .btn { flex: 1 1 220px; justify-content: center; }
    .price-card-featured{ transform: none; }
    .highlights         { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.4rem 1rem; }
    .highlight-item     { border-right: none; }
    .highlight-item:nth-child(odd) { border-right: 1px solid var(--color-line); }
    .highlight-item:last-child { border-right: none; }

    .partner-card { padding: 3rem; grid-template-columns: 1fr; gap: 2rem; }
    .apply-card   { max-width: 520px; }

    .final-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---------- 880px — mobile menu activates ---------- */
@media (max-width: 880px) {
    .menu-toggle { display: inline-flex; }

    .primary-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--color-line);
        flex-direction: column;
        align-items: stretch;
        padding: 6.5rem 1.5rem 2rem;
        gap: 1.2rem;
        transform: translateY(-110%);
        transition: transform .4s var(--ease);
        box-shadow: var(--shadow-md);
        z-index: 90;
        max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .primary-nav.is-open { transform: translateY(0); }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: .25rem;
    }
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-line);
        font-size: 1.02rem;
        text-align: left;
    }
    .nav-link::after { display: none; }
    .nav-cta { width: 100%; margin-top: .6rem; justify-content: center; }
}

/* ---------- 720px — phone ---------- */
@media (max-width: 720px) {
    .container    { padding: 0 1.15rem; }
    .section      { padding: 4.5rem 0; }
    .section-head { margin-bottom: 2.6rem; }

    .hero { padding: 9rem 0 3rem; }
    .hero-cta      { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; width: 100%; }
    .hero-meta     { gap: .85rem 1.25rem; }

    .floating-card  { display: none; }
    .dashboard-card { transform: none; }

    .services-grid,
    .why-grid,
    .conv-grid      { grid-template-columns: 1fr; gap: 1rem; }

    .audience-grid  { gap: .65rem .7rem; }
    .audience-item  { padding: .7rem 1rem; font-size: .92rem; }

    .price-card     { padding: 2rem 1.6rem 1.6rem; }
    .price-name     { font-size: 1.45rem; }
    .price-money    { font-size: 2.2rem; }

    .good-to-know   { padding: 1.8rem 1.4rem 1.5rem; }
    .gtk-grid       { grid-template-columns: 1fr; gap: 1.25rem; }

    .founding-card           { padding: 1.6rem 1.3rem; }
    .founding-benefits-list  { grid-template-columns: 1fr; }

    .founding-title          { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .founding-sub            { font-size: 1rem; }
    .founding-availability   { font-size: .85rem; padding: .8rem .9rem; }

    .founding-tier           { padding: .9rem 1rem; }
    .ft-name                 { font-size: 1.05rem; }
    .ft-price                { font-size: .82rem; }
    .ft-price strong         { font-size: 1.4rem; }
    .ft-was                  { font-size: 1.15rem; font-weight: 700; }
    .ft-setup                { font-size: .85rem; }
    .ft-setup .ft-was        { font-size: .9rem; font-weight: 600; }

    .founding-cta-row        { width: 100%; }
    .founding-cta-row .btn   { flex: 1 1 100%; justify-content: center; }

    .partner-card    { padding: 2.2rem 1.5rem; }
    .apply-card      { padding: 1.75rem 1.4rem 1.5rem; max-width: none; }
    .apply-card-title { font-size: 1.45rem; }
    .apply-stamp     { top: 1.1rem; right: 1.1rem; width: 34px; height: 34px; }

    .field-row    { grid-template-columns: 1fr; gap: 0; }
    .contact-form { padding: 1.75rem; }
    .form-title   { font-size: 1.5rem; }

    .brand-logo            { height: 56px; }
    .site-header.is-scrolled .brand-logo { height: 48px; }
    .brand-footer .brand-logo { height: 72px; }
}

/* ---------- 480px — standard phone ---------- */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }

    .section      { padding: 3.75rem 0; }
    .section-tight{ padding: 3rem 0 2.75rem; }
    .section-head { margin-bottom: 2.2rem; }

    .highlights     { grid-template-columns: 1fr; gap: .25rem; padding: 1.2rem 1rem; }
    .highlight-item { padding: .85rem .25rem; border-right: none !important; border-bottom: 1px solid var(--color-line); }
    .highlight-item:last-child { border-bottom: none; }

    .price-includes { padding: .85rem .9rem; }

    /* Founding — at 480px, tier rows stack price below name */
    .founding-flame             { font-size: .68rem; padding: .45rem .85rem .45rem .75rem; }
    .founding-title             { font-size: 1.85rem; }
    .founding-card              { padding: 1.4rem 1.15rem; border-radius: var(--radius-lg); }
    .founding-card-head         { gap: .55rem; margin-bottom: .9rem; }
    .founding-card-icon         { width: 28px; height: 28px; }
    .founding-card-title        { font-size: 1.08rem; }

    .founding-tier              { flex-direction: column; align-items: flex-start; gap: .35rem; padding: .85rem .95rem; }
    .ft-pricing                 { text-align: left; }
    .ft-name                    { font-size: 1rem; }

    .founding-availability      { font-size: .82rem; line-height: 1.4; align-items: flex-start; padding: .75rem .9rem; }
    .founding-availability-icon { margin-top: 2px; flex-shrink: 0; }

    .hero        { padding: 8rem 0 2.5rem; }
    .hero-title  { font-size: 2rem; line-height: 1.18; }
    .hero-sub    { font-size: 1rem; margin-bottom: 1.75rem; }
    .hero-meta   { font-size: .82rem; gap: .6rem 1.1rem; }

    .section-title { font-size: 1.75rem; }
    .section-sub   { font-size: .98rem; }

    .service-card,
    .why-card     { padding: 1.85rem 1.4rem; }
    .service-title,
    .why-title    { font-size: 1.25rem; }

    .partner-card    { padding: 1.85rem 1.25rem; }
    .partner-title   { font-size: 1.5rem; }
    .partner-sub     { font-size: .96rem; }

    .apply-card      { padding: 1.5rem 1.2rem; }
    .apply-card-title { font-size: 1.35rem; }
    .apply-card-sub  { font-size: .88rem; }

    .final-title  { font-size: 1.85rem; }
    .final-sub    { font-size: .98rem; }

    .contact-form { padding: 1.5rem 1.2rem; }
    .form-title   { font-size: 1.35rem; }

    .btn          { padding: .9rem 1.4rem; font-size: .92rem; }
    .btn-lg       { padding: 1rem 1.6rem; font-size: .96rem; }

    .brand-logo            { height: 48px; }
    .site-header.is-scrolled .brand-logo { height: 42px; }
    .brand-footer .brand-logo { height: 60px; }

    .powered-by-card { padding: .7rem 1.1rem; gap: .65rem; }
    .powered-name    { font-size: 1.05rem; }
    .powered-label   { font-size: .65rem; letter-spacing: .18em; }
    .footer-links    { gap: 1.1rem; }
}

/* ---------- 360px — small phone ---------- */
@media (max-width: 360px) {
    .container     { padding: 0 .85rem; }

    .hero          { padding: 7.5rem 0 2rem; }
    .hero-title    { font-size: 1.85rem; }
    .section-title { font-size: 1.55rem; }

    .partner-card  { padding: 1.5rem 1rem; }
    .partner-points li { padding-left: 1.4rem; font-size: .9rem; }

    .apply-steps li      { gap: .7rem; }
    .apply-step-body strong { font-size: .92rem; }
    .apply-step-body span   { font-size: .78rem; }

    .contact-form  { padding: 1.25rem 1rem; }
    .field input,
    .field textarea { padding: .8rem .9rem; }

    .brand-logo            { height: 42px; }
    .site-header.is-scrolled .brand-logo { height: 38px; }
    .brand-footer .brand-logo { height: 54px; }

    .audience-item { font-size: .88rem; padding: .6rem .9rem; }
    .price-card    { padding: 1.7rem 1.2rem 1.4rem; }
    .price-name    { font-size: 1.3rem; }
    .price-money   { font-size: 1.9rem; }

    .founding-title { font-size: 1.65rem; }
    .founding-card  { padding: 1.25rem 1rem; }
    .ft-price strong { font-size: 1.3rem; }
    .ft-was         { font-size: 1.05rem; font-weight: 700; }
    .ft-setup .ft-was { font-size: .85rem; font-weight: 600; }
    .ft-was s::after { height: 2.5px; }
}

/* ---------- 320px — very small phone ---------- */
@media (max-width: 320px) {
    .container { padding: 0 .75rem; }

    .hero          { padding: 7rem 0 1.75rem; }
    .hero-title    { font-size: 1.7rem; }
    .section-title { font-size: 1.4rem; }

    .price-money   { font-size: 1.7rem; }
    .price-features li { font-size: .88rem; }

    .audience-item { font-size: .82rem; padding: .55rem .85rem; }
    .audience-check { width: 22px; height: 22px; }

    .founding-flame  { font-size: .62rem; padding: .35rem .7rem; letter-spacing: .1em; }
    .founding-title  { font-size: 1.5rem; }
    .founding-card   { padding: 1.1rem .9rem; }
    .ft-name         { font-size: .95rem; }
    .ft-price strong { font-size: 1.2rem; }
    .ft-was          { font-size: .98rem; font-weight: 700; }
    .ft-setup .ft-was{ font-size: .8rem; font-weight: 600; }
    .ft-was s::after { height: 2.5px; }
}

/* ---------- Tap-target / touch device minimums ---------- */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .footer-links a,
    .menu-toggle,
    .audience-item,
    .field input,
    .field textarea {
        min-height: 44px;
    }
    .nav-link { padding: 12px 0; }
    .footer-links a { padding: 4px 0; display: inline-block; }
}

/* ---------- Landscape phone — keep hero compact ---------- */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
    .hero { padding: 7rem 0 2rem; }
    .hero-title { font-size: 1.9rem; margin-bottom: .8rem; }
    .hero-sub   { margin-bottom: 1.2rem; }
    .floating-card { display: none; }
}

/* ---------- High-DPI image rendering hint ---------- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .brand-logo { image-rendering: -webkit-optimize-contrast; }
}

/* ---------- Print ---------- */
@media print {
    .site-header,
    .hero-bg,
    .cta-bg,
    .floating-card { display: none; }
    body  { color: #000; background: #fff; }
    .btn  { border: 1px solid #000 !important; background: none !important; color: #000 !important; box-shadow: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
}
