/* ==========================================================================
   SecKonnect — Hardware-Accelerated ZTNA
   Stylesheet by SecKonnect Brand System
   ========================================================================== */

/* CSS Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors */
    --brand-yellow: #F5B816;
    --brand-yellow-dark: #E0A50C;
    --brand-yellow-light: #FFD15C;
    --brand-green: #5CB85C;
    --brand-green-dark: #3F8E3F;
    --brand-green-light: #7FCB7F;

    /* Neutrals */
    --navy-900: #0A1020;
    --navy-800: #0F1729;
    --navy-700: #1A2332;
    --navy-600: #243044;
    --slate-500: #475569;
    --slate-400: #64748B;
    --slate-300: #94A3B8;
    --slate-200: #CBD5E1;
    --slate-100: #E2E8F0;
    --slate-50: #F8FAFC;

    /* Status */
    --danger: #EF4444;
    --danger-bg: #FEF2F2;
    --success: #10B981;
    --warning: #F59E0B;

    /* Surfaces */
    --surface-0: #FFFFFF;
    --surface-1: #FAFBFC;
    --surface-2: #F4F5F7;

    /* Typography */
    --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

    /* Spacing & Layout */
    --container-max: 1280px;
    --container-padding: clamp(1rem, 4vw, 2rem);
    --section-padding: clamp(4rem, 10vw, 7rem);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 41, 0.04);
    --shadow-md: 0 6px 16px -2px rgba(15, 23, 41, 0.08), 0 2px 4px rgba(15, 23, 41, 0.04);
    --shadow-lg: 0 20px 40px -8px rgba(15, 23, 41, 0.12), 0 8px 16px -4px rgba(15, 23, 41, 0.06);
    --shadow-xl: 0 32px 64px -12px rgba(15, 23, 41, 0.18);
    --shadow-yellow: 0 16px 40px -8px rgba(245, 184, 22, 0.4);
    --shadow-green: 0 16px 40px -8px rgba(92, 184, 92, 0.35);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration: 280ms;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--navy-800);
    background: var(--surface-0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease-out);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: transparent;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--brand-yellow);
    color: var(--navy-800);
}

/* Container & Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

.section {
    padding-block: var(--section-padding);
    position: relative;
}

.section--dark {
    background: var(--navy-900);
    color: var(--surface-0);
}

.section--surface {
    background: var(--surface-1);
}

/* Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--navy-900);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
    color: var(--surface-0);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.875rem);
}

h4 {
    font-size: clamp(1.15rem, 1.8vw, 1.375rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-green-dark);
    background: rgba(92, 184, 92, 0.1);
    padding: 0.4rem 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.eyebrow--yellow {
    color: var(--brand-yellow-dark);
    background: rgba(245, 184, 22, 0.12);
}

.eyebrow--dark {
    color: var(--brand-yellow);
    background: rgba(245, 184, 22, 0.15);
}

.lead {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.6;
    color: var(--slate-500);
    max-width: 64ch;
}

.section--dark .lead {
    color: var(--slate-300);
}

.section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.center {
    text-align: center;
    margin-inline: auto;
    max-width: 720px;
}

.section-header.center .lead {
    margin-inline: auto;
}

/* Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
    white-space: nowrap;
    border: 1.5px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--brand-yellow);
    color: var(--navy-900);
    box-shadow: var(--shadow-yellow);
}

.btn--primary:hover {
    background: var(--brand-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -8px rgba(245, 184, 22, 0.5);
}

.btn--secondary {
    background: var(--navy-900);
    color: var(--surface-0);
    box-shadow: 0 8px 24px -8px rgba(10, 16, 32, 0.4);
}

.btn--secondary:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
}

.btn--green {
    background: var(--brand-green);
    color: var(--surface-0);
    box-shadow: var(--shadow-green);
}

.btn--green:hover {
    background: var(--brand-green-dark);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--navy-900);
    border-color: var(--slate-200);
}

.btn--outline:hover {
    background: var(--navy-900);
    color: var(--surface-0);
    border-color: var(--navy-900);
}

.section--dark .btn--outline {
    color: var(--surface-0);
    border-color: rgba(255, 255, 255, 0.25);
}

.section--dark .btn--outline:hover {
    background: var(--surface-0);
    color: var(--navy-900);
    border-color: var(--surface-0);
}

.btn--lg {
    padding: 1.05rem 1.875rem;
    font-size: 1rem;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.btn .arrow {
    transition: transform var(--duration) var(--ease-out);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* Logo
   ========================================================================== */
.logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: opacity var(--duration) var(--ease-out);
}

.logo:hover {
    opacity: 0.85;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.logo-img--lg {
    height: 44px;
}

/* On dark backgrounds use the inverted variant */
.section--dark .logo-img:not(.logo-img--keep),
.nav.scrolled .logo-img,
.footer .logo-img,
.hero .logo-img,
.cta .logo-img,
.page-header .logo-img,
.steps .logo-img {
    /* default file already rendered for light bg — switch via [data-theme] if needed */
}

@media (max-width: 480px) {
    .logo-img {
        height: 28px;
    }
}

/* Navigation
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-block: 1rem;
    transition: all var(--duration) var(--ease-out);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(15, 23, 41, 0.06);
    box-shadow: 0 4px 24px -12px rgba(15, 23, 41, 0.08);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-500);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
    color: var(--navy-900);
    background: rgba(15, 23, 41, 0.04);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--navy-900);
}

.nav__toggle:hover {
    background: rgba(15, 23, 41, 0.06);
}

@media (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        background: var(--surface-0);
        padding: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all var(--duration) var(--ease-out);
    }

    .nav__menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav__link {
        padding: 0.875rem 1rem;
    }

    .nav__toggle {
        display: inline-flex;
    }

    .nav__cta .btn--ghost {
        display: none;
    }
}

/* Hero
   ========================================================================== */
.hero {
    position: relative;
    padding-top: clamp(7rem, 14vw, 9rem);
    padding-bottom: clamp(4rem, 10vw, 7rem);
    background: var(--navy-900);
    color: var(--surface-0);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(245, 184, 22, 0.18), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(92, 184, 92, 0.15), transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(36, 48, 68, 0.4), transparent 60%);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 28px 28px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

@media (max-width: 968px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.95rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    color: var(--slate-200);
}

.hero__badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 12px var(--brand-green);
    animation: pulse 2s var(--ease-out) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

.hero h1 {
    color: var(--surface-0);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hero h1 .accent {
    background: linear-gradient(110deg, var(--brand-yellow), var(--brand-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero__lead {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--slate-300);
    margin-bottom: 2.25rem;
    max-width: 560px;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .hero__lead {
        margin-inline: auto;
    }
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2.75rem;
}

@media (max-width: 968px) {
    .hero__buttons {
        justify-content: center;
    }
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    align-items: center;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.hero__trust-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--surface-0);
    letter-spacing: -0.02em;
}

.hero__trust-label {
    font-size: 0.8125rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Device Visual */
.hero__visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 540px;
    margin-inline: auto;
    width: 100%;
}

.device-stage {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.device-glow {
    position: absolute;
    width: 80%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 22, 0.25), transparent 65%);
    filter: blur(40px);
    animation: glow-pulse 4s var(--ease-in-out) infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.device-rings {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.device-ring {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    aspect-ratio: 1;
}

.device-ring--1 { width: 60%; animation: rotate 30s linear infinite; }
.device-ring--2 { width: 80%; animation: rotate 45s linear infinite reverse; border-style: dashed; border-color: rgba(245, 184, 22, 0.25); }
.device-ring--3 { width: 100%; animation: rotate 60s linear infinite; border-color: rgba(92, 184, 92, 0.2); }

@keyframes rotate {
    to { transform: rotate(360deg); }
}

/* Real device photo in hero — transparent PNG floating in scene */
.device-photo {
    position: relative;
    z-index: 2;
    width: 78%;
    max-width: 460px;
    height: auto;
    transform: perspective(1100px) rotate(-4deg);
    transition: transform 0.6s var(--ease-out);
    filter:
        drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 60px rgba(245, 184, 22, 0.2));
    animation: device-bob 6s var(--ease-in-out) infinite;
}

@keyframes device-bob {
    0%, 100% { transform: perspective(1100px) rotate(-4deg) translateY(0); }
    50% { transform: perspective(1100px) rotate(-4deg) translateY(-8px); }
}

.hero__visual:hover .device-photo {
    transform: perspective(1100px) rotate(-2deg) scale(1.05);
    animation-play-state: paused;
}

@media (max-width: 968px) {
    .device-photo {
        max-width: 320px;
    }
}

.floating-tag {
    position: absolute;
    background: rgba(15, 23, 41, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    padding: 0.6rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--surface-0);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: float 5s var(--ease-in-out) infinite;
}

.floating-tag svg {
    width: 16px;
    height: 16px;
}

.floating-tag--1 {
    top: 14%;
    right: 4%;
    animation-delay: 0s;
}

.floating-tag--2 {
    bottom: 22%;
    left: 2%;
    animation-delay: 1s;
}

.floating-tag--3 {
    top: 50%;
    right: -2%;
    animation-delay: 2s;
}

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

.floating-tag .yellow { color: var(--brand-yellow); }
.floating-tag .green { color: var(--brand-green); }

/* Brand Strip
   ========================================================================== */
.brand-strip {
    padding-block: 3rem;
    background: var(--surface-1);
    border-bottom: 1px solid var(--slate-100);
}

.brand-strip__label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--slate-400);
    margin-bottom: 1.5rem;
}

.brand-strip__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}

