/* ============================
   RESET & BASE
============================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Gold palette */
    --gold-1: #C9A84C;
    --gold-2: #E8D48B;
    --gold-3: #A07830;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #F5E6A0 40%, #C9A84C 60%, #A07830 100%);
    --gold-gradient-border: linear-gradient(135deg, #A07830, #F5E6A0, #C9A84C, #8B6520, #E8D48B);

    /* Light mode tokens */
    --bg: #FAFAF8;
    --bg-2: #F2F1EE;
    --bg-3: #ECEAE6;
    --text-primary: #0F0D0B;
    --text-secondary: #2E2B27;
    --text-muted: #7A7268;
    --border: rgba(0,0,0,0.08);
    --border-accent: rgba(0,0,0,0.14);
    --card-bg: #FFFFFF;
    --card-shadow: 0 2px 16px rgba(0,0,0,0.06);
    --input-bg: #FFFFFF;
    --input-border: rgba(0,0,0,0.12);
    --input-focus: #1A1814;
    --nav-bg: rgba(250,250,248,0.85);
    --footer-bg: #1A1814;
    --footer-text: #F5F0E8;

    --radius: 16px;
    --radius-sm: 10px;

    /* Transition speed for mode switch */
    --mode-speed: 0.55s;
}

/* Dark/premium mode overrides */
[data-mode="dark"] {
    --bg: #080808;
    --bg-2: #0F0F0F;
    --bg-3: #141414;
    --text-primary: #F5F0E8;
    --text-secondary: #C8C0B4;
    --text-muted: #6A6058;
    --border: rgba(201,168,76,0.12);
    --border-accent: rgba(201,168,76,0.25);
    --card-bg: #0F0F0F;
    --card-shadow: 0 2px 24px rgba(0,0,0,0.5);
    --input-bg: #0A0A0A;
    --input-border: rgba(201,168,76,0.15);
    --input-focus: rgba(201,168,76,0.5);
    --nav-bg: rgba(8,8,8,0.75);
    --footer-bg: #080808;
    --footer-text: #F5F0E8;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background var(--mode-speed) ease, color var(--mode-speed) ease;
}

/* ============================
   CONTENT SWITCHING
============================ */
/* Default: show light, hide dark */
.dark-text { display: none !important; }
.light-text { display: inline !important; }
.features-group.dark-text { display: none !important; }
.features-group.light-text { display: contents !important; }

/* Premium: show dark, hide light */
[data-mode="dark"] .light-text { display: none !important; }
[data-mode="dark"] .dark-text { display: inline !important; }
[data-mode="dark"] .features-group.light-text { display: none !important; }
[data-mode="dark"] .features-group.dark-text { display: contents !important; }

/* Logo spans */
.logo-light, .logo-dark { display: inline; }
[data-mode="dark"] .logo-light { display: none; }
[data-mode="light"] .logo-dark { display: none; }

/* Block-level text alternates (p, h1, h2, h3) */
h1 .dark-text, h2 .dark-text, h3 .dark-text,
p .dark-text, div.hero-label .dark-text,
div.section-label .dark-text, div.contact-sub .dark-text { display: none; }
h1 .light-text, h2 .light-text, h3 .light-text,
p .light-text, div.hero-label .light-text,
div.section-label .light-text, div.contact-sub .light-text { display: inline; }

[data-mode="dark"] h1 .light-text,
[data-mode="dark"] h2 .light-text,
[data-mode="dark"] h3 .light-text,
[data-mode="dark"] p .light-text,
[data-mode="dark"] div.hero-label .light-text,
[data-mode="dark"] div.section-label .light-text,
[data-mode="dark"] div.contact-sub .light-text { display: none; }

[data-mode="dark"] h1 .dark-text,
[data-mode="dark"] h2 .dark-text,
[data-mode="dark"] h3 .dark-text,
[data-mode="dark"] p .dark-text,
[data-mode="dark"] div.hero-label .dark-text,
[data-mode="dark"] div.section-label .dark-text,
[data-mode="dark"] div.contact-sub .dark-text { display: inline; }

