/* Brict IT — premium, dependency-free interface */
:root {
    --ink: #111426;
    --ink-deep: #0a0c18;
    --ink-soft: #19182b;
    --aubergine: #3d214a;
    --plum: #71345f;
    --copper: #d96550;
    --orange: #f28a46;
    --amber: #f5b15f;
    --ivory: #f7f1ea;
    --paper: #fffaf5;
    --rose: #df6b75;
    --muted: #9d99aa;
    --muted-dark: #655f6b;
    --line: rgba(255, 255, 255, 0.11);
    --line-dark: rgba(17, 20, 38, 0.12);
    --shadow: 0 22px 58px rgba(3, 4, 12, 0.24);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 36px;
    --shell: 1200px;
    --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    color-scheme: dark;
    background: var(--ink-deep);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ivory);
    background: var(--ink-deep);
    font-family: Inter, "Avenir Next", Avenir, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html.cookie-consent-pending,
body.cookie-consent-pending {
    overflow: hidden;
}

body.cookie-consent-pending::before {
    position: fixed;
    z-index: 1000;
    inset: 0;
    content: "";
    background: rgba(10, 12, 24, .3);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

body::selection { color: var(--ink); background: var(--amber); }

img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1.08;
}

h1 { font-size: clamp(2.8rem, 5vw, 5.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.65rem); }

.site-noise {
    position: fixed;
    z-index: 999;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.narrow { max-width: 830px; }
.section { position: relative; padding: clamp(88px, 11vw, 150px) 0; }
.section-light { color: var(--ink); background: var(--ivory); }
.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }

/* Keep section backgrounds calm; depth belongs to the components inside them. */
main > section {
    isolation: isolate;
}

main > section > * { position: relative; z-index: 1; }
.site-footer { position: relative; isolation: isolate; }

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(247, 241, 234, .72);
    font-size: .76rem;
    font-weight: 760;
    letter-spacing: .17em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow i {
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, var(--orange), var(--amber));
    box-shadow: 0 0 14px rgba(242, 138, 70, .65);
}

.eyebrow-dark { color: var(--muted-dark); }
.lead { max-width: 720px; color: rgba(247, 241, 234, .74); font-size: clamp(1.04rem, 1.4vw, 1.2rem); line-height: 1.65; }
.lead-dark { color: var(--ink); font-size: clamp(1.1rem, 1.7vw, 1.3rem); line-height: 1.6; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 760;
    letter-spacing: .015em;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s, background .25s, border-color .25s;
}

.button:hover { transform: translateY(-2px); }
.button .icon { transition: transform .25s var(--ease); }
.button:hover .icon { transform: translateX(3px); }
.button-primary {
    color: #25111a;
    background: linear-gradient(120deg, var(--orange), var(--amber));
    box-shadow: 0 12px 35px rgba(242, 138, 70, .25), inset 0 1px rgba(255, 255, 255, .4);
}
.button-primary:hover { box-shadow: 0 17px 44px rgba(242, 138, 70, .38), inset 0 1px rgba(255, 255, 255, .45); }
.button-ghost { color: var(--ivory); border-color: rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .045); backdrop-filter: blur(12px); }
.button-ghost:hover { border-color: rgba(255, 255, 255, .33); background: rgba(255, 255, 255, .08); }
.button-dark { color: var(--ivory); background: var(--ink); box-shadow: 0 15px 35px rgba(17, 20, 38, .2); }
.button-small { min-height: 44px; padding: 0 17px; font-size: .8rem; }
.button-glow { color: var(--ink); background: linear-gradient(120deg, var(--orange), var(--amber)); box-shadow: 0 0 28px rgba(242, 138, 70, .2); }
.button[disabled] { cursor: not-allowed; opacity: .48; box-shadow: none; transform: none; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ivory);
    font-weight: 720;
    text-underline-offset: 5px;
    text-decoration-color: rgba(242, 138, 70, .55);
}
.text-link .icon { width: 1rem; transition: transform .2s; }
.text-link:hover .icon { transform: translateX(4px); }
.text-link-dark { color: var(--ink); }

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    border-bottom: 1px solid transparent;
    background: rgba(10, 12, 24, 0);
    transition: background-color .35s ease, border-color .35s ease, box-shadow .35s ease, -webkit-backdrop-filter .35s ease, backdrop-filter .35s ease;
}

.site-header::after {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    pointer-events: none;
    content: "";
    background: linear-gradient(90deg, transparent 7%, rgba(255,255,255,.08) 35%, rgba(245,177,95,.14) 50%, rgba(255,255,255,.08) 65%, transparent 93%);
    opacity: 0;
    transition: opacity .35s ease;
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, .065);
    background: rgba(10, 12, 24, .7);
    box-shadow: 0 12px 34px rgba(3, 4, 12, .2), inset 0 1px rgba(255, 255, 255, .04);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    backdrop-filter: blur(22px) saturate(140%);
}
.site-header.is-scrolled::after { opacity: 1; }

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .site-header.is-scrolled { background: rgba(10, 12, 24, .94); }
}