.brand-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--slate-500);
    letter-spacing: -0.01em;
}

.brand-strip__item svg {
    width: 22px;
    height: 22px;
    color: var(--slate-400);
}

/* Problem Section (Legacy VPN)
   ========================================================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--surface-0);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all var(--duration) var(--ease-out);
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--danger-bg);
    color: var(--danger);
    display: grid;
    place-items: center;
}

.problem-icon svg {
    width: 22px;
    height: 22px;
}

.problem-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--navy-900);
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin: 0;
}

/* Features (Solution) Section
   ========================================================================== */
.features {
    background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-0) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.feature-card {
    background: var(--surface-0);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.12), rgba(245, 184, 22, 0.12));
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    color: var(--brand-green-dark);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.55;
    margin: 0;
}

/* How It Works
   ========================================================================== */
.steps {
    background: var(--navy-900);
    color: var(--surface-0);
    position: relative;
    overflow: hidden;
}

.steps::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
}

/* How It Works — diagram image */
.steps-diagram {
    margin-top: 3.5rem;
    background: var(--surface-0);
    border-radius: var(--radius-2xl);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.steps-diagram::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(245, 184, 22, 0.08), transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(92, 184, 92, 0.08), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.steps-diagram__img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    width: 100%;
    max-height: 620px;
    object-fit: contain;
}

/* Screen reader / SEO fallback list — visually hidden but accessible */
.steps-list-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    transition: all var(--duration) var(--ease-out);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 184, 22, 0.3);
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--brand-yellow);
    color: var(--navy-900);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-card h4 {
    color: var(--surface-0);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--slate-300);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

/* Product Showcase
   ========================================================================== */
.showcase {
    background: linear-gradient(180deg, var(--surface-0) 0%, var(--surface-1) 100%);
    overflow: hidden;
}

.showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

@media (max-width: 968px) {
    .showcase__grid {
        grid-template-columns: 1fr;
    }
}

.showcase__visual {
    position: relative;
}

.showcase__photo-wrap {
    position: relative;
    aspect-ratio: 1;
    max-width: 540px;
    margin-inline: auto;
    width: 100%;
}

.showcase__photo-wrap::before {
    content: "";
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, rgba(245, 184, 22, 0.18), transparent 60%);
    filter: blur(40px);
    z-index: 0;
}

.showcase__photo-wrap::after {
    content: "";
    position: absolute;
    inset: 8% 8% auto 8%;
    height: 80%;
    border: 1px dashed rgba(92, 184, 92, 0.4);
    border-radius: 50%;
    animation: rotate 40s linear infinite;
    z-index: 0;
}