/* Price value */
.price-value .light-text,
.price-value .dark-text { display: inline; }
[data-mode="dark"] .price-value .light-text { display: none; }
[data-mode="light"] .price-value .dark-text { display: none; }

/* Textarea placeholder label */
.form-group label .light-text { display: inline; }
.form-group label .dark-text { display: none; }
[data-mode="dark"] .form-group label .light-text { display: none; }
[data-mode="dark"] .form-group label .dark-text { display: inline; }

/* ============================
   ANIMATED BG FRAMES (dark only)
============================ */
.bg-frames {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s ease;
}
[data-mode="dark"] .bg-frames { opacity: 1; }

.bg-frame {
    position: absolute;
    border-radius: 24px;
    border: 1px solid rgba(201,168,76,0.07);
    animation: driftFrame linear infinite;
}
.f1 { width: 320px; height: 220px; top: 10%; left: -5%; animation-duration: 40s; }
.f2 { width: 180px; height: 280px; top: 55%; right: -3%; animation-duration: 55s; animation-delay: -10s; }
.f3 { width: 260px; height: 160px; bottom: 20%; left: 20%; animation-duration: 48s; animation-delay: -20s; }
.f4 { width: 140px; height: 140px; top: 30%; right: 25%; border-radius: 50%; animation-duration: 62s; animation-delay: -5s; }
.f5 { width: 380px; height: 100px; bottom: 8%; right: 10%; animation-duration: 35s; animation-delay: -30s; }

@keyframes driftFrame {
    0%   { transform: translate(0,0) rotate(0deg); }
    25%  { transform: translate(30px,-20px) rotate(2deg); }
    50%  { transform: translate(-10px,40px) rotate(-1deg); }
    75%  { transform: translate(-30px,10px) rotate(1.5deg); }
    100% { transform: translate(0,0) rotate(0deg); }
}

/* ============================
   PREMIUM TOGGLE
============================ */
.premium-toggle-wrap {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.premium-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all var(--mode-speed) ease;
    position: relative;
    overflow: hidden;
    min-width: 52px;
}

/* Light mode toggle: clean white pill hinting at something beyond */
[data-mode="light"] .premium-toggle {
    background: #FFFFFF;
    color: #1A1814;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.06);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

[data-mode="light"] .premium-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

[data-mode="light"] .premium-toggle:hover::before { opacity: 1; }
[data-mode="light"] .premium-toggle:hover { color: #0a0800; box-shadow: 0 6px 28px rgba(201,168,76,0.35); }

[data-mode="light"] .premium-toggle .dark-text { display: none !important; }
[data-mode="dark"] .premium-toggle .light-text { display: none !important; }

/* Dark mode toggle: back to standard */
[data-mode="dark"] .premium-toggle {
    background: rgba(201,168,76,0.08);
    color: var(--gold-1);
    box-shadow: 0 0 0 1px rgba(201,168,76,0.25);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
[data-mode="dark"] .premium-toggle:hover {
    background: rgba(201,168,76,0.15);
}

.toggle-gem {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
    transition: transform 0.3s;
}

[data-mode="light"] .premium-toggle .toggle-gem {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gemPulse 2.5s ease-in-out infinite;
}

@keyframes gemPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

.toggle-sub {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    writing-mode: vertical-rl;
}

[data-mode="light"] .toggle-sub .dark-text { display: none !important; }
[data-mode="dark"] .toggle-sub .light-text { display: none !important; }

/* ============================
   TYPOGRAPHY
============================ */
.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--mode-speed) ease;
}
.logo strong { font-weight: 600; }

[data-mode="dark"] .logo strong {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: color var(--mode-speed) ease;
}

[data-mode="dark"] .section-label {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    transition: color var(--mode-speed) ease;
}

/* Light: use Plus Jakarta Sans */
[data-mode="light"] .section-title { font-family: 'Plus Jakarta Sans', sans-serif; }

/* Dark: use Cormorant Garamond */
[data-mode="dark"] .section-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; }

