/* ============================================================
   CLEAN CHIMNEY INDIA — brand theme
   Inspired by a dark, cinematic enterprise design system.
   Palette: bg #0B0F19 · text #F5F7FA · accent #3A8DFF
   ============================================================ */

:root {
    --bg: #0B0F19;
    --bg-2: #0D1220;
    --text: #F5F7FA;
    --muted-1: rgba(245, 247, 250, 0.78);
    --muted-2: rgba(245, 247, 250, 0.65);
    --accent: #3A8DFF;
    --accent-soft: rgba(58, 141, 255, 0.25);
    --line: rgba(255, 255, 255, 0.1);
    --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-mono: "Quantico", "Inter", system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 80rem; /* 1280px */
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px)  { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

/* ---------- typography ---------- */
.h2 {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.h2.lg { font-size: 2.75rem; }
.h2.large { font-size: 2.5rem; }
.h2.xl { font-size: 3rem; line-height: 1.08; }
.h2.xl b { font-weight: 800; }

@media (min-width: 640px) {
    .h2 { font-size: 3rem; }
    .h2.lg { font-size: 3.75rem; }
    .h2.large { font-size: 3rem; }
    .h2.xl { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
    .h2.lg { font-size: 3.4rem; }
    .h2.xl { font-size: 4.25rem; }
}

.h3 { font-size: 1.4rem; font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
.h3.dim { color: rgba(245, 247, 250, 0.92); }

.lede { color: var(--muted-1); font-size: 1.05rem; line-height: 1.7; }
.lede.strong { color: var(--text); font-size: 1.4rem; line-height: 1.6; font-weight: 500; }
.muted { color: var(--muted-1); line-height: 1.75; }
.kicker {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text);
}
.kicker.accent { color: rgba(58, 141, 255, 0.85); }
.big-line { color: var(--text); font-size: 1.25rem; font-weight: 500; line-height: 1.6; }

/* ---------- buttons ---------- */
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    white-space: nowrap;
    border: 1px solid transparent;
    font-family: var(--font-sans);
    line-height: 1;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
    cursor: pointer;
}
.pill:active { transform: translateY(1px); }
.pill:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.pill.dark { background: #fff; color: #000; }
.pill.dark:hover { background: #F2F4F7; }
.pill.ghost { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.pill.ghost:hover { background: #fff; color: #000; }
.pill.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.pill.primary:hover { background: #2F7DE6; border-color: #2F7DE6; }
.pill.plain { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.pill.plain:hover { border-color: rgba(255, 255, 255, 0.55); }
.pill.light { background: #fff; color: #000; }
.pill.light:hover { background: #F2F4F7; }

/* ---------- reveal-on-scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); }
[data-reveal].is-in { opacity: 1; transform: none; }
.grid-2 > [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.grid-4 > [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.grid-4 > [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.grid-4 > [data-reveal]:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 2.5rem;
    text-align: center;
    overflow: hidden;
    background-color: var(--bg);
    background-image:
        radial-gradient(55% 45% at 50% 18%, rgba(58, 141, 255, 0.18), transparent 62%),
        radial-gradient(45% 40% at 15% 85%, rgba(56, 196, 160, 0.1), transparent 62%),
        radial-gradient(50% 42% at 88% 78%, rgba(58, 141, 255, 0.1), transparent 62%),
        linear-gradient(180deg, #0D1322, #0B0F19 45%, #0E1628);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(90% 60% at 50% 42%, transparent 40%, rgba(11, 15, 25, 0.55) 100%),
        linear-gradient(180deg, rgba(11, 15, 25, 0.35) 0%, rgba(11, 15, 25, 0) 30%, rgba(11, 15, 25, 0) 60%, rgba(11, 15, 25, 0.55) 100%);
}

/* top bar */
.topbar {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
}
.brand-logo {
    height: 2.75rem;
    width: auto;
    flex: none;
    object-fit: contain;
    padding: 0.3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFFFFF 0%, #EAF2FF 100%);
    border: 1px solid rgba(58, 141, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(58, 141, 255, 0.25), 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), filter 0.3s var(--ease);
}
.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
    box-shadow: 0 0 0 4px rgba(58, 141, 255, 0.45), 0 6px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}
@media (min-width: 640px) { .brand-logo { height: 3.25rem; } }
.brand-name {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.15;
}
.brand-sub {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    color: rgba(245, 247, 250, 0.65);
}
.topbar-actions { display: flex; align-items: center; gap: 0.9rem; }
.topbar .pill { padding: 0.55rem 1rem; font-size: 0.62rem; letter-spacing: 0.2em; }

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
}
.menu-label { font-size: 0.75rem; letter-spacing: 0.15em; }
.menu-lines { display: flex; flex-direction: column; gap: 0.25rem; }
.menu-lines span { width: 1.25rem; height: 1px; background: #fff; transition: transform 0.3s var(--ease); }
.menu-toggle:hover .menu-lines span:last-child { transform: translateX(0.25rem); }

/* hero center */
.hero-center { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; margin-top: auto; }
.eyebrow { font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted-1); }
.hero-title {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hero-sub {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.5;
    color: var(--muted-1);
}
.hero-tag { font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-1); max-width: 44rem; }

@media (min-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-sub { font-size: 1.15rem; }
    .hero-tag { font-size: 1rem; }
}

/* scroll rail */
.hero-rail { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; margin-top: auto; }
.rail-line { width: 1px; height: 44px; background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent); animation: railDrop 2.2s var(--ease) infinite; }
.rail-text { font-size: 0.6rem; letter-spacing: 0.32em; color: var(--muted-2); }
@keyframes railDrop {
    0% { transform: scaleY(0); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: top; }
    56% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   TYPED QUOTE BAND
   ============================================================ */
.typed-band {
    position: relative;
    min-height: 52vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.bg-fx { position: absolute; inset: 0; }
.typed-bg {
    background:
        radial-gradient(70% 55% at 70% 20%, rgba(58, 141, 255, 0.2), transparent 65%),
        radial-gradient(60% 50% at 20% 85%, rgba(255, 122, 58, 0.14), transparent 65%),
        linear-gradient(135deg, #0B0F19, #0E1628 55%, #0B0F19);
}
.bg-fx::after, .sticky-media::after, .texture::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.typed-overlay { position: absolute; inset: 0; background: rgba(11, 15, 25, 0.6); }
.typed-wrap { position: relative; z-index: 1; padding: 2rem; width: 100%; display: flex; justify-content: center; }
.typed {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.35;
    min-height: 2.5em;
    max-width: 60rem;
}
@media (min-width: 640px) { .typed { font-size: 1.9rem; } }
@media (min-width: 1024px) { .typed { font-size: 2.5rem; } }
.cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    margin-left: 0.25rem;
    transform: translateY(0.15em);
    background: rgba(255, 255, 255, 0.85);
    animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve { position: relative; padding: 5rem 0; overflow: hidden; }
.serve-bg {
    background:
        radial-gradient(80% 55% at 85% 10%, rgba(58, 141, 255, 0.16), transparent 62%),
        radial-gradient(70% 50% at 10% 90%, rgba(255, 122, 58, 0.08), transparent 62%),
        linear-gradient(180deg, #0B0F19, #0D1322);
}
.serve-overlay { position: absolute; inset: 0; background: rgba(11, 15, 25, 0.5); }
.serve .container { position: relative; z-index: 1; }
.section-head { max-width: 44rem; margin: 0 auto; text-align: center; }
.section-head .lede { margin-top: 1.25rem; }

.grid-2 { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card-card {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), border-color 0.3s;
}
.card-card:hover { border-color: rgba(255, 255, 255, 0.45); }
.card-card .h3 { font-size: 1.6rem; }
.card-card p { margin: 1rem auto 0; max-width: 28rem; color: var(--muted-1); font-size: 0.9rem; line-height: 1.65; }
.card-card .pill { margin-top: 2rem; }

/* ============================================================
   SERVICES — sticky background layer
   ============================================================ */
.services { position: relative; overflow: hidden; }
.sticky-bg { position: absolute; inset: 0; z-index: 0; }
.sticky-media {
    position: sticky;
    top: 0;
    height: 100vh;
    background-position: center;
    background-size: cover;
}
.services-media {
    background-color: #0E1628;
    background-image:
        radial-gradient(52% 42% at 28% 20%, rgba(58, 141, 255, 0.24), transparent 62%),
        radial-gradient(48% 40% at 76% 74%, rgba(56, 196, 160, 0.18), transparent 62%),
        radial-gradient(60% 52% at 50% 50%, rgba(255, 122, 58, 0.1), transparent 65%),
        linear-gradient(150deg, #0D1628, #0B0F19);
}
.sticky-shade { position: absolute; inset: 0; background: rgba(11, 15, 25, 0.52); }
.sticky-shade.dark72 { background: rgba(0, 0, 0, 0.72); }

.services-body { position: relative; z-index: 1; padding: 6rem 0; }
.split { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; align-items: start; } }

.split-text .h2 { margin-bottom: 1rem; }
.split-text .muted { margin-top: 1rem; }

.dot-list { margin-top: 2rem; }
.dot-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(245, 247, 250, 0.9);
    font-size: 0.925rem;
}
.dot-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.dot {
    flex: none;
    margin-top: 0.5rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.split-media {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.2);
    line-height: 0;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SYSTEM LAYERS
   ============================================================ */
.system { position: relative; padding: 6rem 0; overflow: hidden; }
.system-bg {
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, #0B0F19, #0D1224);
    background-size: 44px 44px, 44px 44px, auto;
}
.system .container { position: relative; z-index: 1; }
.system .h2 { margin-bottom: 2rem; }
.grid-4 { display: grid; gap: 1rem; }
@media (min-width: 768px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.layer-card {
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    transition: border-color 0.3s, background 0.3s, opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.layer-card:hover { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.045); }
.layer-title { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.75rem; }
.layer-card p { font-size: 0.85rem; line-height: 1.6; color: var(--muted-1); }

/* ============================================================
   APPROACH / DESIGN
   ============================================================ */
.approach { background: var(--bg); padding: 6rem 0; }
.approach .split { align-items: center; }
.approach .split-text .kicker { margin-bottom: 1rem; }
.approach .lede.strong { margin-top: 1.75rem; }
.approach .muted { margin-top: 1.5rem; }
.approach .big-line { margin-top: 1.5rem; }

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes {
    position: relative;
    background: #000;
    padding: 8rem 0;
    overflow: hidden;
}
.net { position: absolute; inset: 0; pointer-events: none; }
.net-a, .net-b {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}
.net-a {
    top: -15rem; left: -10rem;
    width: 34rem; height: 34rem;
    background: radial-gradient(circle, rgba(58, 141, 255, 0.16), transparent 62%);
    animation: drift 14s ease-in-out infinite;
}
.net-b {
    bottom: -16rem; right: -8rem;
    width: 30rem; height: 30rem;
    background: radial-gradient(circle, rgba(56, 196, 160, 0.12), transparent 60%);
    animation: drift 18s ease-in-out infinite reverse;
}
@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(4rem, 3rem) scale(1.06); }
}
.outcomes-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4rem; }
.stat-num {
    font-family: var(--font-mono);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.suffix { margin-left: 0.12em; }
.stat-label {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;
}
@media (min-width: 640px) {
    .stat-num { font-size: 6.5rem; }
    .stat-label { font-size: 1rem; }
}
@media (min-width: 1024px) { .stat-num { font-size: 7.5rem; } }
.outcomes-tag {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 640px) { .outcomes-tag { font-size: 0.9rem; } }

/* keep "0" states hidden until animated */
.stat .count { display: inline-block; }

/* ============================================================
   INDIA FIRST
   ============================================================ */
.india { position: relative; overflow: hidden; }
.india-media {
    background-color: #0E1628;
    background-image:
        radial-gradient(58% 50% at 24% 24%, rgba(255, 122, 58, 0.16), transparent 62%),
        radial-gradient(54% 48% at 80% 76%, rgba(58, 141, 255, 0.2), transparent 62%),
        radial-gradient(70% 60% at 50% 50%, rgba(56, 196, 160, 0.1), transparent 60%),
        linear-gradient(150deg, #0D1322, #0B0F19);
}
.india-inner {
    position: relative;
    z-index: 1;
    padding: 7rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.india-inner .h3 { margin-top: -0.25rem; }
.india-copy { max-width: 48rem; font-size: 1.05rem; line-height: 1.8; }
.india-lines {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(245, 247, 250, 0.84);
}
@media (min-width: 640px) { .india-lines { font-size: 1rem; } }

/* ============================================================
   FOUNDATION
   ============================================================ */
.foundation { background: var(--bg); padding: 8rem 0; }
.foundation-inner {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) { .foundation-inner { grid-template-columns: 7fr 3fr; } }
.foundation-text .kicker { margin-bottom: 1.5rem; }
.foundation-sub { margin-top: 1.25rem; color: var(--muted-1); line-height: 1.8; font-size: 1.05rem; }
.foundation-mark { display: flex; justify-content: center; }
@media (min-width: 1024px) { .foundation-mark { justify-content: flex-end; } }
.foundation-mark img { width: 16rem; object-fit: contain; }
@media (min-width: 640px) { .foundation-mark img { width: 20rem; } }
@media (min-width: 1024px) { .foundation-mark img { width: 24rem; } }

/* ============================================================
   ENDING CTA
   ============================================================ */
.cta { position: relative; overflow: hidden; }
.cta-media {
    background-color: #0E1628;
    background-image:
        radial-gradient(55% 48% at 50% 22%, rgba(58, 141, 255, 0.2), transparent 62%),
        radial-gradient(50% 46% at 18% 82%, rgba(255, 122, 58, 0.14), transparent 60%),
        linear-gradient(150deg, #0D1322, #0B0F19);
}
.cta-inner {
    position: relative;
    z-index: 1;
    padding: 7rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}
.cta-inner .muted { max-width: 44rem; font-size: 1.05rem; line-height: 1.75; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.cta-line {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--muted-1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.5rem 0;
}
@media (min-width: 1024px) {
    .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-brand { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.2em; }
.footer-tag { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted-2); }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
@media (min-width: 1024px) { .footer-links { align-items: flex-end; } }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: 0.92rem; color: rgba(245, 247, 250, 0.7); }
.footer-nav a, .footer-legal a { transition: color 0.25s; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--text); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: rgba(245, 247, 250, 0.6); }

/* ============================================================
   MENU OVERLAY
   ============================================================ */
.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(11, 15, 25, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease);
}
.menu-backdrop.is-open { opacity: 1; visibility: visible; }

.menu {
    position: fixed;
    top: 0; right: 0;
    z-index: 50;
    width: min(24rem, 92vw);
    height: 100%;
    background: #0B0F19;
    border-left: 1px solid var(--line);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateX(105%);
    transition: transform 0.5s var(--ease);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.menu.is-open { transform: translateX(0); }

.menu-head { display: flex; align-items: center; justify-content: space-between; }
.menu-brand { display: flex; align-items: center; gap: 0.75rem; }
.menu-logo {
    height: 2.75rem;
    width: auto;
    flex: none;
    object-fit: contain;
    padding: 0.3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFFFFF 0%, #EAF2FF 100%);
    border: 1px solid rgba(58, 141, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(58, 141, 255, 0.25);
}
.menu-close {
    width: 2.5rem; height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: grid;
    place-items: center;
    position: relative;
}
.menu-close span {
    position: absolute;
    width: 0.9rem; height: 1px;
    background: #fff;
}
.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }

.menu-list { display: flex; flex-direction: column; }
.menu-list a {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.25s, transform 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.menu-list a:hover { color: var(--accent); transform: translateX(0.25rem); }
.menu-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted-2); letter-spacing: 0.1em; }

.menu-foot { margin-top: auto; display: flex; flex-direction: column; gap: 1.5rem; }
.menu-contact { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.85rem; color: var(--muted-1); }

body.menu-open { overflow: hidden; }
html.menu-open { overflow: hidden; }

/* ============================================================
   HERO ACTIONS & TRUST
   ============================================================ */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
}
.trust-chip {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    background: rgba(11, 15, 25, 0.45);
    backdrop-filter: blur(6px);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats { padding: 4.5rem 0; background: linear-gradient(180deg, #0B0F19, #0D1220); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stats .stat-num { font-size: 2.75rem; }
@media (min-width: 640px) { .stats .stat-num { font-size: 3.25rem; } }
.stats .stat-label {
    color: rgba(245, 247, 250, 0.75);
    letter-spacing: 0.2em;
    font-size: 0.75rem;
}
@media (min-width: 640px) { .stats .stat-label { font-size: 0.85rem; } }

/* ============================================================
   CTA PAIR (reusable)
   ============================================================ */
.cta-pair {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2.5rem;
    justify-content: center;
}
.left-aligned .cta-pair, .services .cta-pair { justify-content: flex-start; }
@media (min-width: 768px) { .services .cta-pair { justify-content: center; } }
.section-head + .cta-pair, .reviews-cta .cta-pair { margin-top: 0; }

/* ============================================================
   SERVICES GRID + AMC
   ============================================================ */
.services-body { position: relative; z-index: 1; padding: 6rem 0; }
.services-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(11, 15, 25, 0.55);
    backdrop-filter: blur(6px);
    padding: 2rem 1.75rem;
    transition: border-color 0.3s, transform 0.4s var(--ease), background 0.3s, opacity 0.7s var(--ease);
}
.service-card:hover {
    border-color: rgba(58, 141, 255, 0.55);
    transform: translateY(-4px);
    background: rgba(13, 18, 32, 0.8);
}
.service-card.featured { border-color: rgba(58, 141, 255, 0.5); }
.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0B0F19;
    background: var(--accent);
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
}
.service-card .h3 { margin-bottom: 0.9rem; }
.service-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--muted-1);
    margin-bottom: 1.5rem;
    flex: 1;
}
.service-card .pill { padding: 0.6rem 1.25rem; font-size: 0.7rem; letter-spacing: 0.16em; }

.amc-banner {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid rgba(255, 122, 58, 0.4);
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 122, 58, 0.12), rgba(58, 141, 255, 0.1));
    padding: 2rem 2rem;
}
@media (min-width: 768px) {
    .amc-banner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.amc-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: #FF7A3A;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    margin-bottom: 0.75rem;
}
.amc-content p:last-of-type { color: var(--muted-1); font-size: 0.95rem; margin-top: 0.5rem; }

/* ============================================================
   GALLERY — BEFORE / AFTER
   ============================================================ */
.gallery { position: relative; padding: 6rem 0; overflow: hidden; }
.gallery-bg {
    background:
        radial-gradient(75% 55% at 12% 15%, rgba(58, 141, 255, 0.14), transparent 60%),
        radial-gradient(60% 50% at 88% 90%, rgba(56, 196, 160, 0.1), transparent 60%),
        linear-gradient(180deg, #0B0F19, #0D1322);
}
.gallery .container { position: relative; z-index: 1; }
.gallery-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { text-align: center; }
.gallery-comparison {
    position: relative;
    overflow: hidden;
    border-radius: 0.9rem;
    border: 1px solid var(--line);
    line-height: 0;
}
.gallery-comparison img {
    width: 100%;
    height: 13rem;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover .gallery-comparison img { transform: scale(1.04); }
.gallery-label {
    position: absolute;
    top: 0.75rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}
.gallery-label.before { left: 0.75rem; background: rgba(11, 15, 25, 0.7); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.gallery-label.after { right: 0.75rem; background: var(--accent); color: #0B0F19; }
.gallery-caption {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-2);
}

/* ============================================================
   WHY GRID
   ============================================================ */
.why-section .split-text .h2 { font-size: 2rem; }
@media (min-width: 640px) { .why-section .split-text .h2 { font-size: 2.6rem; } }
.why-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-item {
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.75rem 1.5rem;
    transition: border-color 0.3s, background 0.3s, opacity 0.7s var(--ease);
}
.why-item:hover { border-color: rgba(58, 141, 255, 0.5); background: rgba(58, 141, 255, 0.06); }
.why-item h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; }
.why-item p { font-size: 0.88rem; line-height: 1.65; color: var(--muted-1); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { position: relative; padding: 6rem 0; overflow: hidden; }
.reviews-bg {
    background:
        radial-gradient(70% 55% at 85% 20%, rgba(58, 141, 255, 0.16), transparent 62%),
        radial-gradient(65% 50% at 10% 85%, rgba(255, 122, 58, 0.11), transparent 60%),
        linear-gradient(180deg, #0B0F19, #0D1224);
}
.reviews .container { position: relative; z-index: 1; }
.reviews-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
.review-card {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(11, 15, 25, 0.6);
    padding: 2rem;
}
.review-stars { color: #FFC35A; letter-spacing: 0.15em; }
.review-card > p { font-size: 0.97rem; line-height: 1.75; color: var(--muted-1); flex: 1; }
.review-author { display: flex; align-items: center; gap: 0.9rem; }
.review-avatar {
    flex: none;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(58, 141, 255, 0.16);
    border: 1px solid rgba(58, 141, 255, 0.45);
    color: #fff;
}
.review-author strong { display: block; font-size: 0.95rem; }
.review-author span:last-child { font-size: 0.8rem; color: var(--muted-2); }
.reviews-cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas { background: var(--bg); padding: 6rem 0; }
.areas-grow { margin-top: 3rem; }
.areas-list {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px)  { .areas-list { grid-template-columns: repeat(4, 1fr); } }
.area-head {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(58, 141, 255, 0.3);
}
.area-col li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: rgba(245, 247, 250, 0.88);
}
.areas-map { margin-top: 3rem; line-height: 0; }
.areas-map iframe { filter: grayscale(0.4) contrast(1.05) brightness(0.8); }
.areas .cta-pair { margin-top: 2.5rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { position: relative; padding: 6rem 0; overflow: hidden; }
.faq-bg {
    background:
        radial-gradient(70% 55% at 15% 15%, rgba(56, 196, 160, 0.12), transparent 62%),
        radial-gradient(65% 50% at 85% 85%, rgba(58, 141, 255, 0.14), transparent 60%),
        linear-gradient(180deg, #0B0F19, #0D1322);
}
.faq .container { position: relative; z-index: 1; }
.faq-list { margin-top: 3rem; max-width: 60rem; margin-left: auto; margin-right: auto; }
.faq-item {
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    background: rgba(11, 15, 25, 0.55);
    margin-bottom: 0.9rem;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.is-open { border-color: rgba(58, 141, 255, 0.5); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}
.faq-icon {
    position: relative;
    flex: none;
    width: 1rem;
    height: 1rem;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 1rem;
    height: 1px;
    background: var(--text);
    transition: transform 0.3s var(--ease);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item.is-open .faq-icon::after { transform: rotate(0deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-item.is-open .faq-answer { max-height: 16rem; }
.faq-answer p {
    padding: 0 1.5rem 1.4rem;
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--muted-1);
}
.faq .cta-pair { margin-top: 2.5rem; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--bg); padding: 6rem 0; }
.booking-wrapper {
    display: grid;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 1024px) { .booking-wrapper { grid-template-columns: 1fr 1.2fr; } }
.booking-info .kicker { margin-bottom: 1rem; }
.booking-info .muted { margin-top: 1.25rem; }
.booking-contact-items {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.booking-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 1rem 1.25rem;
    transition: border-color 0.3s, background 0.3s;
}
.booking-contact-item:hover { border-color: rgba(58, 141, 255, 0.55); background: rgba(58, 141, 255, 0.06); }
.booking-icon {
    flex: none;
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(58, 141, 255, 0.14);
    border: 1px solid rgba(58, 141, 255, 0.4);
    color: #fff;
}
.booking-contact-item strong { display: block; font-size: 0.95rem; }
.booking-detail { font-size: 0.85rem; color: var(--muted-1); }
.booking-form {
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: rgba(13, 18, 32, 0.7);
    padding: 2rem;
}
.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.form-group label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-1);
    margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: rgba(11, 15, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.7rem;
    padding: 0.75rem 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(58, 141, 255, 0.18);
}
.form-group select option { background: #0D1220; color: var(--text); }
.form-group textarea { resize: vertical; }
.pill.block {
    width: 100%;
    white-space: normal;
    padding: 1rem 1.25rem;
    letter-spacing: 0.12em;
    line-height: 1.3;
    font-size: 0.85rem;
}
.form-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted-2);
}
.form-status {
    margin-top: 1rem;
    border-radius: 0.7rem;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    border: 1px solid rgba(58, 141, 255, 0.45);
    background: rgba(58, 141, 255, 0.1);
    color: var(--text);
}
.form-status.is-error {
    border-color: rgba(255, 122, 58, 0.55);
    background: rgba(255, 122, 58, 0.12);
}

/* ============================================================
   STICKY MOBILE + BACK TO TOP
   ============================================================ */
.sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem 0.8rem;
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
}
@media (min-width: 768px) { .sticky-mobile { display: none; } }
.sticky-call, .sticky-whatsapp {
    flex: 1;
    text-align: center;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}
.sticky-call { background: #fff; color: #000; }
.sticky-whatsapp { background: rgba(58, 141, 255, 0.18); color: #fff; border: 1px solid rgba(58, 141, 255, 0.5); }

.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 6rem;
    z-index: 25;
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(11, 15, 25, 0.85);
    color: #fff;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 768px) { .back-to-top { bottom: 1.5rem; } }

/* ============================================================
   RESPONSIVE — mobile, tablet, laptop
   ============================================================ */
@media (max-width: 640px) {
    .hero { padding: 1.25rem; gap: 2.5rem; }
    .hero-title { font-size: 1.55rem; letter-spacing: 0.12em; }
    .hero-sub { font-size: 0.82rem; letter-spacing: 0.08em; }
    .eyebrow { font-size: 0.62rem; letter-spacing: 0.26em; }
    .hero-tag { font-size: 0.72rem; line-height: 1.8; }
    .hero-actions, .hero-trust { flex-direction: column; align-items: center; width: 100%; }
    .hero-actions .pill, .hero-trust .trust-chip { width: 100%; max-width: 22rem; }
    .hero .pill { padding: 0.95rem 1rem; font-size: 0.72rem; }

    .stats { padding: 3.5rem 0; }
    .stats-grid { gap: 2rem; }
    .stats .stat-num { font-size: 2.25rem; }

    .typed-band { min-height: 38vh; }
    .typed { font-size: 1.15rem; }
    .cursor { height: 1em; }

    .serve, .gallery, .reviews, .faq, .booking, .areas, .approach, .system { padding: 4rem 0; }
    .services-body { padding: 4rem 0; }

    .h2 { font-size: 1.9rem; }
    .h2.lg { font-size: 2.1rem; }
    .h2.large { font-size: 2rem; }
    .h3 { font-size: 1.25rem; }

    .card-card { padding: 2rem 1.25rem; }
    .card-card .h3 { font-size: 1.35rem; }

    .gallery-comparison img { height: 9.5rem; }
    .review-card { padding: 1.5rem; }
    .amc-banner { padding: 1.75rem 1.4rem; }

    .split-text .h2 { font-size: 1.8rem; }
    .india-copy { font-size: 0.98rem; }
    .india-lines { font-size: 0.8rem; letter-spacing: 0.14em; }
    .india-inner { padding: 5rem 0; }

    .booking-form { padding: 1.5rem 1.25rem; }
    .areas-map iframe { height: 300px; }

    .cta-inner { padding: 5rem 0; }
    .cta-line { gap: 0.5rem 1rem; font-size: 0.8rem; }

    .footer-inner { padding: 2.25rem 0 7.5rem; }
    body { padding-bottom: 0; }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .hero { padding: 2rem; }
    .hero-title { font-size: 2.4rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-list { grid-template-columns: repeat(4, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-comparison img { height: 12rem; }
}

@media (min-width: 1025px) {
    .hero-title { font-size: 3.4rem; }
}

@media (min-width: 1280px) {
    .hero-title { font-size: 4rem; letter-spacing: 0.22em; }
}

.sticky-mobile {
    padding-bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.legal {
    min-height: 100vh;
    padding: 4rem 0 7rem;
    background:
        radial-gradient(60% 50% at 80% 5%, rgba(58, 141, 255, 0.12), transparent 62%),
        linear-gradient(180deg, #0D1322, #0B0F19 40%);
}
.legal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
}
.legal-logo {
    height: 2.75rem;
    width: auto;
    object-fit: contain;
    padding: 0.3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFFFFF 0%, #EAF2FF 100%);
    border: 1px solid rgba(58, 141, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(58, 141, 255, 0.25);
}
.legal-back {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-1);
    transition: color 0.25s;
}
.legal-back:hover { color: var(--text); }
.legal-body { max-width: 48rem; margin: 0 auto; }
.legal-body h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
@media (min-width: 640px) { .legal-body h1 { font-size: 3rem; } }
.legal-updated {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-2);
}
.legal-intro { margin-top: 2rem; color: var(--muted-1); font-size: 1.05rem; line-height: 1.8; }
.legal-body h2 {
    margin-top: 3rem;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.legal-body p, .legal-body li { margin-top: 1rem; color: var(--muted-1); font-size: 0.98rem; line-height: 1.8; }
.legal-body ul { padding-left: 1.25rem; list-style: disc; }
.legal-body ul li { margin-top: 0.5rem; }
.legal-body a { color: var(--accent); }
.legal-body a:hover { text-decoration: underline; }
.legal-contact {
    margin-top: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
}
.legal-contact a { display: block; margin-top: 0.4rem; }

/* ============================================================
   MOTION PRECAUTION
   ============================================================ */
@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; }
}