@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Bebas+Neue&display=swap');

/* ═══════════════════════════════════════════════════════════
   OUTRUN / MIAMI VICE — RETRO SYNTHWAVE THEME
   IT Rise — style.css

   WCAG 2.2 Contrast audit:
   --text  (#fff0e8) on --bg-deep  (#0a0010)  → ~19:1  ✓ AAA
   --text  (#fff0e8) on --bg-mid   (#110018)  → ~17:1  ✓ AAA
   --orange (#ff6b1a) on --bg-deep            → ~6.2:1 ✓ AA
   --magenta (#ff2f9f) on --bg-deep           → ~5.1:1 ✓ AA  (bold)
   --yellow (#ffd93d) on --bg-deep            → ~12:1  ✓ AAA
   --text-soft (#e0b8c8) on --bg-deep         → ~8.4:1 ✓ AAA
   --text-muted (#a07888) on --bg-deep        → ~4.6:1 ✓ AA
   nav-cta: #000 on --orange                  → ~7.2:1 ✓ AAA
   btn-primary: #000 on --orange              → ~7.2:1 ✓ AAA
   --error (#ff6b9d) on --bg-mid              → ~5.4:1 ✓ AA
═══════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ── Deep night sky backgrounds ── */
    --bg-deep:       #0a0010;
    --bg-mid:        #110018;
    --bg-elevated:   #1a0025;
    --bg-card:       #130020;

    /* ── Outrun neon palette ── */
    --orange:        #ff6b1a;
    --orange-hover:  #ff8c47;
    --orange-glow:   rgba(255, 107, 26, 0.15);
    --orange-glow2:  rgba(255, 107, 26, 0.07);

    --magenta:       #ff2f9f;
    --magenta-hover: #ff5cba;
    --magenta-glow:  rgba(255, 47, 159, 0.15);

    --yellow:        #ffd93d;
    --yellow-glow:   rgba(255, 217, 61, 0.12);

    --purple-dark:   #2d0050;
    --purple-mid:    #6b00c8;
    --purple-light:  #a855f7;

    /* ── Typography ── */
    --text:          #fff0e8;
    --text-soft:     #e0b8c8;
    --text-muted:    #a07888;

    /* ── Borders ── */
    --border:        rgba(255, 107, 26, 0.25);
    --border-mag:    rgba(255, 47, 159, 0.22);
    --border-soft:   rgba(255, 255, 255, 0.07);

    /* ── Interaction ── */
    --focus-ring:    #ffd93d;
    --error:         #ff6b9d;

    /* Legacy aliases */
    --navy:          var(--bg-deep);
    --navy-mid:      var(--bg-mid);
    --navy-light:    var(--bg-elevated);
    --teal:          var(--orange);
    --teal-hover:    var(--orange-hover);
    --teal-glow:     var(--orange-glow);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg-deep);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   WCAG 2.4.1 — SKIP LINK
═══════════════════════════════════════════════════════════ */
.skip-link {
    position: absolute;
    top: -120%;
    left: 16px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--orange);
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-radius: 0 0 10px 10px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════════════════
   WCAG 2.4.7 / 2.4.11 — FOCUS RING
═══════════════════════════════════════════════════════════ */
:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
    border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* ═══════════════════════════════════════════════════════════
   WCAG 2.3.3 — REDUCED MOTION
═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   SCREEN-READER UTILITY
═══════════════════════════════════════════════════════════ */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════
   BACKGROUND — OUTRUN SUNSET + PERSPECTIVE GRID
═══════════════════════════════════════════════════════════ */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Sunset gradient orb */
.bg-canvas::before {
    content: '';
    position: absolute;
    top: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    height: 70vh;
    background: radial-gradient(ellipse at 50% 30%,
        rgba(255, 107, 26, 0.13) 0%,
        rgba(255, 47, 159, 0.10) 35%,
        rgba(107, 0, 200, 0.08) 60%,
        transparent 80%);
    animation: sunPulse 8s ease-in-out infinite alternate;
}

/* Horizon glow */
.bg-canvas::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 40vh;
    background: linear-gradient(to top,
        rgba(255, 47, 159, 0.06) 0%,
        rgba(255, 107, 26, 0.04) 30%,
        transparent 100%);
}

