/* ============================================
   OcuBalance — Neo-brutalist / editorial v2
   Sharp edges, ink + acid lime, offset shadows
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --font-heading: 'Archivo', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

    --ink: #0a0a0a;
    --ink-soft: #1f1f1f;
    --paper: #e5d9ce;
    --paper-light: #f0e8e0;
    --white: #faf7f2;
    --lime: #dfff1a;
    --lime-dark: #b8cf00;
    --hot: #ff3355;
    --muted: #5c534c;
    --line: #0a0a0a;

    --accent: var(--lime);
    --accent-hover: var(--lime-dark);
    --color-text: var(--ink);
    --color-text-muted: var(--muted);
    --color-text-light: #6e655d;
    --color-bg: var(--paper);
    --color-bg-alt: var(--paper-light);
    --color-surface: var(--white);
    --color-border: var(--ink);
    --color-footer-bg: var(--ink);
    --color-footer-text: #b8b3ad;
    --color-footer-heading: var(--lime);

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-5xl: 6rem;

    --container-max: 1140px;
    --radius: 0;
    --shadow: 6px 6px 0 var(--ink);
    --shadow-sm: 4px 4px 0 var(--ink);

    --header-h: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(10, 10, 10, 0.03) 80px,
            rgba(10, 10, 10, 0.03) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(10, 10, 10, 0.03) 80px,
            rgba(10, 10, 10, 0.03) 81px
        );
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ========== Header ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--paper-light);
    border-bottom: 3px solid var(--ink);
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    min-height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    z-index: 1002;
}

.logo:hover {
    color: var(--ink-soft);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--ink);
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    background: var(--lime);
    border: 3px solid var(--ink);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 1.35rem;
    height: 3px;
    background: var(--ink);
    margin: 5px 0;
    transition: transform 0.25s, opacity 0.25s;
}

.header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.15s;
}

.nav-link:hover {
    color: var(--hot);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.7rem 1.35rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    border: 3px solid var(--ink);
    cursor: pointer;
}

.btn-primary {
    background: var(--lime);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--lime-dark);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--white);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}

.hero-panel--copy .btn-outline {
    border-color: var(--ink);
    color: var(--ink);
    background: var(--white);
}

.hero-panel--copy .btn-outline:hover {
    background: var(--lime);
}

.btn-large {
    padding: 0.95rem 1.75rem;
    font-size: 0.9375rem;
}

.gradient-text,
.accent-text {
    color: var(--hot);
}

/* ========== Hero split ========== */
.hero {
    padding: 0;
    position: relative;
    border-bottom: 3px solid var(--ink);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: min(88vh, 720px);
}

.hero-panel {
    position: relative;
    min-height: 320px;
}

.hero-panel--copy {
    background: var(--lime);
    display: flex;
    align-items: center;
    padding: var(--space-3xl) var(--space-xl);
    border-right: 3px solid var(--ink);
}

.hero-panel-inner {
    max-width: 32rem;
    width: 100%;
    margin: 0 auto;
}

.hero-panel--media {
    background: var(--ink);
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

.hero-media-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(223, 255, 26, 0.15) 0%, transparent 45%),
        linear-gradient(145deg, #121212 0%, #0a0a0a 100%);
    pointer-events: none;
}

.hero-media-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
}

.hero-media-frame img {
    width: min(100%, 420px);
    height: auto;
    display: block;
    border: 3px solid var(--lime);
    box-shadow: 12px 12px 0 rgba(223, 255, 26, 0.35);
    object-fit: contain;
    background: #fff;
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    width: fit-content;
    border: 2px solid var(--ink);
    padding: 0.35rem 0.65rem;
    background: var(--white);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--hot);
    border: 2px solid var(--ink);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--ink);
    letter-spacing: -0.045em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.hero-title-accent {
    display: inline-block;
    background: var(--ink);
    color: var(--lime);
    padding: 0.1em 0.25em;
    margin-top: 0.15em;
    box-decoration-break: clone;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 28rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.hero-badges {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--white);
    border: 2px solid var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mini-badge span:first-child {
    font-weight: 800;
    font-size: 0.875rem;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ========== Stats ========== */
.stats {
    padding: var(--space-2xl) 0;
    background: var(--ink);
    color: var(--white);
    border-bottom: 3px solid var(--ink);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: left;
}

.stat-item {
    padding: var(--space-lg) var(--space-xl);
    border-right: 2px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--lime);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
}

/* ========== Section common ========== */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header--left {
    text-align: left;
    max-width: 40rem;
}

.section-header--left .section-description {
    margin-left: 0;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink);
    margin-bottom: var(--space-md);
    padding: 0.25rem 0.5rem;
    border: 2px solid var(--ink);
    background: var(--lime);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 900;
    margin-bottom: var(--space-md);
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-transform: uppercase;
}

