/* ============================================================
   LINKPRODUCTION — PREMIUM RE-ARCHITECTURE
   Design System: Cyber-Elegant / Futuristic Luxury
   Vibe: "Apple meets High-End Cinema Production"
   ============================================================ */

/* 1. Design Tokens & CSS Variables */
:root {
    /* Core Palette */
    --bg:             #050505;
    --bg-surface:     #08080f;
    --bg-elevated:    #0f0f1a;

    /* Brand Colors */
    --primary:        #00a8ff;
    --primary-dim:    rgba(0, 168, 255, 0.10);
    --primary-glow:   rgba(0, 168, 255, 0.28);
    --accent:         #7c3aed;
    --accent-glow:    rgba(124, 58, 237, 0.20);
    --live-red:       #ff4d4d;

    /* Text Hierarchy */
    --text-primary:   #ffffff;
    --text-secondary: #9aa8bc;
    --text-muted:     #3d4a5c;

    /* Glassmorphism System */
    --glass-bg:           rgba(255, 255, 255, 0.028);
    --glass-bg-hover:     rgba(255, 255, 255, 0.055);
    --glass-border:       rgba(255, 255, 255, 0.072);
    --glass-border-hover: rgba(0, 168, 255, 0.38);

    /* Spacing & Shape */
    --section-v: 140px;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
}

/* 2. Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.72;
    overflow-x: hidden;
    font-size: 1.02rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dot grid ambient background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.038) 1px, transparent 0);
    background-size: 38px 38px;
    pointer-events: none;
    z-index: 0;
}

/* Ambient blue glow — top right */
body::after {
    content: '';
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.055) 0%, transparent 68%);
    top: -250px;
    right: -250px;
    pointer-events: none;
    z-index: 0;
}

/* 3. Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* 4. Layout Utilities */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 52px;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-align: center;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 580px;
    margin: 0 auto 80px;
    line-height: 1.8;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100% !important;
    padding: 15px 60px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}
.logo:hover .logo-img { opacity: 0.80; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin-left: auto;
}

.nav-links li a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.93rem;
    letter-spacing: 0.01em;
    transition: color 0.28s ease;
}
.nav-links li a:hover { color: var(--text-primary); }

.lang-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 600;
}
.lang-divider { color: var(--text-muted); }
.lang-btn { color: var(--text-muted); transition: color 0.28s; }
.lang-btn.active, .lang-btn:hover { color: var(--primary); }

.btn-cta {
    background: var(--primary) !important;
    color: #000 !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.02em !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}
.btn-cta:hover {
    box-shadow: 0 0 28px var(--primary-glow) !important;
    transform: translateY(-2px) !important;
    color: #000 !important;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-nav-toggle .bar {
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: 0.3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.52) 0%,
        rgba(5, 5, 5, 0.72) 55%,
        rgba(5, 5, 5, 0.97) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 0 24px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(0, 168, 255, 0.08);
    border: 1px solid rgba(0, 168, 255, 0.22);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Legacy badge support */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0, 168, 255, 0.08);
    border: 1px solid rgba(0, 168, 255, 0.22);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    margin-bottom: 32px;
}

.pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--live-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.hero h1 {
    font-size: clamp(2.8rem, 5.8vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.06;
    margin-bottom: 28px;
    background: linear-gradient(160deg, #ffffff 0%, rgba(255,255,255,0.72) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--primary) 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #000;
    padding: 16px 34px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.015em;
    transition: all 0.32s ease;
    border: none;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}
.btn-primary:hover {
    box-shadow: 0 0 44px var(--primary-glow), 0 8px 24px rgba(0,0,0,0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    color: var(--text-primary);
    padding: 16px 34px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.98rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.32s ease;
    cursor: pointer;
}
.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--glass-bg-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    z-index: 2;
    animation: scrollHint 2.8s ease-in-out infinite;
}

.scroll-hint-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    padding: 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

/* Greek homepage: three trust items — use three equal columns on desktop */
.trust-bar-grid:has(> .trust-item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 42px 24px;
    border-right: 1px solid var(--glass-border);
    transition: background 0.3s ease;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--glass-bg); }

.trust-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.04em;
    max-width: 140px;
}