/* Outrun perspective grid — fades toward top */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 47, 159, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 0, 200, 0.05) 1px, transparent 1px);
    background-size: 80px 60px;
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
    mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

/* CRT scanline overlay */
.bg-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.06) 3px,
        rgba(0, 0, 0, 0.06) 4px
    );
}

@keyframes sunPulse {
    from { opacity: 0.9; transform: translateX(-50%) scaleY(1); }
    to   { opacity: 1;   transform: translateX(-50%) scaleY(1.08); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.25; }
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 76px;
    background: rgba(10, 0, 16, 0.93);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 47, 159, 0.15);
}

header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--magenta) 20%,
        var(--orange) 50%,
        var(--yellow) 70%,
        transparent 100%);
    opacity: 0.7;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    text-decoration: none;
    text-shadow:
        0 0 20px rgba(255, 107, 26, 0.4),
        0 0 40px rgba(255, 107, 26, 0.15);
}

.logo span {
    color: var(--orange);
    text-shadow:
        0 0 12px rgba(255, 107, 26, 0.7),
        0 0 30px rgba(255, 107, 26, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION — WCAG 2.5.5 (44px min target)
═══════════════════════════════════════════════════════════ */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-desktop a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.25s, background 0.25s;
}

.nav-desktop a:hover,
.nav-desktop a.active,
.nav-desktop a[aria-current="page"] {
    color: var(--orange);
    background: var(--orange-glow);
}

/* Nav CTA — #000 on orange: ~7.2:1 ✓ AAA */
.nav-cta {
    margin-left: 8px;
    background: var(--orange);
    color: #000 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 16px rgba(255, 107, 26, 0.45), 0 0 40px rgba(255, 107, 26, 0.15);
}

.nav-cta:hover {
    background: var(--orange-hover) !important;
    color: #000 !important;
    box-shadow: 0 0 24px rgba(255, 107, 26, 0.7), 0 0 60px rgba(255, 107, 26, 0.25) !important;
}

/* ═══════════════════════════════════════════════════════════
   HAMBURGER
═══════════════════════════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 107, 26, 0.3);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.25s, background 0.25s;
    flex-shrink: 0;
}

.hamburger:hover {
    border-color: var(--orange);
    background: var(--orange-glow);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0; width: 0;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
═══════════════════════════════════════════════════════════ */
.nav-mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0; bottom: 0;
    z-index: 99;
    background: rgba(10, 0, 16, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 32px 24px 48px;
    overflow-y: auto;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-mobile.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-mobile a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 14px 0;
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-soft);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 47, 159, 0.12);
    transition: color 0.2s, padding-left 0.2s;
    letter-spacing: -0.5px;
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
    color: var(--orange);
    padding-left: 8px;
}

.nav-mobile .nav-cta {
    margin-top: 24px;
    background: var(--orange);
    color: #000 !important;
    border-radius: 12px;
    padding: 16px 24px !important;
    min-height: 56px;
    border-bottom: none !important;
    justify-content: center;
    font-size: 18px !important;
    margin-left: 0;
    box-shadow: 0 0 24px rgba(255, 107, 26, 0.45);
}

.nav-mobile .nav-cta:hover {
    background: var(--orange-hover) !important;
    padding-left: 24px !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 100px 80px;
    overflow: hidden;
}

/* Outrun retro sun — semicircle */
.hero::before {
    content: '';
    position: absolute;
    bottom: 8%;
    left: 55%;
    width: 520px;
    height: 260px;
    border-radius: 260px 260px 0 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 217, 61, 0.18) 0%,
        rgba(255, 107, 26, 0.22) 40%,
        rgba(255, 47, 159, 0.16) 75%,
        transparent 100%
    );
    pointer-events: none;
    filter: blur(2px);
}

/* Horizontal stripes over the sun */
.hero::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: 55%;
    width: 520px;
    height: 260px;
    border-radius: 260px 260px 0 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 22px,
        rgba(10, 0, 16, 0.45) 22px,
        rgba(10, 0, 16, 0.45) 30px
    );
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 32px;
    background: rgba(255, 47, 159, 0.10);
    border: 1px solid rgba(255, 47, 159, 0.35);
    border-radius: 100px;
    color: var(--magenta);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: fadeUp 0.8s ease both;
}