.section-description {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== Features ========== */
.features {
    background: var(--paper-light);
    border-bottom: 3px solid var(--ink);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.feature-image img {
    border-radius: var(--radius);
    border: 3px solid var(--ink);
    box-shadow: var(--shadow);
}

.feature-image img {
    width: 100%;
    display: block;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius);
    border: 3px solid var(--ink);
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s, box-shadow 0.15s;
}

.feature-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--ink);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ink);
    font-size: 1.35rem;
    flex-shrink: 0;
    background: var(--lime);
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ========== Heart ========== */
.heart-health {
    background: var(--hot);
    color: var(--white);
    border-bottom: 3px solid var(--ink);
}

.heart-health .section-badge {
    background: var(--ink);
    color: var(--lime);
    border-color: var(--white);
}

.heart-health .section-title {
    color: var(--white);
}

.heart-health .accent-text {
    color: var(--lime);
}

.heart-health .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.heart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.heart-content .section-title {
    text-align: left;
}

.heart-content .section-description {
    margin: 0 0 var(--space-lg) 0;
    text-align: left;
}

.heart-image img {
    width: 100%;
    border: 3px solid var(--ink);
    box-shadow: var(--shadow);
    display: block;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid var(--ink);
    font-size: 0.9375rem;
    font-weight: 600;
}

.check {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--lime);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* ========== Technology (inverted) ========== */
.technology {
    background: var(--ink);
    border-bottom: 3px solid var(--ink);
}

.technology .section-badge {
    background: transparent;
    color: var(--lime);
    border-color: var(--lime);
}

.technology .section-title {
    color: var(--white);
}

.technology .section-description {
    color: rgba(255, 255, 255, 0.65);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 56rem;
    margin: 0 auto;
}

.tech-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.technology .feature-card {
    background: var(--lime);
    border-color: var(--ink);
}

.technology .feature-card:hover {
    background: var(--white);
}

.technology .feature-icon {
    background: var(--ink);
    font-size: 1.25rem;
}

.technology .feature-content h3 {
    color: var(--ink);
}

.technology .feature-content p {
    color: var(--ink-soft);
}

/* ========== Testimonials ========== */
.testimonials {
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
}

.testimonials .section-badge {
    background: var(--white);
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.stars {
    color: var(--ink);
    font-size: 1.25rem;
    filter: grayscale(1) contrast(1.2);
}

.rating-text {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    padding: var(--space-xl);
    background: var(--white);
    border: 3px solid var(--ink);
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s;
}

.testimonial-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: normal;
    color: var(--color-text-muted);
    margin: var(--space-md) 0;
    line-height: 1.75;
    font-size: 0.9375rem;
}

.testimonial-author {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink);
}

/* ========== Specifications ========== */
.specifications {
    background: var(--paper-light);
    border-bottom: 3px solid var(--ink);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.spec-card {
    padding: var(--space-xl);
    background: var(--white);
    border: 3px solid var(--ink);
    box-shadow: var(--shadow-sm);
}

.spec-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: var(--space-lg);
    color: var(--ink);
    text-transform: uppercase;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 2px solid var(--ink);
    font-size: 0.9375rem;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item span:first-child {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.spec-item span:last-child {
    font-weight: 800;
    color: var(--ink);
}

.compatibility {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--lime);
    border: 3px solid var(--ink);
}

.compatibility h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.compatibility p {
    color: var(--ink-soft);
    font-size: 0.875rem;
    line-height: 1.5;
}

.specifications .checklist-item {
    background: var(--paper);
    border-color: var(--ink);
}

.specifications .check {
    background: var(--lime);
}

/* ========== CTA ========== */
.cta {
    padding: var(--space-5xl) 0;
    background: var(--lime);
    border-bottom: 3px solid var(--ink);
}

.cta .section-badge {
    background: var(--ink);
    color: var(--lime);
    border-color: var(--ink);
}

.cta .section-title {
    color: var(--ink);
}

.cta .section-description {
    color: var(--ink-soft);
}

.cta-content {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}

.price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-xl) var(--space-2xl);
    background: var(--white);
    border: 3px solid var(--ink);
    box-shadow: var(--shadow);
    margin: var(--space-xl) 0;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--ink);
}