/* ============================================================
   SERVICES BENTO GRID
   ============================================================ */
.services {
    padding: var(--section-v) 0;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 18px;
}

/* Bento spatial assignments */
.bento-cell-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento-cell-2 { grid-column: 3 / 5; grid-row: 1 / 2; }
.bento-cell-3 { grid-column: 3 / 4; grid-row: 2 / 3; }
.bento-cell-4 { grid-column: 4 / 5; grid-row: 2 / 3; }
.bento-cell-5 { grid-column: 1 / 3; grid-row: 3 / 4; }
.bento-cell-6 { grid-column: 3 / 5; grid-row: 3 / 4; }

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    overflow: hidden;
    position: relative;
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card:hover {
    border-color: var(--glass-border-hover);
    background: var(--glass-bg-hover);
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 48px var(--primary-dim);
}

.bento-card-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 26px;
    display: block;
    border: 1px solid var(--glass-border);
}

.bento-cell-1 .bento-card-img { height: 260px; }
.bento-cell-2 .bento-card-img { height: 200px; }
.bento-cell-3 .bento-card-img,
.bento-cell-4 .bento-card-img { height: 140px; }
.bento-cell-5 .bento-card-img,
.bento-cell-6 .bento-card-img { height: 190px; }

.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-dim);
    border: 1px solid rgba(0, 168, 255, 0.18);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.bento-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 11px;
    color: var(--text-primary);
}
.bento-cell-1 h3 { font-size: 1.8rem; }
.bento-cell-2 h3 { font-size: 1.5rem; }

.bento-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.72;
}

.spec-list {
    list-style: none;
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-list li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.4px;
}

.spec-list li .spec-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
   THE PRODUCTION JOURNEY
   ============================================================ */
.journey {
    padding: var(--section-v) 0;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

/* Ambient accent glow */
.journey::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 68%);
    pointer-events: none;
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

/* Horizontal connector line */
.journey-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    opacity: 0.22;
    z-index: 0;
}

.journey-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.journey-step:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35), 0 0 40px var(--primary-dim);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-dim);
    border: 2px solid rgba(0, 168, 255, 0.45);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 0 18px var(--primary-dim);
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin: 0 auto 18px;
    display: block;
}

.journey-step h3 {
    font-size: 1.12rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.journey-step p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================================================
   SERVICE SPOTLIGHTS
   ============================================================ */
.spotlight {
    padding: var(--section-v) 0;
}

.spotlight + .spotlight {
    padding-top: 0;
}

.spotlight-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.spotlight-inner.reverse {
    direction: rtl;
}
.spotlight-inner.reverse > * {
    direction: ltr;
}

.spotlight-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.spotlight-media img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
}

.spotlight-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, var(--primary-dim) 0%, transparent 55%);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.spotlight-content .section-label { text-align: left; }
.spotlight-content .section-title {
    text-align: left;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.spotlight-content p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.82;
    margin-bottom: 22px;
}

.feature-list {
    list-style: none;
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: var(--primary-dim);
    border: 1px solid rgba(0, 168, 255, 0.35);
    border-radius: 50%;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-check svg {
    width: 10px;
    height: 10px;
    color: var(--primary);
}

/* ============================================================
   TARGET MARKETS
   ============================================================ */
.markets {
    padding: var(--section-v) 0;
    background: var(--bg-surface);
}

.markets-header {
    text-align: center;
    margin-bottom: 64px;
}

.markets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.market-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.market-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-7px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.38), 0 0 48px var(--primary-dim);
}

/* Top accent bar */
.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.market-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-dim);
    border: 1px solid rgba(0, 168, 255, 0.22);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--primary);
}
.market-icon svg { width: 26px; height: 26px; }

.market-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.market-card > p {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.78;
    margin-bottom: 26px;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
}

.market-tag {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    padding: 5px 13px;
    border-radius: 50px;
    letter-spacing: 0.4px;
}