.showcase__photo {
    position: relative;
    z-index: 1;
    width: 88%;
    height: auto;
    margin: 6% auto;
    transform: perspective(1100px) rotate(-3deg);
    transition: transform 0.6s var(--ease-out);
    filter:
        drop-shadow(0 30px 50px rgba(15, 23, 41, 0.18))
        drop-shadow(0 8px 16px rgba(15, 23, 41, 0.08));
    display: block;
}

.showcase__photo:hover {
    transform: perspective(1100px) rotate(0) scale(1.04);
}

.showcase__callout {
    position: absolute;
    z-index: 3;
    background: var(--surface-0);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-full);
    padding: 0.5rem 0.875rem 0.5rem 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy-800);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    animation: float 5s var(--ease-in-out) infinite;
}

.showcase__callout-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-yellow);
    box-shadow: 0 0 8px var(--brand-yellow);
    flex-shrink: 0;
}

.showcase__callout--1 {
    top: 14%;
    right: -2%;
    animation-delay: 0s;
}

.showcase__callout--1 .showcase__callout-dot {
    background: var(--brand-green);
    box-shadow: 0 0 8px var(--brand-green);
}

.showcase__callout--2 {
    top: 48%;
    left: -2%;
    animation-delay: 1.5s;
}

.showcase__callout--3 {
    bottom: 14%;
    right: 4%;
    animation-delay: 2.8s;
}

.showcase__callout--3 .showcase__callout-dot {
    background: var(--navy-900);
    box-shadow: 0 0 8px rgba(15, 23, 41, 0.4);
}

@media (max-width: 580px) {
    .showcase__callout {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem 0.4rem 0.4rem;
    }
    .showcase__callout--1 { right: 0; }
    .showcase__callout--2 { left: 0; }
    .showcase__callout--3 { right: 4%; }
}

.showcase__list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.showcase__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.showcase__list strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.showcase__list p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.5;
}

.showcase__check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-green));
    color: var(--surface-0);
    display: grid;
    place-items: center;
    margin-top: 2px;
}

.showcase__check svg {
    width: 14px;
    height: 14px;
}

/* Comparison Table
   ========================================================================== */
.comparison {
    background: var(--surface-1);
}

.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    background: var(--surface-0);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 600px;
}

.comparison-table thead th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    background: var(--surface-0);
    border-bottom: 2px solid var(--slate-100);
}

.comparison-table thead th.col-vpn {
    background: rgba(245, 184, 22, 0.08);
    color: var(--navy-900);
}

.comparison-table thead th.col-sk {
    background: rgba(92, 184, 92, 0.08);
    color: var(--navy-900);
    position: relative;
}

.comparison-table thead th.col-sk::after {
    content: "Recommended";
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--brand-green);
    color: var(--surface-0);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
}

.comparison-table tbody td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--slate-100);
    color: var(--slate-500);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(15, 23, 41, 0.015);
}

.comparison-table tbody td.cap {
    font-weight: 600;
    color: var(--navy-800);
    background: var(--surface-1);
}

.comparison-table tbody td.vpn {
    color: var(--slate-500);
}

.comparison-table tbody td.sk {
    color: var(--brand-green-dark);
    font-weight: 600;
}

.comparison-table tbody td.sk::before {
    content: "✓";
    margin-right: 0.5rem;
    color: var(--brand-green);
    font-weight: 800;
}

/* Outcomes Section
   ========================================================================== */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.outcome-card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--surface-0);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease-out);
}

.outcome-card:hover {
    border-color: var(--brand-yellow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.outcome-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--navy-900);
}

.outcome-icon svg {
    width: 30px;
    height: 30px;
}

.outcome-card h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--navy-900);
}

.outcome-card p {
    font-size: 0.875rem;
    color: var(--brand-green-dark);
    font-weight: 500;
    margin: 0;
}

/* Specs Section
   ========================================================================== */
.specs {
    background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-green) 100%);
    color: var(--surface-0);
    position: relative;
    overflow: hidden;
}

.specs::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.4;
}

.specs__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

@media (max-width: 968px) {
    .specs__inner {
        grid-template-columns: 1fr;
    }
}

