/* Novus Altair IT — v3.0 TOTAL REDESIGN */

:root {
    --ink: #050507;
    --panel: #0F1117;
    --panelhi: #181B24;
    --panelborder: rgba(255, 255, 255, 0.08);
    --electric: #06B6D4;
    --electric-dim: rgba(6, 182, 212, 0.12);
    --signal: #F97316;
    --steel: #94A3B8;
    --white: #ffffff;
    --max-w: 1600px;
    --radius: 1.25rem;
    --radius-sm: 0.875rem;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--ink);
    color: var(--white);
    overflow-x: hidden;
}

::selection {
    background: rgba(6, 182, 212, 0.35);
    color: #fff;
}

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--electric), var(--signal));
    z-index: 9999;
    transition: width 0.05s linear;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--electric);
    color: var(--ink);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 200;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* Navigation */
.brand-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 90;
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--panelborder);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.brand-bar.scrolled {
    background: rgba(5, 5, 7, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: var(--electric);
    color: var(--ink);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
    position: relative;
}
.nav-link:hover, .nav-link.nav-active { color: var(--electric); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric);
    transition: width 0.2s ease;
}
.nav-link:hover::after, .nav-link.nav-active::after { width: 100%; }

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--panelborder);
    padding-bottom: 1rem;
    transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--electric); }

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 20%, rgba(6, 182, 212, 0.12), transparent 50%),
                radial-gradient(ellipse at 30% 80%, rgba(249, 115, 22, 0.06), transparent 45%),
                var(--ink);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: orbFloat 10s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--panelborder);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--steel);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    color: var(--steel);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: var(--electric);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -12px rgba(6, 182, 212, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border: 1px solid var(--panelborder);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
    border: 1px solid var(--panelborder);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-trust {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item { display: flex; flex-direction: column; gap: 0.25rem; }
.trust-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--electric);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.trust-label { font-size: 0.8rem; color: var(--steel); max-width: 120px; }

/* Hero visual */
.hero-visual { position: relative; }

.terminal-window {
    background: rgba(15, 17, 23, 0.85);
    border: 1px solid var(--panelborder);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--panelborder);
}

.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-title {
    margin-left: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--steel);
}

.terminal-body { padding: 1.5rem; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; }
.terminal-line { margin-bottom: 0.75rem; line-height: 1.5; }
.terminal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 1rem 0 1.25rem;
}
.terminal-chip {
    padding: 0.35rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    text-align: center;
    background: rgba(16, 185, 129, 0.12);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--electric);
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-map {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    border: 1px solid var(--panelborder);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.map-ring {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.map-pulse {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--electric);
    position: relative;
}
.map-pulse::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--electric);
    animation: mapPulse 2s ease-out infinite;
}

@keyframes mapPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.map-label {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.65rem;
    color: var(--steel);
    font-family: 'JetBrains Mono', monospace;
}

/* Trust strip */
.trust-strip {
    background: var(--panel);
    border-bottom: 1px solid var(--panelborder);
    padding: 1.5rem 0;
}
.trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    justify-content: center;
}
.trust-strip-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--steel);
    font-weight: 600;
}
.trust-strip-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}
.trust-separator { color: var(--electric); }

/* Sections */
.section-dark {
    background: var(--ink);
    position: relative;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 0%, rgba(6, 182, 212, 0.06), transparent 50%);
    pointer-events: none;
}

.section-gradient {
    background: linear-gradient(180deg, var(--panel) 0%, var(--ink) 100%);
    position: relative;
    overflow: hidden;
}
.section-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 70%);
    pointer-events: none;
}

.section-light {
    background: #F8FAFC;
    color: var(--ink);
}

.section-contact {
    background: var(--panel);
    position: relative;
    overflow: hidden;
}
.section-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 100%, rgba(6, 182, 212, 0.08), transparent 50%);
    pointer-events: none;
}

.section-intro {
    max-width: 720px;
    margin-bottom: 4rem;
}
.section-intro.light { color: var(--ink); }