.market-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.02em;
    transition: gap 0.3s ease;
}
.market-cta:hover { gap: 12px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    padding: var(--section-v) 0;
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.about-text .section-label { text-align: left; }
.about-text .section-title { text-align: left; font-size: clamp(1.9rem, 3.2vw, 2.8rem); }

.about-text p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    margin-bottom: 22px;
    line-height: 1.82;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: 0 48px 96px rgba(0, 0, 0, 0.52);
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations {
    padding: var(--section-v) 0;
    background: var(--bg-surface);
}

.locations-header {
    text-align: center;
    margin-bottom: 64px;
}

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.loc-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
}
.loc-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.loc-img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    display: block;
}

.loc-info { padding: 32px 36px; }

.loc-info h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.loc-info p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    line-height: 1.6;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    padding: var(--section-v) 0;
}

.contact-flex {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.18;
}

.contact-info p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.82;
    margin-bottom: 32px;
}

.contact-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.contact-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.perk-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--primary);
}

.careers-note {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.careers-note h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 700;
}

.careers-note p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Contact Form */
.design-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 44px;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.design-form input,
.design-form textarea,
.design-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 17px 20px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    transition: all 0.3s ease;
    outline: none;
}

.design-form input::placeholder,
.design-form textarea::placeholder {
    color: var(--text-muted);
}

.design-form input:focus,
.design-form textarea:focus {
    border-color: var(--primary);
    background: rgba(0, 168, 255, 0.04);
    box-shadow: 0 0 0 3px var(--primary-dim);
}

