/* =====================================================================
   MADE TO SCALE — Monochrome + a hint of gold  (shared stylesheet)
   Multi-page, dependency-free. Built for Hostinger File Manager.
===================================================================== */
:root {
    --bg:          #0A0A0B;
    --bg-2:        #0C0C0E;
    --surface:     #131316;
    --surface-2:   #181820;

    /* The single warm accent — used sparingly */
    --gold:        #C9A227;
    --gold-bright: #E8C77E;
    --gold-grad:   linear-gradient(135deg, #E8C77E 0%, #C9A227 55%, #9A7B1E 100%);

    /* Monochrome "shine" used where gold used to be */
    --silver:      #DADAD7;
    --silver-grad: linear-gradient(180deg, #FFFFFF 0%, #C8C8C6 55%, #8C8C8A 100%);

    --text:        #F1F1EE;
    --text-muted:  #A7A7A3;
    --text-faint:  #6C6C68;

    --line:        rgba(255,255,255,0.08);
    --line-strong: rgba(255,255,255,0.15);

    --whatsapp:    #25D366;

    --font-display: 'Jost', 'Century Gothic', sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

    --maxw: 1200px;
    --radius: 16px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px; line-height: 1.7;
    color: var(--text-muted);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Film grain */
body::after {
    content: ""; position: fixed; inset: 0; z-index: 9998;
    pointer-events: none; opacity: 0.045; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { text-decoration: none; color: inherit; transition: color 0.25s var(--ease), opacity 0.25s var(--ease); }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--text); color: #0A0A0B; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); line-height: 1.1; font-weight: 500; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: 1.3rem; font-weight: 500; }

.accent-grad {
    background: var(--silver-grad); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.gold-text { color: var(--gold-bright); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-pad { padding: clamp(72px, 11vh, 132px) 0; }

.eyebrow {
    font-family: var(--font-mono); font-size: 0.74rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.28em; color: var(--text-muted);
    display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

.section-head { max-width: 680px; margin-bottom: clamp(48px, 7vw, 76px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { font-size: 1.075rem; color: var(--text-muted); margin-top: 20px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 30px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
    border-radius: 10px; border: 1px solid transparent; cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
    white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--gold-grad); color: #0A0A0B; box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 24px -10px rgba(201,162,39,0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 16px 38px -12px rgba(201,162,39,0.5); }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.btn-block { width: 100%; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 4px; }

/* ===================== INTRO REVEAL ===================== */
.intro {
    position: fixed; inset: 0; z-index: 2000; background: #000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.9s var(--ease), visibility 0.9s;
}
.intro.hide { opacity: 0; visibility: hidden; }
.intro-logo {
    width: clamp(250px, 42vw, 460px); height: auto;
    opacity: 0; transform: scale(0.94);
    animation: introIn 1.5s var(--ease) forwards;
}
@keyframes introIn {
    0% { opacity: 0; transform: scale(0.94); filter: blur(6px); }
    60% { opacity: 1; filter: blur(0); }
    100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

/* ===================== FIXED MOUNTAIN BACKDROP ===================== */
.backdrop { position: fixed; inset: 0; z-index: -2; overflow: hidden; background: #050506; }
.backdrop-img {
    position: absolute; inset: -2% 0 0 0; width: 100%; height: 104%;
    object-fit: cover; object-position: center 32%;
    filter: grayscale(1) contrast(1.06) brightness(0.5);
    will-change: transform;
}
.backdrop-veil { position: absolute; inset: 0; background:
    radial-gradient(120% 80% at 50% 8%, transparent 30%, rgba(5,5,6,0.4) 78%),
    linear-gradient(180deg, rgba(5,5,6,0.35) 0%, rgba(5,5,6,0.15) 32%, rgba(10,10,11,0.78) 80%, var(--bg) 100%); }
/* drifting mist */
.mist { position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
    background: radial-gradient(60% 40% at 30% 60%, rgba(220,225,235,0.06), transparent 70%),
                radial-gradient(50% 35% at 75% 45%, rgba(220,225,235,0.05), transparent 70%);
    animation: mistDrift 26s ease-in-out infinite alternate; }
@keyframes mistDrift { 0% { transform: translate3d(-2%,0,0) scale(1); } 100% { transform: translate3d(3%,-2%,0) scale(1.08); } }

/* Scroll progress */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--gold-grad); z-index: 1002; transition: width 0.1s linear; }

/* ===================== NAVBAR ===================== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease); border-bottom: 1px solid transparent; }
.navbar.scrolled { background: rgba(10,10,11,0.72); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark { width: 42px; height: 42px; flex: none; background: url('logo.png') no-repeat center 30%; background-size: 178%; border-radius: 7px; }
.brand-word { font-family: var(--font-display); font-weight: 400; font-size: 0.96rem; letter-spacing: 0.34em; color: var(--text); text-transform: uppercase; padding-left: 0.34em; }
.nav-menu { display: flex; align-items: center; gap: 38px; }
.nav-link { font-size: 0.92rem; font-weight: 500; color: var(--text-muted); position: relative; padding: 6px 0; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { padding: 11px 22px; background: var(--gold-grad); color: #0A0A0B; font-weight: 600; font-size: 0.88rem; border-radius: 9px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -12px rgba(201,162,39,0.6); color: #0A0A0B; }
.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================== HERO (home) ===================== */
.hero { position: relative; height: 100vh; height: 100dvh; }
.hero-sticky { position: sticky; top: 0; height: 100vh; height: 100dvh; overflow: hidden; display: flex; align-items: center; }
.hero-copy { position: relative; z-index: 3; max-width: 640px; width: 100%; }
.hero-copy .eyebrow { color: var(--silver); }
.hero h1 { color: var(--text); margin-bottom: 26px; text-shadow: 0 2px 40px rgba(0,0,0,0.6); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--text); opacity: 0.86; max-width: 520px; margin-bottom: 38px; text-shadow: 0 1px 20px rgba(0,0,0,0.6); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 0.86rem; color: var(--text); opacity: 0.7; }
.hero-trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.scroll-cue { position: absolute; left: 28px; bottom: 30px; z-index: 3; display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-faint); transition: opacity 0.4s var(--ease); }
.scroll-cue .bar { width: 1px; height: 38px; background: linear-gradient(180deg, var(--silver), transparent); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero { position: relative; padding: clamp(140px, 22vh, 220px) 0 clamp(46px, 8vh, 84px); }
.page-hero .eyebrow { color: var(--silver); }
.page-hero h1 { color: var(--text); text-shadow: 0 2px 40px rgba(0,0,0,0.6); }
.page-hero p { color: var(--text); opacity: 0.85; max-width: 620px; margin-top: 18px; font-size: clamp(1.02rem, 1.5vw, 1.15rem); text-shadow: 0 1px 20px rgba(0,0,0,0.55); }

/* ===================== CONTENT WRAP (covers backdrop for legibility) ===================== */
.content { position: relative; z-index: 1; background:
    linear-gradient(180deg, transparent 0%, var(--bg) 7%, var(--bg) 100%); }

/* PROOF */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 40px 24px; text-align: center; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: none; }
.proof-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 3.2vw, 2.7rem); line-height: 1; }
.proof-label { font-size: 0.82rem; color: var(--text-faint); margin-top: 10px; letter-spacing: 0.02em; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.services-grid--5 { grid-template-columns: repeat(3, 1fr); } /* services page: 5 cards → 3 on top, 2 below */
.card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease); overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s var(--ease); background: radial-gradient(120% 60% at 50% 0%, rgba(255,255,255,0.06), transparent 60%); }
.card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8); }
.card:hover::before { opacity: 1; }
.card.featured { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border-color: rgba(201,162,39,0.28); }
.badge { position: absolute; top: 18px; right: 18px; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-bright); border: 1px solid rgba(201,162,39,0.3); padding: 5px 10px; border-radius: 999px; }
.ico { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; background: rgba(255,255,255,0.05); border: 1px solid var(--line-strong); color: var(--silver); }
.ico svg { width: 25px; height: 25px; stroke-width: 1.5; }
.card h3 { color: var(--text); margin-bottom: 12px; }
.card > p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 22px; }
.feature-list { display: flex; flex-direction: column; gap: 11px; }
.feature-list li { font-size: 0.88rem; color: var(--text-muted); padding-left: 26px; position: relative; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 1.5px solid var(--silver); border-bottom: 1.5px solid var(--silver); transform: rotate(-45deg); }