.header-inner { position: relative; z-index: 1; width: min(calc(100% - 48px), 1400px); display: flex; align-items: center; min-height: 80px; gap: 28px; }
.brand { display: inline-flex; width: 154px; overflow: hidden; border-radius: 9px; text-decoration: none; transition: opacity .25s ease, transform .25s ease, visibility 0s linear; }
.brand img { width: 100%; aspect-ratio: 840 / 303; object-fit: cover; }
.js .home .site-header:not(.is-scrolled) .brand { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-5px); transition-delay: 0s, 0s, .25s; }
.desktop-nav { display: flex; align-items: center; gap: 5px; margin-left: auto; }
.desktop-nav a {
    position: relative;
    padding: 10px 13px;
    color: rgba(247, 241, 234, .7);
    font-size: .85rem;
    font-weight: 650;
    text-decoration: none;
    transition: color .2s;
}
.desktop-nav a::after { content: ""; position: absolute; right: 12px; bottom: 3px; left: 12px; height: 1px; transform: scaleX(0); background: var(--orange); transition: transform .2s; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--ivory); }
.desktop-nav a.is-active::after { transform: scaleX(1); }
.header-cta { margin-left: 6px; }
.mobile-menu { display: none; position: relative; margin-left: auto; }
.mobile-menu summary { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu .menu-close, .mobile-menu[open] .menu-open { display: none; }
.mobile-menu[open] .menu-close { display: block; }
.mobile-menu nav { position: absolute; top: 55px; right: 0; width: min(340px, calc(100vw - 32px)); padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(15, 16, 31, .97); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.mobile-menu nav a { display: block; padding: 9px 12px; border-radius: 9px; color: rgba(247, 241, 234, .82); font-weight: 650; text-decoration: none; }
.mobile-menu nav a:hover { color: var(--ivory); background: rgba(255, 255, 255, .06); }

/* Hero */
.home-hero {
    position: relative;
    min-height: 930px;
    padding: 175px 0 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(113, 52, 95, .28), transparent 34%),
        linear-gradient(180deg, #0a0c18 0%, #111426 55%, #0b0d19 100%);
}
.hero-aurora { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: .66; }
.hero-aurora-one { top: -15%; left: 58%; width: 580px; height: 580px; background: radial-gradient(circle, rgba(242, 138, 70, .42), rgba(217, 101, 80, .08) 55%, transparent 70%); animation: drift 11s ease-in-out infinite alternate; }
.hero-aurora-two { right: 4%; bottom: 5%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(113, 52, 95, .45), transparent 70%); animation: drift 13s ease-in-out -4s infinite alternate-reverse; }
.hero-grid-lines { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(to bottom, transparent 4%, #000 30%, transparent 90%); }
.home-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); align-items: center; gap: clamp(42px, 5.5vw, 80px); }
.hero-copy h1 { max-width: 680px; margin-bottom: 26px; font-size: clamp(3.35rem, 4.4vw, 4rem); }
.hero-copy h1 em, .intro-grid h2 em, .innovation-section h2 em { color: transparent; background: linear-gradient(110deg, var(--orange), var(--amber)); background-clip: text; -webkit-background-clip: text; font-weight: inherit; }
.hero-copy .lead { max-width: 650px; margin-bottom: 35px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 20px; margin: 32px 0 0; padding: 0; color: rgba(247, 241, 234, .62); font-size: .82rem; list-style: none; }
.hero-checks li { display: flex; align-items: center; gap: 7px; }
.hero-checks .icon { color: var(--orange); width: 1rem; }

.hero-visual { position: relative; min-height: 550px; perspective: 1100px; }
.visual-halo { position: absolute; inset: 10% -15% -5%; border-radius: 50%; background: radial-gradient(ellipse, rgba(242, 138, 70, .18), rgba(113, 52, 95, .14) 45%, transparent 68%); filter: blur(28px); }
.hero-console {
    position: absolute;
    z-index: 2;
    inset: 20px 0 auto;
    min-height: 500px;
    overflow: hidden;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
    box-shadow: 0 30px 76px rgba(0,0,0,.3), inset 0 1px rgba(255,255,255,.14);
    backdrop-filter: blur(18px);
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform .4s var(--ease);
}
.card-shine { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at var(--pointer-x, 60%) var(--pointer-y, 10%), rgba(255,255,255,.13), transparent 32%); opacity: 0; transition: opacity .3s; }
[data-tilt-card]:hover .card-shine { opacity: 1; }
.console-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(247,241,234,.52); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.console-status { display: flex; align-items: center; gap: 8px; }
.console-status span { width: 8px; height: 8px; border-radius: 50%; background: #6fe0a3; box-shadow: 0 0 15px #6fe0a3; }
.console-brand { display: grid; min-height: 190px; place-items: center; margin: 25px 0 18px; padding: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; background: rgba(8,8,17,.35); }
.console-brand img { width: 100%; border-radius: 13px; }
.console-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.console-services a { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; color: rgba(247,241,234,.84); background: rgba(255,255,255,.035); font-size: .76rem; font-weight: 650; text-decoration: none; transition: background .2s, border-color .2s, transform .2s; }
.console-services a:hover { transform: translateY(-2px); border-color: rgba(242,138,70,.35); background: rgba(255,255,255,.065); }
.console-services > a > .icon:last-child { width: 14px; opacity: .5; }
.console-service-icon { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; color: var(--amber); background: linear-gradient(145deg, rgba(242,138,70,.25), rgba(113,52,95,.22)); }
.floating-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(247,241,234,.86); background: rgba(20,17,36,.78); box-shadow: 0 20px 50px rgba(0,0,0,.35); backdrop-filter: blur(14px); font-size: .75rem; font-weight: 730; }
.floating-chip .icon { color: var(--orange); }
.chip-support { top: 0; right: -30px; animation: float 5s ease-in-out infinite; }
.chip-secure { bottom: 18px; left: -30px; animation: float 6s ease-in-out -2.5s infinite; }
.trust-rail { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: clamp(12px, 2.5vw, 30px); margin-top: 90px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(247,241,234,.42); font-size: .7rem; font-weight: 730; letter-spacing: .12em; text-transform: uppercase; }
.trust-rail i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }

/* Sections */
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 8vw, 110px); align-items: start; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2rem, 3.5vw, 3.2rem); text-wrap: balance; }
.section-heading p { max-width: 580px; margin: 25px 0 0; color: var(--muted); }
.intro-copy { padding-top: 46px; }
.intro-copy p:not(.lead-dark) { color: var(--muted-dark); }
.intro-copy .text-link { margin-top: 12px; }