.specs h2 {
    color: var(--surface-0);
    margin-bottom: 1.25rem;
}

.specs p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.specs__photo {
    display: block;
    margin: 1.75rem 0 2rem;
    width: 100%;
    max-width: 360px;
    height: auto;
    transform: perspective(900px) rotate(-3deg);
    transition: transform 0.5s var(--ease-out);
    filter:
        drop-shadow(0 22px 36px rgba(0, 0, 0, 0.35))
        drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.specs__photo:hover {
    transform: perspective(900px) rotate(0deg) scale(1.04);
}

.specs__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.spec-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.4rem;
}

.spec-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--surface-0);
    line-height: 1.3;
}

/* Compliance Section
   ========================================================================== */
.compliance {
    background: var(--surface-1);
}

.compliance__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

@media (max-width: 968px) {
    .compliance__inner {
        grid-template-columns: 1fr;
    }
}

.compliance-list {
    list-style: none;
    margin-top: 2rem;
}

.compliance-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding-block: 0.875rem;
    border-bottom: 1px dashed var(--slate-200);
    font-size: 0.95rem;
    color: var(--navy-700);
}

.compliance-list li:last-child {
    border-bottom: none;
}

.compliance-list .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--brand-yellow);
    color: var(--navy-900);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-top: 2px;
}

.compliance-list .check svg {
    width: 12px;
    height: 12px;
}

.compliance-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--surface-0);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.compliance-badge {
    background: var(--surface-1);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    text-align: center;
    border: 1.5px solid var(--slate-100);
    transition: all var(--duration) var(--ease-out);
}

.compliance-badge:hover {
    border-color: var(--brand-green);
    background: rgba(92, 184, 92, 0.04);
}

.compliance-badge__name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.compliance-badge__desc {
    font-size: 0.75rem;
    color: var(--slate-500);
}

/* CTA Section
   ========================================================================== */
.cta {
    padding-block: clamp(4rem, 8vw, 6rem);
    background: var(--navy-900);
    color: var(--surface-0);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(245, 184, 22, 0.2), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(92, 184, 92, 0.2), transparent 50%);
}

.cta__inner {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}

.cta h2 {
    color: var(--surface-0);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--slate-300);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
}

/* FAQ
   ========================================================================== */
.faq-list {
    max-width: 820px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--surface-0);
    border: 1.5px solid var(--slate-100);
    border-radius: var(--radius-lg);
    margin-bottom: 0.875rem;
    overflow: hidden;
    transition: all var(--duration) var(--ease-out);
}

.faq-item[open] {
    border-color: var(--brand-yellow);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background var(--duration) var(--ease-out);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(245, 184, 22, 0.04);
}

.faq-question::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(15, 23, 41, 0.06);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-900);
    transition: all var(--duration) var(--ease-out);
}

.faq-item[open] .faq-question::after {
    content: "−";
    background: var(--brand-yellow);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Forms
   ========================================================================== */
.form-section {
    padding-block: var(--section-padding);
    background: var(--surface-1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    max-width: 1120px;
    margin-inline: auto;
}

@media (max-width: 968px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: var(--navy-900);
    color: var(--surface-0);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 184, 22, 0.2), transparent 50%);
    pointer-events: none;
}

.contact-info-card > * {
    position: relative;
}

.contact-info-card h3 {
    color: var(--surface-0);
    margin-bottom: 0.875rem;
}

.contact-info-card .lead {
    color: var(--slate-300);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.contact-method-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(245, 184, 22, 0.15);
    color: var(--brand-yellow);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
}

.contact-method-icon svg {
    width: 20px;
    height: 20px;
}

.contact-method-label {
    font-size: 0.8125rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
}

.contact-method-value {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--surface-0);
    font-size: 0.95rem;
    word-break: break-word;
}

.contact-method-value:hover {
    color: var(--brand-yellow);
}

.form-card {
    background: var(--surface-0);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
}

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

@media (max-width: 580px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.field {
    margin-bottom: 1.25rem;
}

.field-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 0.5rem;
}

.field-label .required {
    color: var(--danger);
}

