/* ═══════════════════════════════════════════════════════════
   EXYPNOS Landing v5 — Blue & Silver edition
   Based on v3 layout · symmetric bento · new 3D shapes
   ═══════════════════════════════════════════════════════════ */

/* --- Tokens: Dark (default) --- */
:root,
[data-theme="dark"] {
    --bg-base: #04060f;
    --bg-elevated: #0a0f1e;
    --bg-surface: #0f1628;
    --bg-card: rgba(15, 22, 40, 0.72);
    --bg-card-solid: #121a2e;

    --blue: #3b8eff;
    --blue-dim: rgba(59, 142, 255, 0.14);
    --blue-glow: rgba(59, 142, 255, 0.4);
    --silver-accent: #b8c9dc;
    --silver-dim: rgba(184, 201, 220, 0.12);
    --silver-glow: rgba(184, 201, 220, 0.25);
    --silver: #c5d0de;
    --platinum: #eef2f7;

    --text: #f0f3f8;
    --text-secondary: #8b96a8;
    --text-tertiary: #5c6678;

    --border: rgba(197, 205, 216, 0.08);
    --border-strong: rgba(197, 205, 216, 0.16);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);

    --header-bg: rgba(4, 6, 15, 0.82);
    --grain-opacity: 0.04;
    --cursor-glow: rgba(43, 127, 255, 0.08);
    --marquee-fade: var(--bg-base);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-ar: 'IBM Plex Sans Arabic', sans-serif;
}

/* --- Tokens: Light --- */
[data-theme="light"] {
    --bg-base: #f5f7fb;
    --bg-elevated: #ffffff;
    --bg-surface: #eef1f7;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-solid: #ffffff;

    --blue: #1a6ae0;
    --blue-dim: rgba(26, 106, 224, 0.1);
    --blue-glow: rgba(26, 106, 224, 0.22);
    --silver-accent: #5a7088;
    --silver-dim: rgba(90, 112, 136, 0.1);
    --silver-glow: rgba(90, 112, 136, 0.18);
    --silver: #4a6178;
    --platinum: #0f1a2e;

    --text: #0f1419;
    --text-secondary: #4a5568;
    --text-tertiary: #718096;

    --border: rgba(15, 20, 25, 0.08);
    --border-strong: rgba(15, 20, 25, 0.14);

    --shadow-sm: 0 2px 8px rgba(15, 20, 25, 0.06);
    --shadow-md: 0 8px 32px rgba(15, 20, 25, 0.08);
    --shadow-lg: 0 24px 64px rgba(15, 20, 25, 0.12);

    --header-bg: rgba(245, 247, 251, 0.88);
    --grain-opacity: 0.025;
    --cursor-glow: rgba(26, 95, 212, 0.06);
    --marquee-fade: var(--bg-base);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-base);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

[dir="rtl"] body {
    font-family: var(--font-ar);
}

[dir="rtl"] .hero-title,
[dir="rtl"] h2,
[dir="rtl"] .section-head h2 {
    font-family: var(--font-ar);
    letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }

.container {
    width: min(1180px, 92vw);
    margin-inline: auto;
}

/* --- Ambient layers --- */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: var(--grain-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cursor-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logos {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 0;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-logo--mark {
    height: 34px;
}

.brand-logo--text {
    height: 20px;
}

.brand-logo--footer {
    height: 30px;
    margin-bottom: 0.65rem;
}

/* Theme-aware logos: white set on dark, black set on light */
.logo-theme-light { display: none; }

[data-theme="light"] .logo-theme-dark { display: none; }
[data-theme="light"] .logo-theme-light { display: block; }

[data-theme="dark"] .logo-theme-dark { display: block; }
[data-theme="dark"] .logo-theme-light { display: none; }

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.25s var(--ease);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    inset-inline: 0;
    height: 1px;
    background: var(--silver-accent);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.nav-desktop a:hover { color: var(--text); }
.nav-desktop a:hover::after { transform: scaleX(1); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    transition: border-color 0.25s, background 0.25s;
}

.icon-btn:hover {
    border-color: var(--border-strong);
    background: var(--bg-surface);
}

.icon-btn svg { width: 18px; height: 18px; color: var(--text-secondary); }

[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.pill-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid var(--silver-dim);
    color: var(--silver-accent);
    background: var(--silver-dim);
    transition: all 0.25s var(--ease);
}

.pill-btn:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s var(--ease);
}

.menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0 1rem 1rem;
    border-top: 1px solid var(--border);
    background: var(--header-bg);
}

.nav-mobile.is-open { display: flex; }

.nav-mobile a {
    padding: 0.85rem 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, #1a5fd4 100%);
    color: #fff;
    box-shadow: 0 4px 20px var(--blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--blue-glow);
}

.btn-ghost {
    border: 1px solid var(--border-strong);
    color: var(--text);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--silver-accent);
    color: var(--silver-accent);
}

.btn-full { width: 100%; }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-orb--blue {
    width: 600px;
    height: 600px;
    top: -10%;
    inset-inline-end: -5%;
    background: var(--blue-dim);
}

.hero-orb--silver {
    width: 400px;
    height: 400px;
    bottom: 10%;
    inset-inline-start: -10%;
    background: var(--silver-dim);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--silver) 0%, var(--silver-accent) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-metrics {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--platinum);
    line-height: 1.2;
}