[data-mode="dark"] .section-title em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================
   LAYOUT
============================ */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* ============================
   NAV
============================ */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(24px) saturate(1.4);
    background: var(--nav-bg);
    transition: background var(--mode-speed) ease, border-color var(--mode-speed) ease;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
    padding: 0.5rem 1.3rem;
    border-radius: 100px;
    border: 1px solid var(--border-accent) !important;
    font-size: 0.82rem !important;
    transition: background 0.25s, border-color 0.25s !important;
}
.nav-cta:hover { background: var(--bg-2) !important; }

[data-mode="dark"] .nav-cta {
    border-color: rgba(201,168,76,0.3) !important;
    color: var(--gold-1) !important;
}
[data-mode="dark"] .nav-cta:hover {
    background: rgba(201,168,76,0.08) !important;
    border-color: rgba(201,168,76,0.5) !important;
}

/* ============================
   BUTTONS
============================ */
.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative; z-index: 1;
}

[data-mode="light"] .btn-primary {
    background: var(--text-primary);
    color: var(--bg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
[data-mode="light"] .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

[data-mode="dark"] .btn-primary {
    background: var(--gold-gradient);
    color: #0a0800;
    box-shadow: 0 4px 24px rgba(201,168,76,0.25);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
[data-mode="dark"] .btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(201,168,76,0.35);
}

.btn-full { width: 100%; text-align: center; padding: 1.1rem; }

/* ============================
   MOCKUP FRAMES
============================ */
.mockup-frame {
    position: relative;
    border-radius: var(--radius);
    transition: all var(--mode-speed) ease;
}

[data-mode="light"] .mockup-frame {
    border: 1.5px solid var(--border-accent);
    background: var(--bg-2);
}

[data-mode="dark"] .mockup-frame {
    padding: 3px;
    background: var(--gold-gradient-border);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
}
[data-mode="dark"] .mockup-frame > * {
    border-radius: calc(var(--radius) - 3px);
    background: var(--bg-2);
}

.card-frame {
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

[data-mode="light"] .card-frame {
    border: 1px solid var(--border);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
}
[data-mode="light"] .card-frame:hover {
    border-color: var(--border-accent);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

[data-mode="dark"] .card-frame {
    border: 1px solid rgba(201,168,76,0.12);
    background: var(--bg-dark, #080808);
}
[data-mode="dark"] .card-frame:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.02);
    transform: translateY(-6px);
}

.card-mockup-frame {
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}
[data-mode="light"] .card-mockup-frame {
    border: 1px solid var(--border);
    background: var(--bg-2);
}
[data-mode="dark"] .card-mockup-frame {
    padding: 2px;
    background: var(--gold-gradient-border);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}
[data-mode="dark"] .card-mockup-frame > * {
    border-radius: calc(var(--radius-sm) - 2px);
    background: var(--bg-3);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.mockup-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.mockup-placeholder span {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px dashed var(--border-accent);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
}

.mockup-placeholder-sm {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}
.mockup-placeholder-sm span {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px dashed var(--border-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
}

/* ============================
   HERO
============================ */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background var(--mode-speed) ease;
}

[data-mode="light"] .hero { background: var(--bg); }

[data-mode="dark"] .hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    transition: all var(--mode-speed) ease;
}

[data-mode="light"] .hero-title { font-family: 'Plus Jakarta Sans', sans-serif; }
[data-mode="dark"] .hero-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; }

[data-mode="light"] .hero-title em {
    font-style: italic;
    color: var(--text-primary);
    opacity: 0.5;
}

[data-mode="dark"] .hero-title em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 480px;
    font-weight: 400;
    margin-bottom: 2.8rem;
    line-height: 1.7;
    transition: color var(--mode-speed) ease;
}

.hero-price-block {
    display: flex;
    align-items: flex-start;
    gap: 0.2rem;
    margin-bottom: 2.2rem;
    line-height: 1;
}

.price-currency {
    font-size: 2rem;
    font-weight: 400;
    padding-top: 0.5rem;
    transition: all var(--mode-speed) ease;
}

[data-mode="light"] .price-currency { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-primary); }