/* PROCESS */
.process { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 28px; border-top: 1px solid var(--line-strong); }
.step .num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--silver); letter-spacing: 0.1em; }
.step h3 { font-size: 1.18rem; color: var(--text); margin: 14px 0 10px; }
.step p { font-size: 0.92rem; color: var(--text-muted); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about p { font-size: 1.06rem; color: var(--text-muted); margin-bottom: 20px; }
.quote { position: relative; margin: 30px 0; padding: 28px 30px; background: var(--surface); border: 1px solid var(--line); border-left: 2px solid var(--gold); border-radius: 0 14px 14px 0; }
.quote p { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: 1.15rem; line-height: 1.6; color: var(--text); margin: 0; }
.quote .sign { display: block; margin-top: 18px; font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 0.9rem; color: var(--silver); letter-spacing: 0.02em; }
.about-visual { position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: #060607; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; opacity: 0.97; }
.about-visual .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); background: linear-gradient(0deg, rgba(6,6,7,0.9), transparent); }

/* FOUNDERS */
.about-lead { max-width: 700px; margin-bottom: clamp(36px, 5vw, 56px); }
.about-lead p { font-size: 1.075rem; color: var(--text-muted); }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.founder { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: clamp(28px, 3vw, 40px); transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.founder:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.founder .f-quote { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: 1.22rem; line-height: 1.5; color: var(--text); border-left: 2px solid var(--gold); padding-left: 20px; margin-bottom: 22px; }
.founder > p { font-size: 1rem; color: var(--text-muted); margin-bottom: 26px; }
.founder .f-by { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.founder .f-mono { width: 46px; height: 46px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.3); font-family: var(--font-display); font-weight: 500; color: var(--gold-bright); font-size: 1.15rem; }
.founder .f-name { font-family: var(--font-display); font-weight: 500; color: var(--text); font-size: 1.05rem; }
.founder .f-role { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-top: 4px; }
@media (max-width: 760px) { .founders { grid-template-columns: 1fr; } }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 38px 30px; position: relative; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.price-card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8); }
.price-card.featured { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border-color: rgba(201,162,39,0.3); box-shadow: 0 0 0 1px rgba(201,162,39,0.3), 0 30px 70px -34px rgba(0,0,0,0.85); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold-grad); color: #0A0A0B; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 7px 18px; border-radius: 999px; }
.price-card h3 { color: var(--text); font-size: 1.4rem; margin-bottom: 8px; }
.price-card .tier-desc { font-size: 0.9rem; color: var(--text-muted); min-height: 44px; margin-bottom: 24px; }
.amount { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 28px; font-family: var(--font-display); color: var(--text); }
.amount .cur { font-size: 1.3rem; font-weight: 500; margin-top: 12px; color: var(--silver); }
.amount .val { font-size: 3.4rem; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.amount .plus { font-size: 1.6rem; font-weight: 500; margin-top: 6px; color: var(--text-muted); }
.price-features { display: flex; flex-direction: column; gap: 0; margin-bottom: 30px; flex: 1; }
.price-features li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; color: var(--text-muted); }
.price-features li:last-child { border-bottom: none; }
.price-features svg { width: 18px; height: 18px; color: var(--silver); flex-shrink: 0; }
.price-note { text-align: center; margin-top: 44px; color: var(--text-faint); font-size: 0.92rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.methods { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.method { display: flex; align-items: center; gap: 18px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease); }
a.method:hover { border-color: var(--line-strong); transform: translateX(6px); background: var(--surface-2); }
.method .m-ico { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--line); }
.method .m-ico svg { width: 22px; height: 22px; }
.m-ico.wa { color: var(--whatsapp); border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.08); }
.m-ico.em { color: var(--silver); }
.m-ico.loc { color: var(--text); }
.m-label { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-faint); }
.m-value { font-size: 1.02rem; font-weight: 600; color: var(--text); margin-top: 3px; }
.cta-card { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-strong); border-radius: 22px; padding: clamp(34px, 5vw, 52px); text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 80%; height: 80%; background: radial-gradient(closest-side, rgba(255,255,255,0.06), transparent); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--text); margin-bottom: 14px; }
.cta-card p { color: var(--text-muted); margin-bottom: 30px; }
.cta-note { margin-top: 16px; font-size: 0.82rem; color: var(--text-faint); }