.section-kicker {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--electric);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--steel);
    line-height: 1.7;
    max-width: 600px;
}

.section-body {
    font-size: 1rem;
    color: var(--steel);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Bento grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}
@media (min-width: 640px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bento-grid { grid-template-columns: repeat(4, 1fr); } }

.bento-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: var(--panel);
    border: 1px solid var(--panelborder);
    border-radius: var(--radius);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 50px -15px rgba(6, 182, 212, 0.12);
}
.bento-card:hover::before { opacity: 1; }

.bento-xl { grid-column: span 1; }
.bento-wide { grid-column: span 1; }
@media (min-width: 1024px) {
    .bento-xl { grid-column: span 2; grid-row: span 2; }
    .bento-wide { grid-column: span 2; }
}

.bento-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--electric-dim);
    color: var(--electric);
    margin-bottom: 1.25rem;
}

.bento-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.bento-xl .bento-title { font-size: 1.5rem; }

.bento-text {
    font-size: 0.9rem;
    color: var(--steel);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--electric);
    transition: gap 0.2s ease;
}
.bento-card:hover .bento-link { gap: 0.5rem; }

/* Products */
.product-content { position: relative; z-index: 10; }
.product-badge {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.12);
    color: var(--electric);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.product-features { display: flex; flex-direction: column; gap: 0.875rem; margin: 2rem 0 2.5rem; }
.product-feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}
.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--electric);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
}
.product-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.product-panels {
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 10;
}
@media (min-width: 640px) { .product-panels { grid-template-columns: repeat(2, 1fr); } }

.product-panel {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--panelborder);
    background: var(--panel);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.product-panel:hover { transform: translateY(-4px); border-color: rgba(6, 182, 212, 0.3); }
.product-panel.pro { background: linear-gradient(135deg, var(--panel) 0%, rgba(6, 182, 212, 0.08) 100%); }
.product-panel.solo { background: linear-gradient(135deg, var(--panel) 0%, rgba(249, 115, 22, 0.06) 100%); }

.panel-mark {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.panel-header { margin-bottom: 1rem; }
.panel-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--steel);
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.panel-title { font-size: 1.5rem; font-weight: 700; }
.panel-text { font-size: 0.9rem; color: var(--steel); line-height: 1.65; margin-bottom: 1.5rem; }
.panel-link { color: var(--electric); font-weight: 600; font-size: 0.9rem; transition: gap 0.2s ease; }
.panel-link:hover { text-decoration: underline; }

/* About */
.about-image {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(15, 17, 23, 0.8) 100%),
                radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.2), transparent 40%);
    border: 1px solid var(--panelborder);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.about-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}
.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(5, 5, 7, 0.75) 0%, rgba(5, 5, 7, 0.15) 45%, transparent 70%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, 32px 32px, 32px 32px;
    pointer-events: none;
}
.about-image-caption {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}
.about-stat {
    padding: 1.25rem;
    background: var(--panel);
    border: 1px solid var(--panelborder);
    border-radius: var(--radius-sm);
    text-align: center;
}
.about-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--electric);
    margin-bottom: 0.25rem;
}
.about-stat-label { font-size: 0.75rem; color: var(--steel); }

.about-claims { display: grid; gap: 0.75rem; }
.claim {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--panel);
    border: 1px solid var(--panelborder);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}
.claim-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Testimonials */
.testimonial-stage { overflow: hidden; }
.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-card {
    min-width: 100%;
    padding: 0 0.5rem;
}
.quote-mark {
    font-size: 6rem;
    line-height: 1;
    color: var(--electric);
    opacity: 0.25;
    font-family: Georgia, serif;
    margin-bottom: -2rem;
}
.testimonial-quote {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; flex-direction: column; gap: 0.15rem; }
.author-name { font-weight: 700; color: var(--ink); }
.author-role { font-size: 0.85rem; color: #64748B; }

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}
.control-btn {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #CBD5E1;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.control-btn:hover { background: #F1F5F9; border-color: #94A3B8; }
.control-dots { display: flex; gap: 0.5rem; }
.control-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 999px;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}
.control-dot.active { width: 2rem; background: var(--electric); }