[data-mode="dark"] .price-currency {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-value {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    transition: all var(--mode-speed) ease;
}

[data-mode="light"] .price-value { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: var(--text-primary); }

[data-mode="dark"] .price-value {
    font-family: 'Cormorant Garamond', serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-mockup {
    margin-top: 4rem;
    width: 100%;
    max-width: 800px;
}

/* ============================
   PROCESS
============================ */
.process {
    padding: 120px 0;
    transition: background var(--mode-speed) ease;
}

[data-mode="light"] .process { background: var(--bg-2); }
[data-mode="dark"] .process { background: var(--bg-2); }

.process .container > .section-label,
.process .container > .section-title { text-align: center; }

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

.process-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.card-number {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1.2rem;
    transition: all var(--mode-speed) ease;
}

[data-mode="light"] .card-number { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-muted); }

[data-mode="dark"] .card-number {
    font-family: 'Cormorant Garamond', serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: all var(--mode-speed) ease;
}
[data-mode="dark"] .process-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.6rem; }

.process-card p { font-size: 0.88rem; color: var(--text-secondary); font-weight: 400; line-height: 1.6; }

/* ============================
   DELIVERABLES
============================ */
.deliverables {
    padding: 120px 0;
    transition: background var(--mode-speed) ease;
}

[data-mode="light"] .deliverables { background: var(--bg); }

.deliverables-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
}

.deliverables-left { position: sticky; top: 120px; }
.deliverables-left .section-title { margin-bottom: 2.5rem; }

.deliverables-right { display: flex; flex-direction: column; gap: 1rem; }

.features-group { display: contents; }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 1.4rem;
}

.feat-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 0.75rem;
    transition: all var(--mode-speed) ease;
}

[data-mode="light"] .feat-icon {
    background: var(--bg-2);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

[data-mode="dark"] .feat-icon {
    background: rgba(201,168,76,0.05);
    color: var(--gold-1);
    border: 1px solid rgba(201,168,76,0.25);
}

.feature-item h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    transition: color var(--mode-speed) ease;
}
.feature-item p { font-size: 0.82rem; color: var(--text-secondary); font-weight: 400; }

/* ============================
   CONTACT
============================ */
.contact {
    padding: 120px 0;
    transition: background var(--mode-speed) ease;
}

[data-mode="light"] .contact { background: var(--bg-2); }
[data-mode="dark"] .contact { background: var(--bg-2); }

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-mockup { width: 100%; }

/* Form */
form { display: flex; flex-direction: column; gap: 0.8rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--mode-speed) ease;
}

input, textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: border-color 0.25s, background 0.25s, color var(--mode-speed) ease;
    -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, textarea:focus {
    outline: none;
    border-color: var(--input-focus);
}
textarea { resize: vertical; min-height: 130px; }

#formMessage {
    text-align: center;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* ============================
   FOOTER
============================ */
footer {
    padding: 2.4rem 0;
    border-top: 1px solid var(--border);
    background: var(--footer-bg);
    transition: background var(--mode-speed) ease;
}

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

footer .logo { color: var(--footer-text); }
footer p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.footer-links { display: flex; gap: 1.8rem; }
.footer-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================
   SCROLL REVEAL
============================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================
   PAGE TRANSITION OVERLAY
============================ */
.mode-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    background: #080808;
    transition: opacity 0.28s ease;
}
.mode-overlay.flash { opacity: 1; }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 900px) {
    .process-grid { grid-template-columns: 1fr; max-width: 420px; margin: 3rem auto 0; }
    .deliverables-inner { grid-template-columns: 1fr; gap: 3rem; }
    .deliverables-left { position: static; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .contact-mockup { display: none; }
    .premium-toggle-wrap { right: 16px; }
}

@media (max-width: 640px) {
    .nav-links a:not(.nav-cta) { display: none; }
    .hero { padding-top: 120px; }
    .footer-inner { flex-direction: column; text-align: center; }
}