.hero-tag .blink-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--magenta);
    flex-shrink: 0;
    animation: blink 2s infinite;
    box-shadow: 0 0 8px var(--magenta), 0 0 16px var(--magenta);
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    max-width: 820px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.1s ease both;
    text-shadow: 0 0 60px rgba(255, 107, 26, 0.18), 0 0 120px rgba(255, 47, 159, 0.10);
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--orange), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(255, 107, 26, 0.5));
}

.hero > p {
    font-size: 19px;
    color: var(--text-soft);
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
    margin-top: 60px;
    animation: fadeUp 0.8s 0.4s ease both;
}

.stat-row { display: flex; gap: 60px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -1px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 107, 26, 0.5);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS — WCAG 2.5.5 (min 44px)
═══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    min-height: 44px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

/* #000 on orange → ~7.2:1 ✓ AAA */
.btn-primary {
    background: var(--orange);
    color: #000;
    border-color: var(--orange);
    box-shadow: 0 0 16px rgba(255, 107, 26, 0.35);
}

.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 26, 0.5), 0 0 60px rgba(255, 107, 26, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--magenta);
    color: var(--magenta);
    background: var(--magenta-glow);
    box-shadow: 0 0 20px rgba(255, 47, 159, 0.2);
}

.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (sub-pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    z-index: 1;
    padding: 100px 100px 80px;
    border-bottom: 1px solid rgba(255, 47, 159, 0.12);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 100px; right: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--magenta), var(--orange), transparent);
    opacity: 0.4;
}

.page-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-top: 12px;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 107, 26, 0.12);
}

.page-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--orange), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(255, 107, 26, 0.4));
}

.page-hero > p {
    font-size: 18px;
    color: var(--text-soft);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT SECTIONS
═══════════════════════════════════════════════════════════ */
section.content {
    position: relative;
    z-index: 1;
    padding: 100px;
}

.section-header { margin-bottom: 64px; }

.section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    max-width: 600px;
}

.section-header p {
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 18px;
    max-width: 540px;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   CARD GRID
═══════════════════════════════════════════════════════════ */
.grid { display: grid; gap: 24px; list-style: none; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 47, 159, 0.12);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), var(--magenta), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.card:hover {
    border-color: rgba(255, 107, 26, 0.3);
    transform: translateY(-5px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 107, 26, 0.06);
}

.card:hover::before { opacity: 1; }

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(255, 107, 26, 0.08);
    border: 1px solid rgba(255, 107, 26, 0.22);
    border-radius: 14px;
    color: var(--orange);
    flex-shrink: 0;
}

.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.card p { color: var(--text-soft); font-size: 15px; line-height: 1.7; font-weight: 300; }

/* ═══════════════════════════════════════════════════════════
   OFFER CARDS
═══════════════════════════════════════════════════════════ */
.offer-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 47, 159, 0.12);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--magenta), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.offer-card:hover {
    border-color: rgba(255, 47, 159, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 30px rgba(255, 47, 159, 0.07);
}

.offer-card:hover::before { opacity: 1; }

.offer-card .card-icon {
    margin-bottom: 0;
    background: rgba(255, 47, 159, 0.07);
    border-color: rgba(255, 47, 159, 0.22);
    color: var(--magenta);
}

.offer-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); }
.offer-card p { color: var(--text-soft); font-size: 14px; line-height: 1.7; font-weight: 300; }

/* ═══════════════════════════════════════════════════════════
   DIVIDER — Outrun horizon stripe
═══════════════════════════════════════════════════════════ */
.divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--magenta) 25%,
        var(--orange) 50%,
        var(--yellow) 65%,
        var(--magenta) 80%,
        transparent 100%);
    opacity: 0.3;
    margin: 0 100px;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   CLIENTS STRIP
═══════════════════════════════════════════════════════════ */
.clients-section {
    position: relative;
    z-index: 1;
    padding: 80px 100px;
    text-align: center;
}