.innovation-section { padding-top: 5px; padding-bottom: clamp(95px, 12vw, 165px); background: linear-gradient(180deg, #0b0d19, #111426 58%, #0b0d19); }
.innovation-section .section-heading-row { padding-top: clamp(45px, 6vw, 75px); border-top: 1px solid var(--line-dark); }
.innovation-section .section-heading-row > p { color: var(--muted-dark); }
.innovation-grid { display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.innovation-card { --accent: var(--orange); position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 270px; overflow: hidden; padding: 32px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); color: var(--ivory); background: linear-gradient(145deg, #161829, #0d0f1d); box-shadow: 0 18px 44px rgba(39,24,31,.09), inset 0 1px rgba(255,255,255,.06); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.innovation-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent), transparent 55%); box-shadow: 0 24px 55px rgba(39,24,31,.13), inset 0 1px rgba(255,255,255,.08); }
.innovation-card::after { content: ""; position: absolute; right: -90px; bottom: -110px; width: 300px; height: 300px; border-radius: 50%; background: var(--accent); filter: blur(95px); opacity: .16; }
.innovation-card-1 { grid-row: 1 / span 2; min-height: 558px; padding: clamp(34px, 4vw, 52px); background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent), transparent 78%), transparent 36%), linear-gradient(145deg, #171a2c, #0c0e1b); }
.innovation-card-top { position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; }
.innovation-icon { display: grid; width: 62px; height: 62px; place-items: center; border: 1px solid color-mix(in srgb, var(--accent), transparent 55%); border-radius: 18px; color: var(--accent); background: color-mix(in srgb, var(--accent), transparent 88%); }
.innovation-icon .icon { width: 29px; height: 29px; }
.innovation-number { color: color-mix(in srgb, var(--accent), transparent 25%); font-family: "Iowan Old Style", "Baskerville", Georgia, serif; font-size: clamp(3.5rem, 6vw, 5.2rem); font-weight: 500; letter-spacing: -.07em; line-height: .72; }
.innovation-card > div:last-child { position: relative; z-index: 2; max-width: 560px; }
.innovation-label { color: var(--accent); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.innovation-card h3 { margin: 10px 0 14px; font-size: clamp(1.8rem, 2.8vw, 2.85rem); }
.innovation-card:not(.innovation-card-1) h3 { font-size: clamp(1.55rem, 2.15vw, 2.1rem); }
.innovation-card p { max-width: 560px; color: var(--muted); font-size: .88rem; }
.innovation-card a { display: inline-flex; align-items: center; gap: 9px; margin-top: 8px; color: var(--ivory); font-size: .75rem; font-weight: 760; text-underline-offset: 5px; text-decoration-color: color-mix(in srgb, var(--accent), transparent 35%); }
.innovation-card a .icon { width: 15px; color: var(--accent); transition: transform .2s; }
.innovation-card a:hover .icon { transform: translateX(4px); }

.services-section { overflow: hidden; background: linear-gradient(180deg, #0b0d19, #0f1120 52%, #0b0d19); }
.services-glow { position: absolute; top: 15%; left: 50%; width: 1000px; height: 700px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(113,52,95,.16), transparent 66%); pointer-events: none; }
.section-heading-row { position: relative; display: flex; align-items: end; justify-content: space-between; gap: clamp(30px, 4vw, 50px); margin-bottom: 55px; }
.section-heading-row > div { min-width: 0; }
.section-heading-row > p { flex: 0 1 400px; max-width: 400px; margin: 0 0 8px; }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.service-card { --accent: var(--orange); position: relative; grid-column: span 2; min-height: 380px; overflow: hidden; padding: 28px; border: 1px solid rgba(255,255,255,.095); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.02)); box-shadow: inset 0 1px rgba(255,255,255,.04); transition: transform .35s var(--ease), border-color .3s, background .3s; }
.service-grid > .service-card:nth-last-child(-n+2) { grid-column: span 3; }
.service-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--accent), transparent 60%); background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025)); }
.service-card::after { content: ""; position: absolute; right: -45px; bottom: -75px; width: 190px; height: 190px; border-radius: 50%; background: var(--accent); filter: blur(75px); opacity: .12; }
.accent-orange { --accent: var(--orange); }.accent-rose { --accent: var(--rose); }.accent-amber { --accent: var(--amber); }.accent-purple { --accent: #9a6cc2; }.accent-red { --accent: #ef6b61; }.accent-cyan { --accent: #65c9cf; }.accent-green { --accent: #78d19a; }
.service-card-top { display: flex; align-items: center; justify-content: space-between; }
.service-icon, .service-row-icon { display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid color-mix(in srgb, var(--accent), transparent 65%); border-radius: 15px; color: var(--accent); background: color-mix(in srgb, var(--accent), transparent 88%); box-shadow: inset 0 1px rgba(255,255,255,.08); }
.service-icon .icon { width: 25px; height: 25px; }
.service-index { color: color-mix(in srgb, var(--accent), transparent 30%); font-family: "Iowan Old Style", "Baskerville", Georgia, serif; font-size: 2.45rem; font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.service-card h3 { margin: 35px 0 14px; }
.service-card h3 a { text-decoration: none; }
.service-card p { color: var(--muted); font-size: .92rem; }
.service-tags, .tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.service-tags span, .tag-cloud span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; color: rgba(247,241,234,.52); font-size: .65rem; line-height: 1; }
.card-link { position: absolute; z-index: 2; right: 28px; bottom: 25px; left: 28px; display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(247,241,234,.74); font-size: .74rem; font-weight: 750; text-decoration: none; }
.card-link .icon { color: var(--accent); transition: transform .25s; }
.card-link:hover .icon { transform: translateX(5px); }
.service-card-contact { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: linear-gradient(145deg, rgba(217,101,80,.2), rgba(113,52,95,.19)); }
.service-card-contact .button { margin-top: 18px; }

.emergency-section { padding-top: 110px; padding-bottom: 110px; background: linear-gradient(180deg, #0b0d19, #111426 58%, #0b0d19); }
.emergency-panel { display: grid; grid-template-columns: 120px 1fr auto; gap: 45px; align-items: center; padding: clamp(35px, 5vw, 70px); border: 1px solid rgba(17,20,38,.09); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 30px 90px rgba(39,24,31,.09); }
.emergency-panel h2 { max-width: 760px; margin-bottom: 18px; font-size: clamp(1.95rem, 3.4vw, 3.2rem); }
.emergency-panel p { max-width: 730px; margin: 0; color: var(--muted-dark); }
.emergency-pulse { position: relative; display: grid; width: 100px; height: 100px; place-items: center; }
.emergency-pulse span { position: absolute; z-index: 2; top: 50%; left: 50%; width: 21px; height: 21px; transform: translate(-50%, -50%); border: 5px solid var(--paper); border-radius: 50%; background: #ef6b61; box-shadow: 0 0 0 1px rgba(239,107,97,.2), 0 0 30px rgba(239,107,97,.45); }
.emergency-pulse::before, .emergency-pulse::after { position: absolute; top: 50%; left: 50%; width: calc(100% - 24px); height: calc(100% - 24px); transform: translate(-50%, -50%); border: 1px solid rgba(239,107,97,.25); border-radius: 50%; content: ""; animation: pulse-ring 2.8s ease-out infinite; }
.emergency-pulse::after { animation-delay: 1.4s; }

.approach-section { background: #0b0d19; }
.centered { max-width: 840px; margin: 0 auto 65px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; counter-reset: steps; list-style: none; }
.approach-grid li { position: relative; min-height: 360px; padding: 48px; border: solid rgba(255,255,255,.09); border-width: 1px 0 1px 1px; }
.approach-grid li:last-child { border-right-width: 1px; }
.approach-number { position: absolute; top: 22px; right: 28px; color: rgba(245,177,95,.48); font-family: "Iowan Old Style", "Baskerville", Georgia, serif; font-size: 2.3rem; font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.approach-icon { display: grid; width: 62px; height: 62px; margin-bottom: 68px; place-items: center; border: 1px solid rgba(242,138,70,.3); border-radius: 50%; color: var(--orange); background: rgba(242,138,70,.08); }
.approach-grid h3 { margin-bottom: 15px; }
.approach-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.audience-section { overflow: hidden; background: linear-gradient(180deg, #0b0d19 0%, #0b0d19 24%, var(--aubergine) 62%, #0a0c18 100%); }
.audience-section::before { content: ""; position: absolute; top: 12%; left: -10%; width: 600px; height: 600px; border-radius: 50%; background: rgba(217,101,80,.08); filter: blur(105px); }
.audience-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 8vw, 110px); align-items: center; }
.audience-grid .section-heading h2 { font-size: clamp(2rem, 3.35vw, 3.05rem); }
.audience-grid .section-heading p { color: rgba(247,241,234,.58); }
.audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-card { min-height: 430px; padding: 35px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.055); box-shadow: inset 0 1px rgba(255,255,255,.06); transition: transform .3s var(--ease), background .3s; }
.audience-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); }
.audience-card > span { display: inline-flex; padding: 7px 10px; border-radius: 999px; color: var(--amber); background: rgba(242,138,70,.12); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.audience-card h3 { margin: 45px 0 18px; }
.audience-card p { color: rgba(247,241,234,.58); font-size: .9rem; }
.audience-card ul { display: grid; gap: 10px; margin: 28px 0 0; padding: 23px 0 0; border-top: 1px solid rgba(255,255,255,.1); list-style: none; color: rgba(247,241,234,.78); font-size: .8rem; }
.audience-card li { display: flex; align-items: center; gap: 8px; }
.audience-card li .icon { width: 15px; color: var(--orange); }

/* Page heroes */
.page-hero { position: relative; z-index: 1; min-height: 650px; overflow: visible; padding: 175px 0 100px; background: radial-gradient(circle at 80% 10%, rgba(113,52,95,.35), transparent 36%), linear-gradient(180deg, #0a0c18, #141427 62%, #0c0f1c); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.orb-one { top: -180px; right: -80px; width: 520px; height: 520px; background: color-mix(in srgb, var(--accent, var(--orange)), transparent 66%); }
.orb-two { bottom: -260px; left: 30%; width: 500px; height: 500px; background: rgba(113,52,95,.25); }
.page-hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(55px, 7vw, 90px); align-items: center; }
.page-hero h1 { max-width: 850px; margin-bottom: 28px; font-size: clamp(3rem, 4.5vw, 4.5rem); }
.page-hero-copy .lead { max-width: 710px; margin-bottom: 34px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 45px; color: rgba(247,241,234,.43); font-size: .72rem; }
.breadcrumbs a { color: rgba(247,241,234,.65); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ivory); }
.breadcrumbs .icon { width: 13px; }
.service-orbit-card, .contact-promise { position: relative; overflow: hidden; padding: 36px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025)); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.1); backdrop-filter: blur(18px); }
.service-orbit-card::after { content: ""; position: absolute; right: -80px; bottom: -100px; width: 260px; height: 260px; border-radius: 50%; background: var(--accent); filter: blur(80px); opacity: .22; }
.service-orbit-icon { display: grid; width: 72px; height: 72px; margin-bottom: 48px; place-items: center; border: 1px solid color-mix(in srgb, var(--accent), transparent 55%); border-radius: 20px; color: var(--accent); background: color-mix(in srgb, var(--accent), transparent 87%); }
.service-orbit-icon .icon { width: 34px; height: 34px; }
.service-orbit-card > span { color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-orbit-card h2 { margin: 12px 0 16px; font-size: 2.35rem; }
.service-orbit-card p { color: var(--muted); }
.service-orbit-card .tag-cloud { position: relative; z-index: 1; margin-top: 35px; }
.overview-hero { min-height: 680px; display: flex; align-items: center; text-align: center; }
.overview-hero .breadcrumbs, .overview-hero .eyebrow { justify-content: center; }
.overview-hero h1 { margin-bottom: 28px; }
.overview-hero .lead { margin-inline: auto; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
.benefit-card { min-height: 280px; padding: 32px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--paper); box-shadow: 0 18px 50px rgba(39,24,31,.055); }
.benefit-number { display: block; color: var(--copper); font-family: "Iowan Old Style", "Baskerville", Georgia, serif; font-size: 2.65rem; font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.benefit-card h3 { margin: 48px 0 15px; color: var(--ink); }
.benefit-card p { margin: 0; color: var(--muted-dark); font-size: .9rem; }

.process-section { background: linear-gradient(180deg, #0b0d19, #0f1120); }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 140px); }
.sticky-heading { position: sticky; top: 135px; align-self: start; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-item { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 38px 0; border-top: 1px solid rgba(255,255,255,.1); }
.process-item:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.process-item > span { color: var(--orange); font-family: "Iowan Old Style", "Baskerville", Georgia, serif; font-size: 2.25rem; font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.process-item h3 { margin-bottom: 12px; }
.process-item p { max-width: 570px; margin: 0; color: var(--muted); }

.section-faq { background: linear-gradient(180deg, #0f1120, #0a0c18); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 9vw, 120px); }
.faq-list { border-top: 1px solid rgba(255,255,255,.11); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.11); }
.faq-list summary { position: relative; padding: 26px 55px 26px 0; cursor: pointer; color: var(--ivory); font-family: "Iowan Old Style", "Baskerville", Georgia, serif; font-size: 1.25rem; font-weight: 500; line-height: 1.35; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; top: 31px; right: 8px; width: 20px; height: 20px; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 9px; left: 2px; width: 16px; height: 1px; background: var(--orange); transition: transform .25s; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details > div { overflow: hidden; }
.faq-list details p { max-width: 690px; margin: -3px 55px 28px 0; color: var(--muted); }

.services-list-section { padding-top: 45px; background: linear-gradient(180deg, #0c0f1c, #0a0c18); }
.service-list { display: grid; }
.service-row { position: relative; display: grid; grid-template-columns: 70px 85px minmax(0, 1fr) minmax(170px, auto); align-items: center; gap: 28px; padding: 48px 0; border-bottom: 1px solid var(--line-dark); }
.service-row::before { position: absolute; z-index: 0; top: 50%; width: clamp(260px, 34vw, 480px); height: 68%; transform: translateY(-50%); border-radius: 50%; pointer-events: none; content: ""; background: var(--accent); filter: blur(115px); opacity: .065; }
.service-row:nth-child(3n + 1)::before { right: -10%; }
.service-row:nth-child(3n + 2)::before { left: 12%; opacity: .055; }
.service-row:nth-child(3n)::before { right: 24%; opacity: .045; }
.service-row > * { position: relative; z-index: 1; }
.service-row-number { color: color-mix(in srgb, var(--accent), var(--muted-dark) 40%); font-family: "Iowan Old Style", "Baskerville", Georgia, serif; font-size: 2.25rem; font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.service-row-icon { width: 68px; height: 68px; }
.service-row-icon .icon { width: 28px; }
.service-row-copy > span { color: var(--copper); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.service-row-copy h2 { margin: 7px 0 13px; font-size: clamp(1.8rem, 3.1vw, 2.8rem); }
.service-row-copy p { max-width: 700px; margin: 0; color: var(--muted-dark); }
.service-row-copy ul { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.service-row-copy li { padding: 6px 9px; border: 1px solid var(--line-dark); border-radius: 999px; color: var(--muted-dark); font-size: .66rem; }
.service-row-link { display: inline-flex; align-items: center; justify-self: end; gap: 14px; color: var(--ink); font-size: .78rem; font-weight: 760; text-decoration: none; }
.service-row-link > span { max-width: 115px; text-align: right; }
.service-row-link > i { display: grid; width: 56px; height: 56px; flex: 0 0 56px; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--ink); font-style: normal; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.service-row-link:hover > i { transform: translateX(5px); border-color: var(--ink); color: var(--ivory); background: var(--ink); }
.service-row-link:focus-visible { border-radius: 999px; outline-offset: 5px; }

/* Contact */
.contact-hero { min-height: 700px; }
.contact-promise > .icon { width: 48px; height: 48px; margin-bottom: 55px; padding: 11px; border: 1px solid rgba(242,138,70,.35); border-radius: 14px; color: var(--orange); background: rgba(242,138,70,.1); }
.contact-promise h2 { font-size: 2.35rem; }
.contact-promise p { color: var(--muted); }
.contact-promise ul { display: grid; gap: 10px; margin: 28px 0 0; padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.1); list-style: none; color: rgba(247,241,234,.76); font-size: .82rem; }
.contact-promise li { display: flex; align-items: center; gap: 9px; }
.contact-promise li .icon { width: 16px; color: var(--orange); }
.contact-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.contact-sidebar { position: sticky; top: 125px; }
.contact-sidebar > p { color: var(--muted-dark); }
.contact-methods { display: grid; gap: 10px; margin: 34px 0; }
.contact-methods > a, .config-note { display: grid; grid-template-columns: 45px 1fr auto; align-items: center; gap: 13px; padding: 13px; border: 1px solid var(--line-dark); border-radius: 15px; color: var(--ink); background: var(--paper); text-decoration: none; transition: transform .2s, border-color .2s; }
.contact-methods > a:hover { transform: translateX(4px); border-color: rgba(217,101,80,.35); }
.contact-methods > a > span:first-child, .config-note > .icon { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 12px; color: var(--copper); background: rgba(217,101,80,.1); }
.config-note > .icon { padding: 11px; }
.contact-methods strong, .contact-methods small { display: block; }
.contact-methods strong { font-size: .82rem; }
.contact-methods small { color: var(--muted-dark); font-size: .68rem; }
.contact-methods > a > .icon { width: 15px; color: var(--copper); }
.config-note { grid-template-columns: 45px 1fr; }
.config-note code, .form-alert code { font-size: .74rem; }
.company-registration { display: grid; gap: 10px; margin: 0 0 28px; padding: 20px; border: 1px solid var(--line-dark); border-radius: 15px; background: var(--paper); }
.company-registration > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.company-registration > div + div { padding-top: 10px; border-top: 1px solid var(--line-dark); }
.company-registration dt { color: var(--muted-dark); font-size: .7rem; font-weight: 700; }
.company-registration dd { margin: 0; color: var(--ink); font-size: .78rem; font-weight: 800; letter-spacing: .035em; }
.privacy-note { display: flex; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: var(--muted-dark); font-size: .78rem; }
.privacy-note .icon { margin-top: 4px; color: var(--copper); }
.privacy-note a { color: var(--ink); font-weight: 700; }
.form-card { padding: clamp(28px, 5vw, 55px); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 35px 90px rgba(39,24,31,.09); }
.form-card-heading > span { color: var(--copper); font-size: .69rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.form-card-heading h2 { margin: 8px 0 40px; font-size: clamp(1.75rem, 3.25vw, 2.65rem); }
.form-alert { display: flex; gap: 14px; margin-bottom: 24px; padding: 17px; border-radius: 14px; font-size: .78rem; }
.form-alert > .icon { margin-top: 2px; }
.form-alert strong { display: block; }
.form-alert p { margin: 2px 0 0; }
.form-alert ul { margin: 5px 0 0; padding-left: 18px; }
.form-alert.success { color: #174d36; background: #e3f6ed; }
.form-alert.error { color: #6b2028; background: #fbe7e7; }
.form-alert.setup { color: #68421d; background: #fff1d8; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--ink); font-size: .78rem; font-weight: 720; }
.field label span { color: var(--copper); }
.field label small { color: var(--muted-dark); font-weight: 500; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid rgba(17,20,38,.16); border-radius: 12px; color: var(--ink); background: #fffdfb; outline: none; transition: border-color .2s, box-shadow .2s; }
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 160px; padding: 14px 15px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--copper); box-shadow: 0 0 0 4px rgba(217,101,80,.11); }
.field input::placeholder, .field textarea::placeholder { color: #9d98a0; }
.field-help { display: block; margin-top: 7px; color: var(--muted-dark); font-size: .67rem; }
.checkbox-field { display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; margin: 6px 0 25px; color: var(--muted-dark); font-size: .75rem; cursor: pointer; }
.checkbox-field input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--copper); }
.checkbox-field a { color: var(--ink); font-weight: 700; }
.form-submit { width: 100%; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* CTA and footer */
.cta-section { padding: 110px 0; background: linear-gradient(180deg, #0a0c18, #070914); }
.cta-panel { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; overflow: hidden; padding: clamp(38px, 6vw, 72px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: linear-gradient(125deg, rgba(113,52,95,.35), rgba(217,101,80,.17) 55%, rgba(255,255,255,.035)); box-shadow: 0 26px 68px rgba(0,0,0,.17), inset 0 1px rgba(255,255,255,.08); backdrop-filter: blur(18px) saturate(130%); }
.cta-glow { position: absolute; right: -100px; bottom: -230px; width: 550px; height: 550px; border-radius: 50%; background: radial-gradient(circle, rgba(242,138,70,.35), transparent 65%); filter: blur(35px); }
.cta-panel > div:not(.cta-glow):not(.card-shine) { position: relative; z-index: 1; }
.cta-panel > .card-shine { position: absolute; z-index: 1; inset: 0; background: radial-gradient(420px circle at var(--pointer-x, 72%) var(--pointer-y, 24%), rgba(255,255,255,.18), rgba(242,138,70,.08) 34%, transparent 68%); mix-blend-mode: screen; }
.cta-panel:hover > .card-shine { opacity: 1; }
.cta-panel h2 { max-width: 780px; margin-bottom: 18px; font-size: clamp(2rem, 3.5vw, 3.25rem); }
.cta-panel p { max-width: 680px; margin: 0; color: rgba(247,241,234,.6); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.site-footer { padding: 80px 0 25px; border-top: 0; color: rgba(247,241,234,.55); background: #070914; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.15fr; gap: 55px; padding-bottom: 65px; }
.footer-brand .brand { width: 170px; margin-bottom: 22px; }
.footer-brand p { max-width: 290px; font-size: .84rem; }
.availability { display: flex; align-items: center; gap: 8px; font-size: .67rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.availability span { width: 8px; height: 8px; border-radius: 50%; background: #6fe0a3; box-shadow: 0 0 12px rgba(111,224,163,.65); }
.site-footer h2 { margin: 8px 0 22px; color: var(--ivory); font-family: inherit; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer a { font-size: .8rem; text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: var(--ivory); }
.footer-link-button { margin: 0; padding: 0; border: 0; color: inherit; background: transparent; font-size: .8rem; text-align: left; cursor: pointer; transition: color .2s; }
.footer-link-button:hover { color: var(--ivory); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: .66rem; letter-spacing: .04em; }
.footer-bottom p { margin: 0; }

/* Consent and Google measurement */
.cookie-banner[hidden] { display: none; }
.cookie-banner {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 30px;
    width: min(calc(100% - 40px), 1100px);
    margin-inline: auto;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    color: var(--ivory);
    background: rgba(10, 12, 24, .97);
    box-shadow: 0 28px 90px rgba(0,0,0,.5);
    backdrop-filter: blur(18px) saturate(130%);
}
.cookie-banner-copy > span, .consent-dialog-header span { color: var(--orange); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cookie-banner h2 { margin: 5px 0 9px; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.cookie-banner p { max-width: 720px; margin: 0; color: rgba(247,241,234,.7); font-size: .79rem; line-height: 1.55; }
.cookie-banner-copy > a { display: inline-block; margin-top: 9px; color: var(--ivory); font-size: .73rem; font-weight: 700; text-underline-offset: 4px; }
.cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; min-width: 310px; }
.consent-button { min-height: 45px; padding: 0 16px; border: 1px solid transparent; border-radius: 999px; font-size: .75rem; font-weight: 780; cursor: pointer; transition: transform .2s, border-color .2s, background .2s; }
.consent-button:hover { transform: translateY(-1px); }
.consent-button-light { color: var(--ink); background: var(--ivory); }
.cookie-banner-actions [data-consent-reject] { min-height: 45px; padding: 0 16px; border-color: rgba(247,241,234,.45); border-radius: 999px; color: var(--ivory); background: transparent; font-size: .75rem; font-weight: 780; text-decoration: none; }
.cookie-banner-actions [data-consent-reject]:hover { transform: translateY(-1px); border-color: var(--ivory); }
.cookie-banner-actions [data-consent-accept] { grid-column: 1 / -1; min-height: 54px; padding-inline: 24px; font-size: .8rem; }
.consent-settings-link { min-height: 45px; padding: 0 16px; border: 1px solid rgba(247,241,234,.45); border-radius: 999px; color: var(--ivory); background: transparent; font-size: .75rem; font-weight: 780; cursor: pointer; transition: transform .2s, border-color .2s, background .2s; }
.consent-settings-link:hover { transform: translateY(-1px); border-color: var(--ivory); }

.consent-dialog { width: min(calc(100% - 32px), 680px); max-height: min(820px, calc(100dvh - 32px)); padding: 0; overflow: auto; border: 1px solid rgba(17,20,38,.13); border-radius: 24px; color: var(--ink); background: var(--paper); box-shadow: 0 35px 120px rgba(3,4,12,.55); }
.consent-dialog::backdrop { background: rgba(5,6,14,.7); backdrop-filter: blur(5px); }
.consent-dialog form { padding: clamp(25px, 5vw, 42px); }
.consent-dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.consent-dialog-header h2 { margin: 6px 0 0; font-size: clamp(1.85rem, 4vw, 2.65rem); }
.consent-dialog-close { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; padding: 0 0 3px; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--ink); background: transparent; font-size: 1.65rem; line-height: 1; cursor: pointer; }
.consent-dialog-intro { margin: 18px 0 26px; color: var(--muted-dark); font-size: .82rem; }
.consent-options { display: grid; border-top: 1px solid var(--line-dark); }
.consent-option { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); cursor: pointer; }
.consent-option strong, .consent-option small { display: block; }
.consent-option strong { margin-bottom: 3px; font-size: .9rem; }
.consent-option small { max-width: 500px; color: var(--muted-dark); font-size: .71rem; line-height: 1.5; }
.consent-option input { position: relative; width: 46px; height: 26px; margin: 0; appearance: none; border: 1px solid rgba(17,20,38,.25); border-radius: 999px; background: #d8d3d0; cursor: pointer; transition: border-color .2s, background .2s; }
.consent-option input::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.22); transition: transform .2s; }
.consent-option input:checked { border-color: var(--copper); background: var(--copper); }
.consent-option input:checked::after { transform: translateX(20px); }
.consent-option input:disabled { cursor: not-allowed; opacity: .6; }
.consent-dialog-actions { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 9px; margin-top: 26px; }
.consent-button-primary { color: #25111a; background: linear-gradient(120deg, var(--orange), var(--amber)); }
.consent-button-outline { border-color: rgba(17,20,38,.22); color: var(--ink); background: transparent; }
.consent-button-outline:hover { border-color: var(--ink); }

/* Legal and error */
.legal-hero { min-height: 610px; }
.legal-hero .updated { margin-top: 35px; color: rgba(247,241,234,.43); font-size: .74rem; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.legal-layout aside { position: sticky; top: 120px; display: grid; gap: 9px; padding: 22px; border: 1px solid var(--line-dark); border-radius: 16px; background: var(--paper); }
.legal-layout aside strong { margin-bottom: 7px; color: var(--ink); font-size: .75rem; }
.legal-layout aside a { color: var(--muted-dark); font-size: .74rem; text-decoration: none; }
.legal-layout aside a:hover { color: var(--copper); }
.legal-layout article { max-width: 760px; }
.legal-layout article section { scroll-margin-top: 110px; padding: 0 0 42px; }
.legal-layout article h2 { margin-bottom: 16px; font-size: clamp(1.65rem, 3vw, 2.2rem); }
.legal-layout article p { color: var(--muted-dark); }
.legal-layout article a { color: var(--copper); font-weight: 700; text-underline-offset: 3px; }
.legal-layout article ul { color: var(--muted-dark); }
.legal-layout article address { margin-bottom: 16px; color: var(--muted-dark); font-style: normal; }
.legal-table-wrap { margin: 22px 0; overflow-x: auto; border: 1px solid var(--line-dark); border-radius: 14px; }
.legal-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: .74rem; }
.legal-table th, .legal-table td { padding: 13px 15px; border-bottom: 1px solid var(--line-dark); text-align: left; vertical-align: top; }
.legal-table th { color: var(--ink); background: rgba(17,20,38,.045); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; }
.legal-table td { color: var(--muted-dark); }
.legal-table tr:last-child td { border-bottom: 0; }
.inline-consent-button { padding: 0; border: 0; color: var(--copper); background: transparent; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.error-section { position: relative; display: grid; min-height: 780px; place-items: center; overflow: hidden; padding: 160px 0 100px; background: radial-gradient(circle at 50% 30%, rgba(113,52,95,.4), transparent 40%), var(--ink-deep); text-align: center; }
.error-glow { position: absolute; width: 550px; height: 550px; border-radius: 50%; border: 1px solid rgba(242,138,70,.14); box-shadow: 0 0 100px rgba(242,138,70,.07), inset 0 0 100px rgba(113,52,95,.08); }
.error-code { display: block; color: transparent; background: linear-gradient(130deg, var(--orange), var(--amber), var(--plum)); background-clip: text; -webkit-background-clip: text; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(7rem, 20vw, 15rem); line-height: .72; opacity: .7; }
.error-section .eyebrow { margin-top: 45px; }
.error-section h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
.error-section .lead { margin-inline: auto; }
.error-section .hero-actions { justify-content: center; margin-top: 35px; }

/* Dark theme overrides */
.section-light {
    color: var(--ivory);
    background: linear-gradient(180deg, #0c0f1c, #111426 58%, #0b0d19);
}

.section-light.innovation-section,
.section-light.emergency-section { background: linear-gradient(180deg, #0b0d19, #111426 58%, #0b0d19); }
.section-light.services-list-section { background: linear-gradient(180deg, #0c0f1c, #0a0c18); }
.section-light.contact-section,
.section-light.legal-content { background: linear-gradient(180deg, #0c0f1c, #070914); }

.section-light .eyebrow-dark { color: rgba(247,241,234,.58); }
.section-light .lead-dark { color: rgba(247,241,234,.84); }
.section-light .intro-copy p:not(.lead-dark),
.section-light .section-heading-row > p { color: var(--muted); }
.section-light .text-link-dark { color: var(--ivory); }

/* One continuous canvas keeps service glows soft across section boundaries. */
.service-detail main {
    background:
        radial-gradient(circle 720px at 92% 1500px, color-mix(in srgb, var(--accent), transparent 87%), transparent 72%),
        radial-gradient(circle 800px at 3% 2550px, color-mix(in srgb, var(--accent), transparent 91%), transparent 74%),
        linear-gradient(180deg, #0a0c18 0, #141427 480px, #0c0f1c 780px, #0c0f1c 1000px, #111426 1900px, #0d0f1d 3200px, #070914 100%);
}
.service-detail main > .page-hero,
.service-detail main > .service-benefits-section,
.service-detail main > .process-section,
.service-detail main > .section-faq,
.service-detail main > .cta-section { background: transparent; }

/* Homepage intro: a dark cyber panel beside a calmer dark glass panel. */
.intro-section { overflow: hidden; background: linear-gradient(180deg, #0b0d19, #111426 58%, #0b0d19); }
.intro-grid { align-items: stretch; }
.intro-section .section-heading {
    position: relative;
    display: flex;
    min-height: 350px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid rgba(101,201,207,.25);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 88% 14%, rgba(101,201,207,.18), transparent 28%),
        linear-gradient(145deg, #080b16, #15192a 68%, #0c1221);
    box-shadow: 0 20px 54px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.09);
}
.intro-section .section-heading::before {
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    content: "";
    background-image: linear-gradient(rgba(101,201,207,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(101,201,207,.22) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(135deg, #000, transparent 78%);
}
.intro-section .section-heading::after {
    position: absolute;
    right: -100px;
    bottom: -170px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    pointer-events: none;
    content: "";
    background: radial-gradient(circle, rgba(242,138,70,.24), transparent 67%);
    filter: blur(18px);
}
.intro-section .section-heading > * { position: relative; z-index: 1; }
.intro-section .section-heading .eyebrow-dark { color: rgba(247,241,234,.66); }
.intro-section .intro-copy {
    position: relative;
    margin-top: 28px;
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
    box-shadow: 0 18px 48px rgba(0,0,0,.14), inset 0 1px rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
}
.intro-section .intro-copy::before {
    display: block;
    margin-bottom: 27px;
    color: rgba(101,201,207,.78);
    content: "BRICT IT / CONTEXT";
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.intro-section .intro-copy::after {
    position: absolute;
    top: 28px;
    right: 30px;
    width: 38px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--orange), var(--amber));
    box-shadow: 0 0 18px rgba(242,138,70,.55);
}
.intro-section .intro-copy p:not(.lead-dark) { color: rgba(247,241,234,.62); }

.emergency-panel,
.benefit-card,
.contact-methods > a,
.config-note,
.company-registration,
.legal-layout aside {
    border-color: rgba(255,255,255,.12);
    color: var(--ivory);
    background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
    box-shadow: 0 18px 48px rgba(0,0,0,.13), inset 0 1px rgba(255,255,255,.06);
}
.emergency-panel h2,
.benefit-card h3,
.company-registration dd,
.legal-layout aside strong { color: var(--ivory); }
.emergency-panel p,
.benefit-card p,
.service-row-copy p,
.service-row-copy li,
.contact-sidebar > p,
.contact-methods small,
.company-registration dt,
.privacy-note,
.legal-layout article p,
.legal-layout article ul,
.legal-layout article address { color: var(--muted); }
.emergency-pulse span { border-color: #0c0f1c; }
.service-row { border-color: rgba(255,255,255,.1); }
.service-row-copy li { border-color: rgba(255,255,255,.12); }
.service-row-link { color: var(--ivory); }
.service-row-link > i { border-color: rgba(255,255,255,.18); color: var(--ivory); }
.service-row-link:hover > i { border-color: var(--ivory); background: var(--ivory); color: var(--ink); }
.contact-methods > a { color: var(--ivory); }
.contact-methods > a > .icon { color: var(--copper); }
.company-registration > div + div,
.privacy-note { border-color: rgba(255,255,255,.1); }
.privacy-note a { color: var(--ivory); }

/* Keep the form in the same dark, glassy visual language as the contact section. */
.form-card {
    color: var(--ivory);
    color-scheme: dark;
    border-color: rgba(255,255,255,.14);
    background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
    box-shadow: 0 24px 62px rgba(0,0,0,.2), inset 0 1px rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
}
.form-card-heading h2 { color: var(--ivory); }
.form-card .form-alert { border: 1px solid rgba(255,255,255,.1); }
.form-card .field label { color: var(--ivory); }
.form-card .field label small,
.form-card .field-help,
.form-card .checkbox-field { color: rgba(247,241,234,.7); }
.form-card .field input,
.form-card .field textarea,
.form-card .field select {
    border-color: rgba(255,255,255,.22);
    color: var(--ivory);
    background: rgba(10,12,24,.48);
}
.form-card .field input:hover,
.form-card .field textarea:hover,
.form-card .field select:hover { border-color: rgba(255,255,255,.38); }
.form-card .field input:focus,
.form-card .field textarea:focus,
.form-card .field select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(245,177,95,.18);
}
.form-card .field input::placeholder,
.form-card .field textarea::placeholder { color: rgba(247,241,234,.55); }
.form-card .checkbox-field a { color: var(--ivory); }
.form-card .checkbox-field input { outline-color: var(--amber); }

.legal-layout aside a { color: var(--muted); }
.legal-layout aside a:hover { color: var(--amber); }
.legal-table-wrap { border-color: rgba(255,255,255,.12); }
.legal-table th,
.legal-table td { border-color: rgba(255,255,255,.1); }
.legal-table th { color: var(--ivory); background: rgba(255,255,255,.06); }
.legal-table td { color: var(--muted); }

.consent-dialog { color: var(--ivory); background: #111426; border-color: rgba(255,255,255,.14); }
.consent-dialog-close { border-color: rgba(255,255,255,.16); color: var(--ivory); }
.consent-dialog-intro,
.consent-option small { color: var(--muted); }
.consent-options,
.consent-option { border-color: rgba(255,255,255,.1); }
.consent-button-outline { border-color: rgba(255,255,255,.2); color: var(--ivory); }
.consent-button-outline:hover { border-color: var(--ivory); }

/* Reveal and motion */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal-delay { --delay: 120ms; }

@keyframes drift { to { transform: translate3d(-45px, 35px, 0) scale(1.08); } }
@keyframes float { 50% { transform: translateY(-10px); } }
@keyframes pulse-ring { 0% { transform: translate(-50%, -50%) scale(.45); opacity: .8; } 100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; } }

@media (max-width: 1180px) {
    .home-hero { min-height: auto; }
    .home-hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 790px; }
    .hero-visual { width: min(100%, 650px); min-height: 570px; margin: 10px auto 0; }
}

@media (max-width: 1060px) {
    .js .home .site-header:not(.is-scrolled) .brand { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: none; }
    .desktop-nav { display: none; }
    .mobile-menu { display: block; }
    .header-cta { margin-left: auto; }
    .mobile-menu { margin-left: 0; }
    .service-card { grid-column: span 3; }
    .innovation-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .innovation-card-1 { grid-column: 1 / -1; grid-row: auto; min-height: 430px; }
    .emergency-panel { grid-template-columns: 90px 1fr; }
    .emergency-panel .button { grid-column: 2; justify-self: start; }
    .audience-grid { grid-template-columns: 1fr; }
    .audience-grid .section-heading { max-width: 700px; }
    .page-hero-grid { grid-template-columns: 1fr; }
    .service-orbit-card, .contact-promise { max-width: 650px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-sidebar { position: static; max-width: 700px; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / span 2; }
}

@media (max-width: 760px) {
    .shell { width: min(calc(100% - 32px), var(--shell)); }
    .section { padding: 82px 0; }
    .header-inner { min-height: 70px; gap: 12px; }
    .brand { width: 130px; }
    .header-cta { display: none; }
    .mobile-menu { margin-left: auto; }
    .home-hero { padding-top: 135px; }
    .hero-copy h1 { font-size: clamp(2.5rem, 10.3vw, 3rem); }
    .hero-copy .lead { font-size: 1rem; }
    .hero-actions .button { width: 100%; }
    .hero-checks { display: grid; gap: 8px; }
    .hero-visual { min-height: 510px; }
    .hero-console { min-height: 445px; padding: 17px; transform: none !important; }
    .console-label { display: none; }
    .console-brand { min-height: 155px; margin: 18px 0 12px; padding: 16px; }
    .console-services { gap: 7px; }
    .console-services a { grid-template-columns: 32px 1fr; padding: 9px; font-size: .68rem; }
    .console-services a > .icon:last-child { display: none; }
    .console-service-icon { width: 32px; height: 32px; }
    .chip-support { right: -4px; }
    .chip-secure { bottom: 5px; left: -4px; }
    .trust-rail { justify-content: flex-start; margin-top: 45px; overflow: hidden; white-space: nowrap; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
    .intro-grid, .section-heading-row, .process-layout, .faq-layout, .legal-layout { grid-template-columns: 1fr; }
    .section-heading-row { display: grid; margin-bottom: 38px; }
    .intro-copy { padding-top: 0; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card, .service-grid > .service-card:nth-last-child(-n+2) { grid-column: auto; min-height: 370px; }
    .innovation-grid { grid-template-columns: 1fr; }
    .innovation-card, .innovation-card-1 { grid-column: auto; min-height: 350px; padding: 28px; }
    .innovation-number { font-size: 3.9rem; }
    .emergency-panel { grid-template-columns: 1fr; gap: 25px; padding: 34px 25px; }
    .emergency-pulse { width: 70px; height: 70px; }
    .emergency-panel .button { grid-column: auto; width: 100%; }
    .approach-grid { grid-template-columns: 1fr; }
    .approach-grid li { min-height: auto; border-width: 1px 1px 0; }
    .approach-grid li:last-child { border-bottom-width: 1px; }
    .approach-icon { margin-bottom: 40px; }
    .audience-cards, .benefit-grid, .form-row { grid-template-columns: 1fr; }
    .page-hero { min-height: auto; padding: 135px 0 80px; }
    .page-hero h1 { font-size: clamp(2.6rem, 11.2vw, 3.25rem); }
    .breadcrumbs { margin-bottom: 32px; }
    .service-orbit-card, .contact-promise { padding: 26px; }
    .sticky-heading, .legal-layout aside { position: static; }
    .process-item { grid-template-columns: 48px 1fr; }
    .service-row { grid-template-columns: 50px 1fr 50px; gap: 14px; padding: 36px 0; }
    .service-row-number { grid-column: 1; grid-row: 1; }
    .service-row-icon { grid-column: 2; grid-row: 1; width: 56px; height: 56px; }
    .service-row-copy { grid-column: 1 / -1; grid-row: 2; }
    .service-row-link { grid-column: 1 / -1; grid-row: 3; margin-top: 8px; }
    .service-row-link > span { max-width: none; }
    .service-row-link > i { width: 48px; height: 48px; flex-basis: 48px; }
    .cta-panel { grid-template-columns: 1fr; gap: 32px; }
    .cta-actions .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { display: grid; }
    .legal-layout aside { grid-template-columns: 1fr 1fr; }
    .cookie-banner { right: 10px; bottom: 10px; left: 10px; grid-template-columns: 1fr; gap: 19px; width: calc(100% - 20px); padding: 21px; border-radius: 18px; }
    .cookie-banner-actions { min-width: 0; }
    .consent-dialog-actions { grid-template-columns: 1fr; }
    .consent-dialog-actions .consent-button-primary { grid-row: 1; }
}

@media (max-width: 420px) {
    .hero-visual { min-height: 475px; }
    .floating-chip { font-size: .66rem; }
    .console-services a { display: flex; }
    .console-services a > span:nth-child(2) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .audience-card { min-height: auto; padding: 27px; }
    .legal-layout aside { grid-template-columns: 1fr; }
}

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