/* LEGAL */
.legal { background: var(--bg-2); border-top: 1px solid var(--line); }
.legal-wrap { max-width: 820px; margin: 0 auto; }
details.policy { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); margin-top: 22px; overflow: hidden; }
details.policy summary { cursor: pointer; list-style: none; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: 1.1rem; color: var(--text); }
details.policy summary::-webkit-details-marker { display: none; }
details.policy summary .chev { width: 16px; height: 16px; border-right: 2px solid var(--silver); border-bottom: 2px solid var(--silver); transform: rotate(45deg); transition: transform 0.3s var(--ease); flex-shrink: 0; }
details.policy[open] summary .chev { transform: rotate(-135deg); }
.policy-body { padding: 0 26px 26px; }
.policy-body h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--silver); margin: 22px 0 8px; letter-spacing: 0.02em; }
.policy-body p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 12px; }
.policy-body ul { margin: 6px 0 12px 20px; }
.policy-body li { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 6px; list-style: disc; }
.policy-body a { color: var(--gold-bright); }
.policy-body a:hover { text-decoration: underline; }

/* FOOTER */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 60px; padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.footer-logo { height: 56px; width: auto; }
.footer-brand p { color: var(--text-faint); margin-top: 18px; max-width: 320px; font-size: 0.92rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.footer-col h4 { font-family: var(--font-mono); font-weight: 500; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-faint); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 30px; color: var(--text-faint); font-size: 0.82rem; flex-wrap: wrap; }