.clients-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.client-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 36px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 47, 159, 0.12);
    border-radius: 16px;
    opacity: 0.6;
    filter: grayscale(50%) brightness(0.85);
    transition: opacity 0.3s, filter 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.client-logo-wrap:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    border-color: rgba(255, 107, 26, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 26, 0.1);
}

.client-logo-wrap img { height: 52px; width: auto; object-fit: contain; display: block; }

/* ═══════════════════════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════════════════════ */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    list-style: none;
    padding: 0;
}

.steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, var(--orange), var(--magenta), var(--yellow));
    opacity: 0.3;
    pointer-events: none;
}

.step { padding: 0 24px; text-align: center; }

.step-num {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 26, 0.35);
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 16px rgba(255, 107, 26, 0.2), inset 0 0 20px rgba(255, 107, 26, 0.05);
}

.step h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
    position: relative;
    z-index: 1;
    margin: 0 100px 100px;
    padding: 72px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg,
        rgba(26, 0, 37, 0.97) 0%,
        rgba(19, 0, 32, 0.97) 50%,
        rgba(26, 0, 37, 0.97) 100%);
    border: 1px solid rgba(255, 107, 26, 0.25);
    box-shadow: 0 0 80px rgba(255, 107, 26, 0.07), 0 0 120px rgba(255, 47, 159, 0.05);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 360px; height: 360px;
    background: radial-gradient(circle,
        rgba(255, 107, 26, 0.14) 0%,
        rgba(255, 47, 159, 0.10) 45%,
        transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent, var(--orange) 30%, var(--yellow) 50%, var(--magenta) 70%, transparent);
    opacity: 0.5;
}

.cta-banner h2 {
    font-family: 'Syne', sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    max-width: 500px;
}

.cta-banner h2 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--orange), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(255, 107, 26, 0.4));
}

.btn-group { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   COMPETENCE LIST
═══════════════════════════════════════════════════════════ */
.competence-list { list-style: none; padding: 0; }

.competence-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 47, 159, 0.10);
}

.competence-item:first-child { padding-top: 0; }
.competence-item:last-child { border-bottom: none; }

.competence-num {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    min-width: 36px;
    margin-top: 4px;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(255, 107, 26, 0.35);
}

.competence-content h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.competence-content p { color: var(--text-soft); font-size: 16px; line-height: 1.7; font-weight: 300; }

/* ═══════════════════════════════════════════════════════════
   TAG BADGES
═══════════════════════════════════════════════════════════ */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; list-style: none; padding: 0; }

.tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 107, 26, 0.08);
    border: 1px solid rgba(255, 107, 26, 0.28);
    border-radius: 100px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SPLIT
═══════════════════════════════════════════════════════════ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.about-text h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -1px; margin: 12px 0 20px; color: var(--text); }
.about-text p { color: var(--text-soft); font-size: 17px; line-height: 1.8; font-weight: 300; margin-bottom: 16px; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 47, 159, 0.12);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), var(--magenta), transparent);
    opacity: 0.6;
}

.stat-card:hover { border-color: rgba(255, 107, 26, 0.28); box-shadow: 0 0 30px rgba(255, 107, 26, 0.07); }

.stat-card .big-num { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: var(--orange); letter-spacing: -2px; line-height: 1; text-shadow: 0 0 20px rgba(255, 107, 26, 0.4); }
.stat-card .big-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-heading { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 4px; color: var(--text); }
.contact-info-subtext { color: var(--text-soft); font-size: 15px; font-weight: 300; margin-bottom: 8px; }

.contact-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 47, 159, 0.12);
    border-radius: 16px;
    padding: 24px 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-item:hover { border-color: rgba(255, 107, 26, 0.28); box-shadow: 0 0 20px rgba(255, 107, 26, 0.05); }
.contact-item-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.contact-item-value { font-size: 19px; font-weight: 500; color: var(--text); }
.contact-item-value a { color: var(--text); text-decoration: none; }
.contact-item-value a:hover { color: var(--orange); text-decoration: underline; }
.contact-cta-item { background: rgba(255, 107, 26, 0.06); border-color: rgba(255, 107, 26, 0.22); }
.contact-cta-item .contact-item-label { margin-bottom: 14px; }

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM — WCAG 1.3.1, 3.3.1, 3.3.2
═══════════════════════════════════════════════════════════ */
.form-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 47, 159, 0.18);
    border-radius: 24px;
    padding: 48px;
}