/* Contact */
.contact-info { position: relative; z-index: 10; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin: 2.5rem 0; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--ink);
    border: 1px solid var(--panelborder);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-method:hover { border-color: rgba(6, 182, 212, 0.3); background: rgba(6, 182, 212, 0.03); }
.contact-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--electric-dim);
    color: var(--electric);
    flex-shrink: 0;
}
.contact-detail { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-label { font-size: 0.75rem; color: var(--steel); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-value { font-size: 1rem; font-weight: 600; color: var(--white); }

.callback-block {
    padding: 1.5rem;
    background: var(--ink);
    border: 1px solid var(--panelborder);
    border-radius: var(--radius);
}
.callback-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.callback-form { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.callback-input {
    flex: 1 1 140px;
    padding: 0.75rem 1rem;
    background: var(--panel);
    border: 1px solid var(--panelborder);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.callback-input:focus { border-color: var(--electric); box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15); }
.callback-input::placeholder { color: var(--steel); }
.callback-btn {
    flex: 1 1 140px;
    padding: 0.75rem 1rem;
    background: var(--electric);
    color: var(--ink);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.callback-btn:hover { background: #22d3ee; }
.callback-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
}
.map-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-grow: 1;
    min-height: 280px;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--panelborder);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, var(--ink) 60%),
                radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.2), transparent 50%);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.map-card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}
.map-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(5, 5, 7, 0.92) 0%, rgba(5, 5, 7, 0.55) 45%, rgba(5, 5, 7, 0.35) 100%);
    pointer-events: none;
}
.map-card-content,
.map-card-arrow {
    position: relative;
    z-index: 2;
}
.map-card:hover { transform: translateY(-4px); border-color: rgba(6, 182, 212, 0.3); }
.map-card-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--electric);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.map-card-address { font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
.map-card-arrow {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--electric);
    flex-shrink: 0;
}
.coverage-card {
    padding: 1.5rem;
    background: var(--ink);
    border: 1px solid var(--panelborder);
    border-radius: var(--radius);
}
.coverage-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.coverage-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.coverage-pill {
    padding: 0.35rem 0.875rem;
    border-radius: 999px;
    background: var(--panel);
    border: 1px solid var(--panelborder);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}
.coverage-note { font-size: 0.85rem; color: var(--steel); line-height: 1.6; }

/* Footer */
.footer {
    background: var(--ink);
    border-top: 1px solid var(--panelborder);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(6, 182, 212, 0.05), transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-logo {
    height: 2rem;
    width: auto;
    opacity: 0.95;
    display: block;
}
.footer-tagline { font-size: 0.95rem; color: var(--steel); line-height: 1.7; max-width: 300px; }
.footer-secure {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--panelborder);
    font-size: 0.75rem;
    color: var(--steel);
}
.footer-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link {
    font-size: 0.9rem;
    color: var(--steel);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}
.footer-link:hover { color: var(--electric); transform: translateX(2px); }