.wa-float { position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5); z-index: 999; transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ATMOSPHERIC BANDS */
.band { position: relative; height: clamp(380px, 64vh, 640px); overflow: hidden; display: flex; align-items: flex-end; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-img { position: absolute; left: 0; right: 0; top: -12%; width: 100%; height: 124%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.72); z-index: 0; will-change: transform; }
.band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,5,6,0.55) 0%, rgba(5,5,6,0.05) 38%, rgba(5,5,6,0.7) 100%); }
.band-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px 52px; }
.band-inner .eyebrow { color: var(--silver); margin-bottom: 14px; }
.band-inner h2 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.7); max-width: 640px; }
.band-inner p { color: #fff; opacity: 0.86; margin-top: 12px; max-width: 520px; text-shadow: 0 1px 16px rgba(0,0,0,0.7); }

/* REVEAL */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 860px) {
    .nav-menu { position: fixed; inset: 78px 0 auto 0; background: rgba(10,10,11,0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); flex-direction: column; align-items: flex-start; gap: 4px; padding: 24px 28px 32px; border-bottom: 1px solid var(--line); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), visibility 0.3s; }
    .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-menu li { width: 100%; }
    .nav-link { display: block; padding: 12px 0; font-size: 1.05rem; width: 100%; }
    .nav-cta { display: inline-block; margin-top: 10px; }
    .nav-toggle { display: flex; }
    /* Mobile hero: flow below the fixed nav so nothing is ever covered/clipped */
    .hero { height: auto; min-height: 100dvh; }
    .hero-sticky { position: static; height: auto; min-height: 100dvh; align-items: flex-start; padding: 104px 0 84px; overflow: visible; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 420px; margin: 0 auto; order: -1; }
    .footer-top { grid-template-columns: 1fr; gap: 44px; }
    .backdrop-img { filter: grayscale(1) contrast(1.05) brightness(0.42); }
}
@media (max-width: 600px) {
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-item:nth-child(2) { border-right: none; }
    .proof-item:nth-child(1), .proof-item:nth-child(2) { border-bottom: 1px solid var(--line); }
    .services-grid, .steps { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .scroll-cue { display: none; }
    .brand-word { display: none; }
}
@media (max-width: 440px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .container { padding: 0 20px; }
    .nav-inner { padding: 0 20px; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .intro { display: none; }
    .hero { height: auto; }
    .hero-sticky { position: static; height: auto; min-height: 100vh; }
    .mist { animation: none; }
}

@media (pointer: fine) {
    ::-webkit-scrollbar { width: 11px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: #2a2a30; border-radius: 6px; border: 3px solid var(--bg); }
    ::-webkit-scrollbar-thumb:hover { background: #3a3a42; }
    html { scrollbar-color: #2a2a30 var(--bg); scrollbar-width: thin; }
}