.form-card h2 { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.form-desc { color: var(--text-soft); font-size: 15px; font-weight: 300; line-height: 1.7; margin-bottom: 28px; }
.required-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.required-note .req { color: var(--orange); font-weight: 700; }
.form-group { margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }

label { display: block; font-size: 14px; font-weight: 600; color: var(--text-soft); margin-bottom: 8px; letter-spacing: 0.02em; }
label .req { color: var(--orange); margin-left: 2px; }

input, textarea, select {
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 47, 159, 0.18);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--text);
    line-height: 1.5;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 1; }

input:focus, textarea:focus, select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.18), 0 0 12px rgba(255, 107, 26, 0.1);
}

textarea { height: 160px; resize: vertical; }

.input-error { border-color: var(--error) !important; box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.15) !important; }
.error-msg { display: none; color: var(--error); font-size: 13px; margin-top: 6px; }
.input-error ~ .error-msg { display: block; }

.form-success {
    display: none;
    padding: 14px 20px;
    margin-bottom: 16px;
    background: rgba(255, 107, 26, 0.08);
    border: 1px solid rgba(255, 107, 26, 0.28);
    border-radius: 12px;
    color: var(--orange);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
    position: relative;
    z-index: 1;
    padding: 60px 100px 40px;
    border-top: 1px solid rgba(255, 47, 159, 0.12);
}

footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%, var(--orange) 25%, var(--yellow) 50%, var(--magenta) 75%, transparent 100%);
    opacity: 0.5;
}

.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 260px; line-height: 1.7; }
.footer-links h4 { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { display: inline-block; padding: 4px 0; color: var(--text-muted); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--orange); text-decoration: underline; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255, 47, 159, 0.08); flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1200px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1100px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    header { padding: 0 32px; }
    .hero, .page-hero, section.content, .clients-section { padding-left: 48px; padding-right: 48px; }
    section.content { padding-top: 80px; padding-bottom: 80px; }
    .cta-banner { margin: 0 48px 80px; padding: 52px 48px; }
    .divider { margin: 0 48px; }
    footer { padding: 48px 48px 32px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    .steps::before { display: none; }
    .contact-grid, .about-split { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 860px (hamburger)
═══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    .nav-mobile { display: flex; }
    body.nav-open { overflow: hidden; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    header { padding: 0 20px; height: 64px; }
    .hero { padding: 60px 24px; min-height: auto; }
    .hero h1 { font-size: 38px; letter-spacing: -1px; }
    .hero > p { font-size: 16px; }
    .hero::before, .hero::after { display: none; }
    .stat-row { gap: 36px; }
    .page-hero { padding: 60px 24px 48px; }
    .page-hero::after { left: 24px; right: 24px; }
    section.content { padding: 60px 24px; }
    .clients-section { padding: 60px 24px; }
    .cta-banner { margin: 0 24px 60px; padding: 40px 28px; flex-direction: column; align-items: flex-start; }
    .cta-banner h2 { font-size: 26px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .competence-item { flex-direction: column; gap: 16px; }
    .form-card { padding: 32px 24px; }
    .divider { margin: 0 24px; }
    footer { padding: 40px 24px 32px; }
    .footer-inner { flex-direction: column; gap: 0; }
    .footer-brand { padding-bottom: 28px; border-bottom: 1px solid rgba(255, 47, 159, 0.10); margin-bottom: 28px; }
    .footer-brand p { max-width: 100%; }
    .footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 47, 159, 0.10); margin-bottom: 24px; }
    .footer-links h4 { font-size: 11px; margin-bottom: 12px; }
    .footer-links ul { gap: 8px; }
    .footer-links ul li a { font-size: 15px; padding: 5px 0; min-height: 36px; display: inline-flex; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .clients-logos { gap: 16px; }
    .client-logo-wrap { padding: 16px 20px; }
    .client-logo-wrap img { height: 40px; }
}