.metric span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* --- 3D Canvas --- */
.hero-visual {
    position: relative;
    height: min(520px, 70vw);
    display: flex;
    align-items: center;
    justify-content: center;
}

.canvas-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.canvas-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, var(--blue-dim) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

#scene3d {
    width: 100%;
    height: 100%;
    display: block;
}

.canvas-label {
    position: absolute;
    bottom: 1rem;
    inset-inline-start: 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.canvas-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--blue-glow); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px transparent; }
}

.orbit-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orbit-card {
    position: absolute;
    padding: 0.4rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    color: var(--silver-accent);
    animation: floatCard 6s ease-in-out infinite;
}

.orbit-card--1 { top: 8%; inset-inline-end: 5%; animation-delay: 0s; }
.orbit-card--2 { bottom: 20%; inset-inline-start: -2%; animation-delay: -2s; }
.orbit-card--3 { top: 40%; inset-inline-end: -4%; animation-delay: -4s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

[dir="rtl"] .hero-scroll { transform: translateX(50%); }

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--silver-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* --- Trust strip --- */
.trust-strip {
    padding: 3rem 0;
    border-block: 1px solid var(--border);
    background: var(--bg-elevated);
}

.trust-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-item svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--silver-accent);
    margin-top: 2px;
}

.trust-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.trust-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- Sections --- */
.section {
    padding: 6rem 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 3.5rem;
}

.section-head.text-center {
    text-align: center;
    margin-inline: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-head p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* --- Bento grid (symmetric 3×3 — aligned rows) --- */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, minmax(200px, auto));
    gap: 1rem;
    align-items: stretch;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: border-color 0.35s var(--ease), transform 0.35s var(--ease-out), box-shadow 0.35s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--silver-accent));
    opacity: 0;
    transition: opacity 0.35s;
}

.bento-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bento-card:hover::before { opacity: 1; }

.bento-card--wide { grid-column: span 2; }

.bento-card p,
.bento-list {
    flex: 1;
}

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--blue-dim);
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
}

.bento-icon svg {
    width: 22px;
    height: 22px;
    color: var(--blue);
}

.bento-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bento-list {
    list-style: none;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bento-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-inline-start: 1rem;
    position: relative;
}

.bento-list li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--silver-accent);
}

/* --- Products marquee --- */
.products {
    padding-bottom: 4rem;
    overflow: hidden;
}

.marquee-zone {
    position: relative;
    margin-top: 1rem;
}

.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade--left {
    inset-inline-start: 0;
    background: linear-gradient(to right, var(--marquee-fade), transparent);
}

.marquee-fade--right {
    inset-inline-end: 0;
    background: linear-gradient(to left, var(--marquee-fade), transparent);
}

.marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    padding: 1rem 0;
}

.marquee-track:hover { animation-play-state: paused; }

[dir="rtl"] .marquee-track {
    animation-name: marqueeScrollRTL;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.625rem)); }
}

@keyframes marqueeScrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(50% + 0.625rem)); }
}

.product-card {
    flex-shrink: 0;
    width: 300px;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card-solid);
    transition: transform 0.4s var(--ease-out), border-color 0.3s;
    transform-style: preserve-3d;
}

.product-card:hover {
    border-color: var(--silver-dim);
    transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
}

[dir="rtl"] .product-card:hover {
    transform: perspective(800px) rotateY(4deg) rotateX(2deg) translateY(-6px);
}

.product-card .prod-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-dim);
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.product-card .prod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.product-card .prod-tags span {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    color: var(--text-tertiary);
}

/* --- Process --- */
.process {
    background: var(--bg-elevated);
    border-block: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.process-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    inset-inline-start: 22px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(to bottom, var(--blue), var(--silver-accent), var(--blue));
    opacity: 0.3;
}

[dir="rtl"] .process-steps::before {
    inset-inline-start: auto;
    inset-inline-end: 22px;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    background: var(--bg-base);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- CTA band --- */
.cta-band {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--blue-dim) 0%, var(--silver-dim) 100%);
    border-block: 1px solid var(--border);
}

.cta-band-inner {
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
}

.cta-band blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--platinum);
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-key {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.contact-list a {
    color: var(--blue);
    transition: color 0.2s;
}

.contact-list a:hover { color: var(--silver-accent); }

.form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
}

.field {
    margin-bottom: 1.25rem;
}

.field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    background: var(--bg-base);
    color: var(--text);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-dim);
}

/* Honeypot — invisible to humans */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-alert {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-alert.is-success {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-alert.is-error {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* --- Footer --- */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-brand p {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--silver-accent); }

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-align: end;
    align-self: end;
}

/* --- Reveal animations --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid,
    .process-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual { order: -1; height: 380px; }
    .hero-metrics { justify-content: center; }
    .trust-items { grid-template-columns: 1fr; gap: 1.5rem; }

    .bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bento-card--wide {
        grid-column: span 1;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p { margin-inline: auto; }
    .footer-links { align-items: center; }
    .footer-copy { text-align: center; }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }

    .brand-logo--text { height: 17px; }
    .brand-logo--mark { height: 30px; }
    .brand-logos { gap: 0.45rem; }

    .hero { padding-top: 90px; min-height: auto; }
    .hero-scroll { display: none; }

    .bento { grid-template-columns: 1fr; }

    .hero-actions { justify-content: center; }
    .hero-copy { text-align: center; }
    .hero-lead { margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-track { animation: none; }
    .reveal { opacity: 1; transform: none; }
}