.field-input,
.field-textarea,
.field-select {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    color: var(--navy-800);
    background: var(--surface-1);
    border: 1.5px solid var(--slate-100);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
    font-family: inherit;
}

.field-input:focus,
.field-textarea:focus,
.field-select:focus {
    outline: none;
    border-color: var(--brand-yellow);
    background: var(--surface-0);
    box-shadow: 0 0 0 4px rgba(245, 184, 22, 0.12);
}

.field-textarea {
    resize: vertical;
    min-height: 120px;
}

.field-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2364748B'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px;
    padding-right: 2.5rem;
}

.field-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.field-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--brand-yellow);
}

.field-checkbox-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
    line-height: 1.5;
}

.field-checkbox-label a {
    color: var(--brand-green-dark);
    font-weight: 600;
    text-decoration: underline;
}

.form-feedback {
    display: none;
    background: rgba(92, 184, 92, 0.1);
    border: 1px solid var(--brand-green);
    color: var(--brand-green-dark);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    align-items: center;
    gap: 0.625rem;
}

.form-feedback.show {
    display: flex;
}

.form-feedback svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Page Header (for sub-pages)
   ========================================================================== */
.page-header {
    padding-top: clamp(7rem, 14vw, 9rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background: var(--navy-900);
    color: var(--surface-0);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 184, 22, 0.15), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(92, 184, 92, 0.12), transparent 50%);
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 28px 28px;
}

.page-header__inner {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}

.page-header h1 {
    color: var(--surface-0);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--slate-300);
    font-size: 1.125rem;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate-300);
    margin-bottom: 1.25rem;
}

.breadcrumb a {
    color: var(--brand-yellow);
    transition: opacity var(--duration) var(--ease-out);
}

.breadcrumb a:hover {
    opacity: 0.85;
}

.breadcrumb-sep {
    opacity: 0.5;
}

/* Article / Legal Pages
   ========================================================================== */
.article {
    max-width: 820px;
    margin-inline: auto;
}

.article h2 {
    font-size: 1.625rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-yellow);
    display: inline-block;
}

.article h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article p {
    color: var(--slate-500);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.article ul,
.article ol {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
    color: var(--slate-500);
    line-height: 1.75;
}

.article li {
    margin-bottom: 0.5rem;
}

.article strong {
    color: var(--navy-900);
    font-weight: 600;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1rem 1.25rem;
    background: var(--surface-1);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--slate-500);
}

.article-meta strong {
    color: var(--navy-800);
}

/* About Page
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--surface-0);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-100);
    transition: all var(--duration) var(--ease-out);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    color: var(--surface-0);
}

.value-icon--yellow { background: var(--brand-yellow); color: var(--navy-900); }
.value-icon--green { background: var(--brand-green); }
.value-icon--navy { background: var(--navy-900); }

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.6;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--surface-0);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--brand-green-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 500;
}

/* Footer
   ========================================================================== */
.footer {
    background: var(--navy-900);
    color: var(--slate-300);
    padding-block: 4rem 2rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer__brand .logo {
    color: var(--surface-0);
    margin-bottom: 1rem;
}

.footer__brand .logo__onnect {
    color: var(--surface-0);
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer__social {
    display: flex;
    gap: 0.625rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    color: var(--slate-300);
    transition: all var(--duration) var(--ease-out);
}

.footer__social a:hover {
    background: var(--brand-yellow);
    color: var(--navy-900);
    transform: translateY(-2px);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__col h4 {
    color: var(--surface-0);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list a {
    color: var(--slate-400);
    font-size: 0.9rem;
    transition: color var(--duration) var(--ease-out);
}

.footer__list a:hover {
    color: var(--brand-yellow);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--slate-400);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-legal a {
    color: var(--slate-400);
}

.footer-legal a:hover {
    color: var(--brand-yellow);
}

/* Animations & Reveal
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s var(--ease-out);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.divider {
    height: 1px;
    background: var(--slate-100);
    margin-block: 3rem;
}

/* Print
   ========================================================================== */
@media print {
    .nav,
    .footer,
    .cta,
    .hero__visual {
        display: none;
    }

    body {
        color: black;
        background: white;
    }
}