.footer-bottom {
    border-top: 1px solid var(--panelborder);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.footer-legal-link {
    font-size: 0.8rem;
    color: var(--steel);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-legal-link:hover { color: var(--electric); }
.footer-copyright { font-size: 0.8rem; color: var(--steel); }

/* Legal pages (privacy, terms, cookies, disclaimer) */
.legal-hero {
    padding: 8rem 0 3rem;
    border-bottom: 1px solid var(--panelborder);
    background:
        radial-gradient(ellipse 60% 50% at 20% 0%, rgba(6, 182, 212, 0.08), transparent 55%),
        var(--ink);
}
.legal-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--steel);
    margin-bottom: 1.25rem;
}
.legal-breadcrumb a {
    color: var(--electric);
    text-decoration: none;
}
.legal-breadcrumb a:hover { text-decoration: underline; }
.legal-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
}
.legal-lead {
    max-width: 42rem;
    color: var(--steel);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 1rem;
}
.legal-meta {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.75rem;
    color: var(--steel);
    letter-spacing: 0.02em;
    margin: 0;
}
.legal-section {
    padding: 3.5rem 0 5rem;
}
.legal-layout {
    display: grid;
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}
.legal-toc {
    position: sticky;
    top: 6rem;
    padding: 1.5rem;
    background: var(--panel);
    border: 1px solid var(--panelborder);
    border-radius: 1rem;
}
.legal-toc h2 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--electric);
    margin: 0 0 1rem;
}
.legal-toc ol {
    margin: 0;
    padding: 0 0 0 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.legal-toc a {
    color: var(--steel);
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.4;
}
.legal-toc a:hover { color: var(--white); }
.legal-related {
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--panelborder);
    font-size: 0.8rem;
    color: var(--steel);
    line-height: 1.5;
}
.legal-related a {
    color: var(--electric);
    text-decoration: none;
}
.legal-related a:hover { text-decoration: underline; }
.legal-doc {
    max-width: 48rem;
}
.legal-doc h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    padding-top: 0.5rem;
    scroll-margin-top: 6rem;
    color: var(--white);
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--white);
}
.legal-doc p,
.legal-doc li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.7;
}
.legal-doc p { margin: 0 0 1rem; }
.legal-doc ul {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}
.legal-doc li { margin-bottom: 0.4rem; }
.legal-doc a {
    color: var(--electric);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-doc a:hover { color: var(--white); }
.legal-doc code {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.85em;
    background: var(--panelhi);
    padding: 0.1em 0.35em;
    border-radius: 0.25rem;
    color: var(--electric);
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .legal-toc {
        position: static;
    }
    .legal-hero {
        padding-top: 7rem;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--signal);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 30px -8px rgba(249, 115, 22, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: float 4s ease-in-out infinite;
}
.floating-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(249, 115, 22, 0.5); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Modal */
.modal-shell {
    background: var(--panel);
    border: 1px solid var(--panelborder);
    border-radius: var(--radius);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid var(--panelborder);
}
.modal-kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--electric);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.modal-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.modal-subtitle { font-size: 0.9rem; color: var(--steel); }
.modal-close {
    background: none;
    border: none;
    color: var(--steel);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}
.modal-close:hover { color: var(--white); }
.modal-form { padding: 2rem; }
.modal-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .modal-grid { grid-template-columns: repeat(2, 1fr); } }
.modal-field { display: flex; flex-direction: column; gap: 0.5rem; }
.modal-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--steel); font-weight: 700; }
.modal-input {
    padding: 0.875rem 1rem;
    background: var(--ink);
    border: 1px solid var(--panelborder);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}
.modal-input:focus { border-color: var(--electric); box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15); }
.modal-input::placeholder { color: var(--steel); }
.modal-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--steel);
    margin: 1.25rem 0;
}
.modal-checkbox {
    margin-top: 0.15rem;
    accent-color: var(--electric);
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}
.modal-submit {
    width: 100%;
    padding: 1rem;
    background: var(--electric);
    color: var(--ink);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.modal-submit:hover { background: #22d3ee; }
.modal-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.modal-note { text-align: center; font-size: 0.7rem; color: var(--steel); margin-top: 1rem; }

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 1023px) {
    .hero-map { display: none; }
    .hero-visual { margin-top: 2rem; }
    .hero-content { padding-top: 2rem; }
}

@media (max-width: 639px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }
    .hero-trust { gap: 1.5rem; }
    .trust-item { min-width: 80px; }
    .terminal-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: 1fr; }
    .product-actions { flex-direction: column; }
    .product-actions .btn-primary, .product-actions .btn-ghost { width: 100%; }
    .callback-form { flex-direction: column; }
    .callback-form .callback-input, .callback-form .callback-btn { width: 100%; flex: none; }
    .map-card-address { font-size: 1.15rem; }
    .footer-grid { gap: 2rem; }
    .footer-legal { flex-direction: column; gap: 0.75rem; }
}