.price-old {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.price-save {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: var(--space-sm);
}

.cta .btn {
    background: var(--ink);
    color: var(--lime);
    border-color: var(--ink);
    box-shadow: var(--shadow);
}

.cta .btn:hover {
    background: var(--hot);
    color: var(--white);
}

/* ========== Footer ========== */
.footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 3px solid var(--lime);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    color: var(--lime);
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--color-footer-text);
}

.footer-col h3 {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-footer-heading);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    color: var(--color-footer-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: var(--lime);
}

.footer-bottom {
    border-top: 2px solid rgba(223, 255, 26, 0.2);
    padding-top: var(--space-xl);
    text-align: center;
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: var(--space-md);
    line-height: 1.65;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== Contact Page ========== */
.contact-page {
    padding: var(--space-4xl) 0;
    background: var(--paper-light);
    border-bottom: 3px solid var(--ink);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
}

.contact-form-wrapper .contact-card {
    background: var(--white);
    padding: var(--space-2xl);
    border: 3px solid var(--ink);
    box-shadow: var(--shadow);
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 900;
    margin-bottom: var(--space-lg);
    color: var(--ink);
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 3px solid var(--ink);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--paper-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    box-shadow: inset 0 0 0 2px var(--lime);
}

.form-note {
    font-size: 0.8125rem;
    color: var(--muted);
    text-align: center;
    margin-top: var(--space-sm);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-content p {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.info-note {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: var(--space-xs);
}

.info-card {
    padding: var(--space-lg);
    background: var(--white);
    border: 3px solid var(--ink);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: var(--space-md);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ink);
    font-size: 1.25rem;
    flex-shrink: 0;
    background: var(--lime);
}

.info-content h3 {
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-xs);
    color: var(--ink);
}

.info-content a {
    color: var(--hot);
    font-weight: 700;
}

.service-card {
    background: var(--lime);
    padding: var(--space-lg);
    border: 3px solid var(--ink);
    box-shadow: var(--shadow-sm);
}

.service-card h3 {
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.service-list {
    list-style: none;
    padding: 0;
    color: var(--ink-soft);
    font-size: 0.875rem;
}

/* ========== Legal pages ========== */
.legal-page {
    padding: var(--space-3xl) 0;
    background: var(--paper-light);
    border-bottom: 3px solid var(--ink);
}

.legal-content {
    max-width: 50rem;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--space-md);
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--ink);
    text-transform: uppercase;
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.legal-content p,
.legal-content li {
    margin-bottom: var(--space-md);
    line-height: 1.75;
    color: var(--color-text-muted);
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: 1.25rem;
}

.legal-content a {
    color: var(--hot);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--ink);
}

.last-updated {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: var(--space-xl);
}

.legal-content .highlight-box {
    background: var(--lime);
    border: 3px solid var(--ink);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    box-shadow: var(--shadow-sm);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-panel--media {
        order: -1;
        min-height: 360px;
        border-bottom: 3px solid var(--ink);
    }

    .hero-panel--copy {
        border-right: none;
        border-bottom: none;
        padding: var(--space-3xl) var(--space-xl);
    }

    .tech-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-lg) 0 0;
        border-top: 3px solid var(--ink);
        margin-top: var(--space-sm);
        background: var(--lime);
    }

    .nav .nav-link,
    .nav .btn {
        padding: var(--space-md);
        border-bottom: 2px solid var(--ink);
        text-align: center;
    }

    .nav .btn {
        margin-top: var(--space-sm);
        border-bottom: none;
    }

    .header.nav-open .nav {
        display: flex;
    }

    .features-grid,
    .heart-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: 2px solid rgba(255, 255, 255, 0.12);
        border-bottom: 2px solid rgba(255, 255, 255, 0.12);
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--paper);
}

::-webkit-scrollbar-thumb {
    background: var(--ink);
    border: 2px solid var(--paper);
}