.design-form textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 18px 42px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.96rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.32s ease;
    align-self: flex-start;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-submit:hover {
    box-shadow: 0 0 44px var(--primary-glow), 0 8px 24px rgba(0,0,0,0.4);
    transform: translateY(-2px) scale(1.015);
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    padding: 56px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-surface);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo-img {
    height: 34px;
    width: auto;
    opacity: 0.75;
    transition: opacity 0.3s;
}
.footer-logo-img:hover { opacity: 1; }

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.social-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-icon {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.social-links a:hover .social-icon {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Stats legacy support (for stats-count.js) */
.stats { display: none; }
.stat-icon { display: none; }

/* ============================================================
   RESPONSIVE — order: 1100 → 992 → 768
   ============================================================ */

/* ─── ≤1100px — tablet layout, spotlight single column ─────────────────── */
@media (max-width: 1100px) {

    :root { --section-v: 110px; }
    .container { padding: 0 36px; }
    .nav-container { padding: 14px 36px; }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento-cell-1 { grid-column: 1 / 3; grid-row: auto; }
    .bento-cell-2 { grid-column: 1 / 2; grid-row: auto; }
    .bento-cell-3 { grid-column: 2 / 3; grid-row: auto; }
    .bento-cell-4 { grid-column: 1 / 2; grid-row: auto; }
    .bento-cell-5 { grid-column: 2 / 3; grid-row: auto; }
    .bento-cell-6 { grid-column: 1 / 3; grid-row: auto; }

    .bento-cell-1 .bento-card-img { height: 220px; }

    .journey-steps { grid-template-columns: 1fr 1fr; gap: 18px; }
    .journey-steps::before { display: none; }

    .trust-bar-grid { grid-template-columns: 1fr 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid var(--glass-border); }
    .trust-item:nth-child(odd) { border-right: 1px solid var(--glass-border); }
    .trust-item:nth-child(3),
    .trust-item:nth-child(4) { border-bottom: none; }

    /* Exactly three trust items: one row, three columns */
    .trust-bar-grid:has(> .trust-item:nth-child(3):last-child) {
        grid-template-columns: repeat(3, 1fr);
    }
    .trust-bar-grid:has(> .trust-item:nth-child(3):last-child) .trust-item {
        border-bottom: none;
        border-right: 1px solid var(--glass-border);
    }
    .trust-bar-grid:has(> .trust-item:nth-child(3):last-child) .trust-item:last-child {
        border-right: none;
    }

    .spotlight-inner { grid-template-columns: 1fr; gap: 52px; }
    .spotlight-inner.reverse { direction: ltr; }
    .spotlight-media img { height: 380px; }
    .spotlight-content .section-title { text-align: center; }
    .spotlight-content .section-label { display: block; text-align: center; }
    .feature-list { max-width: 520px; margin-left: auto; margin-right: auto; }

    .markets-grid { grid-template-columns: 1fr; }
    .about-flex { grid-template-columns: 1fr; gap: 52px; }
    .about-text .section-title { text-align: center; }
    .about-text .section-label { text-align: center; display: block; }
    .about-text p { text-align: center; }
    .loc-grid { grid-template-columns: 1fr; }
    .contact-flex { grid-template-columns: 1fr; gap: 60px; }
}

/* ─── ≤992px — burger + fullscreen nav overlay ──────────────────────────── */
@media (max-width: 992px) {

    .mobile-nav-toggle {
        display: flex;
        position: relative;
        z-index: 1003;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100vh;
        height: 100vh;
        max-height: none;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 1002;
        list-style: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links li a {
        font-size: 1.35rem;
        color: var(--text-primary);
        font-weight: 600;
    }

    .nav-links li a:hover {
        color: var(--primary);
    }

    .nav-links .btn-cta {
        margin-top: 12px;
        padding: 14px 32px !important;
        font-size: 1rem !important;
    }
}

/* ─── ≤768px — mobile sizing & spacing ─────────────────────────────────── */
@media (max-width: 768px) {

    :root { --section-v: 90px; }
    .container { padding: 0 22px; }
    .nav-container { padding: 13px 22px; }

    .hero h1 { font-size: 2.2rem; letter-spacing: -0.025em; }
    .hero p { font-size: 0.98rem; margin-bottom: 36px; }
    .hero-eyebrow { font-size: 0.62rem; padding: 6px 12px; letter-spacing: 1.4px; }
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary {
        width: 100%;
        max-width: none;
        justify-content: center;
    }

    .trust-bar-grid { grid-template-columns: 1fr 1fr; }
    .trust-item {
        padding: 24px 14px;
        border-right: none !important;
        border-bottom: 1px solid var(--glass-border) !important;
    }
    .trust-item:nth-child(odd) { border-right: 1px solid var(--glass-border) !important; }
    .trust-item:nth-child(3),
    .trust-item:nth-child(4) { border-bottom: none !important; }

    /* Exactly three trust items: single column stack */
    .trust-bar-grid:has(> .trust-item:nth-child(3):last-child) {
        grid-template-columns: 1fr;
    }
    .trust-bar-grid:has(> .trust-item:nth-child(3):last-child) .trust-item {
        border-right: none !important;
    }
    .trust-bar-grid:has(> .trust-item:nth-child(3):last-child) .trust-item:not(:last-child) {
        border-bottom: 1px solid var(--glass-border) !important;
    }
    .trust-bar-grid:has(> .trust-item:nth-child(3):last-child) .trust-item:last-child {
        border-bottom: none !important;
    }

    .trust-number { font-size: 2rem; }
    .trust-label { font-size: 0.78rem; }

    .bento-grid { grid-template-columns: 1fr; gap: 14px; }
    .bento-cell-1, .bento-cell-2, .bento-cell-3,
    .bento-cell-4, .bento-cell-5, .bento-cell-6 { grid-column: 1; grid-row: auto; }
    .bento-card { padding: 24px; }
    .bento-cell-1 .bento-card-img,
    .bento-cell-2 .bento-card-img { height: 200px; }
    .bento-cell-3 .bento-card-img,
    .bento-cell-4 .bento-card-img,
    .bento-cell-5 .bento-card-img,
    .bento-cell-6 .bento-card-img { height: 160px; }
    .bento-cell-1 h3 { font-size: 1.4rem; }

    .journey-steps { grid-template-columns: 1fr; gap: 14px; }
    .journey-steps::before { display: none; }
    .journey-step { padding: 28px 22px; }

    .spotlight-media img { height: 240px; }
    .spotlight-content .btn-primary { width: 100%; justify-content: center; }
    .market-card { padding: 32px 26px; }

    .section-title { letter-spacing: -0.025em; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 52px; }

    .form-row { grid-template-columns: 1fr; }
    .design-form { padding: 28px 22px; }
    .btn-submit {
        width: 100%;
        align-self: stretch;
        text-align: center;
    }

    .footer-inner { flex-direction: column; text-align: center; gap: 18px; }
    .footer-copy { font-size: 0.78rem; }

    .scroll-hint { display: none; }
}
