﻿/* ============================================================
   ConnectaPrivate Landing Page — Design System
   Font: Inter | Colors: Deep Navy + Gold
   ============================================================ */

/* ---- RESET & TOKENS ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-1:   #040f1e;
  --navy-2:   #071729;
  --navy-3:   #0c2340;
  --navy-4:   #112e54;
  --navy-5:   #1a4370;
  --gold:     #c9973a;
  --gold-lt:  #e8c47a;
  --gold-dim: rgba(201,151,58,.18);
  --text:     #e8f2ff;
  --muted:    #8daec8;
  --line:     rgba(201,151,58,.22);
  --white:    #ffffff;
  --max:      1180px;
  --r-sm:     10px;
  --r-md:     16px;
  --r-lg:     24px;
  --shadow:   0 24px 60px rgba(0,0,0,.55);
  --trans:    180ms ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--navy-1);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { line-height: 1.15; font-weight: 800; }
ul  { list-style: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: min(var(--max), 92vw);
  margin-inline: auto;
}

/* ---- UTILITIES ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0 clamp(1rem,3vw,2.4rem);
  height: 68px;
  background: rgba(4,15,30,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; }

.logo-nav {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201,151,58,.35));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.main-nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .01em;
  transition: color var(--trans);
}
.main-nav a:hover { color: var(--gold-lt); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.lang-select {
  appearance: none;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  color: var(--text);
  padding: .38rem .7rem;
  border-radius: var(--r-sm);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
}
.lang-select option { background: var(--navy-3); }

/* --- Buttons --- */
.btn-cta,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .55rem 1.15rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
}
.btn-cta {
  background: linear-gradient(135deg, #b8771a, #d9961c 55%, #c98720);
  color: var(--navy-1);
  border-color: rgba(255,210,90,.4);
  box-shadow: 0 6px 22px rgba(185,130,30,.35);
}
.btn-cta:hover   { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(185,130,30,.5); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-outline {
  background: transparent;
  color: var(--gold-lt);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold-dim); }
.btn-lg { padding: .75rem 1.6rem; font-size: 1rem; border-radius: var(--r-md); }
.btn-full { width: 100%; padding: .9rem; font-size: 1rem; border-radius: var(--r-md); }
.link-btn {
  background: none; border: 0; padding: 0;
  color: var(--muted); font-size: .8rem;
  text-decoration: underline; cursor: pointer;
}
.link-btn:hover { color: var(--gold-lt); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: 0; padding: 4px;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; inset: 68px 0 0 0;
  z-index: 99;
  background: rgba(4,15,30,.97);
  backdrop-filter: blur(20px);
  padding: 2rem 2rem 3rem;
  display: flex; flex-direction: column; gap: 1.6rem;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer nav  { display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-drawer nav a { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.mobile-drawer nav a:hover { color: var(--gold-lt); }
.mobile-actions { display: flex; flex-direction: column; gap: .7rem; }

.drawer-overlay {
  display: none; position: fixed; inset: 0; z-index: 98;
  background: rgba(0,0,0,.4);
}
.drawer-overlay.open { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(4,15,30,.6) 0%, rgba(4,15,30,.85) 60%, var(--navy-1) 100%),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
}

.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(201,151,58,.12), transparent),
    radial-gradient(ellipse 50% 60% at 10% 60%, rgba(26,67,112,.28), transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-block: 6rem 5rem;
}

.hero-copy { display: flex; flex-direction: column; gap: 1.4rem; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,151,58,.35);
  padding: .28rem .75rem;
  border-radius: 99px;
  width: fit-content;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  max-width: 18ch;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  max-width: 48ch;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: .3rem;
}

/* ---- Mock UI Window ---- */
.hero-ui { perspective: 1000px; }

.ui-window {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease;
}
.ui-window:hover { transform: rotateY(0deg) rotateX(0deg); }

.ui-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .9rem;
  background: var(--navy-2);
  border-bottom: 1px solid var(--line);
}
.ui-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ui-dot.r { background: #ff5f57; }
.ui-dot.y { background: #febc2e; }
.ui-dot.g { background: #28c840; }
.ui-bar-title { font-size: .72rem; color: var(--muted); margin-left: .3rem; }

.ui-layout { display: grid; grid-template-columns: 130px 1fr; min-height: 280px; }

.ui-sidebar {
  background: var(--navy-2);
  border-right: 1px solid var(--line);
  padding: .7rem .5rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.ui-nav-item {
  font-size: .72rem;
  padding: .38rem .6rem;
  border-radius: 7px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--trans), color var(--trans);
}
.ui-active { background: var(--navy-5); color: var(--gold-lt); font-weight: 700; }
.ui-badge {
  background: var(--gold);
  color: var(--navy-1);
  border-radius: 99px;
  padding: .05rem .42rem;
  font-size: .62rem;
  font-weight: 800;
}
.ui-sep { height: 1px; background: var(--line); margin: .4rem 0; }

.ui-main { padding: .75rem; display: flex; flex-direction: column; gap: .7rem; }
.ui-toprow { display: flex; align-items: center; justify-content: space-between; }
.ui-page-title { font-size: .78rem; font-weight: 800; color: var(--text); }
.ui-sla {
  font-size: .67rem; font-weight: 800;
  background: rgba(40,200,64,.15);
  color: #5de882;
  border: 1px solid rgba(40,200,64,.3);
  border-radius: 99px;
  padding: .1rem .5rem;
}

.ui-kpi-row { display: flex; gap: .5rem; }
.ui-kpi {
  flex: 1;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .45rem .5rem;
  display: flex; flex-direction: column; gap: .1rem;
}
.kpi-n { font-size: 1rem; font-weight: 800; color: var(--gold-lt); }
.kpi-l { font-size: .6rem; color: var(--muted); }

.ui-bars { display: flex; flex-direction: column; gap: .38rem; }
.ui-bar-row {
  display: grid;
  grid-template-columns: 70px 1fr 28px;
  align-items: center;
  gap: .4rem;
  font-size: .62rem;
  color: var(--muted);
}
.ui-prog {
  height: 5px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}
.ui-prog span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 99px;
}

.ui-feed { display: flex; flex-direction: column; gap: .3rem; }
.ui-feed-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .62rem;
  color: var(--muted);
}
.ui-dot-b, .ui-dot-g {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.ui-dot-b { background: #4a9eff; }
.ui-dot-g { background: var(--gold); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem 2.5rem;
  gap: .2rem;
}
.stat-n {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-l {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding: 6rem 0;
}
.section-alt {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-eye {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: .8rem;
}
.section-h {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--white);
  max-width: 24ch;
  margin-bottom: 3rem;
}
.section-h + .section-sub {
  margin-top: -2rem;
  margin-bottom: 2.4rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* ============================================================
   USE CASES
   ============================================================ */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.uc-card {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}
.uc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.55); border-color: var(--gold); }

.uc-photo {
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  flex-shrink: 0;
}
.uc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,23,41,.85) 100%);
}

.uc-body {
  padding: 1.2rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}

.uc-card h3 { font-size: .98rem; color: var(--white); font-weight: 700; }
.uc-card p  { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   FEATURES
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.feat-card {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform var(--trans), box-shadow var(--trans);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.feat-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,151,58,.2), rgba(201,151,58,.06));
  border: 1px solid rgba(201,151,58,.28);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.feat-icon svg { width: 26px; height: 26px; color: var(--gold-lt); }
.feat-card h3 { font-size: 1.1rem; color: var(--white); font-weight: 700; }
.feat-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   GALLERY — Screenshot Placeholders
   ============================================================ */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}
.screenshot-frame {
  margin: 0;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}
.screenshot-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0,0,0,.55);
}
.screenshot-chrome {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  background: var(--navy-2);
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.sc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.sc-url {
  font-size: .62rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: .3rem;
  flex: 1;
  min-width: 0;
}
.screenshot-placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.025) 0px,
    rgba(255,255,255,.025) 1px,
    transparent 1px,
    transparent 12px
  );
  border-bottom: 1px solid var(--line);
}
.sc-icon {
  width: 36px;
  height: 36px;
  color: rgba(201,151,58,.45);
}
.screenshot-placeholder span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.gallery-cta {
  text-align: center;
  margin-top: .4rem;
}
.btn-lg {
  font-size: 1rem;
  padding: .9rem 2.4rem;
}

/* ============================================================
   IMAGE SECTIONS (Unsplash)
   ============================================================ */

/* Each themed image row wraps hero-like over a photo */
.img-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.img-section .img-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.img-section .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,15,30,.92) 40%, rgba(4,15,30,.5) 100%);
}
.img-section .container { position: relative; z-index: 2; }
.img-section .section-h { margin-bottom: 1.2rem; }

.img-copy { max-width: 560px; }
.img-copy p { color: var(--muted); font-size: 1rem; line-height: 1.75; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.testi-card {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.testi-card p { color: var(--text); font-size: .95rem; line-height: 1.7; font-style: italic; }
.testi-card footer { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-5), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.testi-card cite { font-style: normal; font-size: .82rem; color: var(--muted); font-weight: 600; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-wrap { display: flex; justify-content: center; }
.pricing-card {
  width: min(480px, 100%);
  background: var(--navy-3);
  border: 2px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  box-shadow: 0 0 60px rgba(201,151,58,.15);
}
.pc-head { margin-bottom: 1.6rem; }
.pc-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-1);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .7rem;
  border-radius: 99px;
  margin-bottom: .9rem;
}
.pc-price { font-size: 2rem; font-weight: 900; color: var(--white); }
.pc-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.pc-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--muted); line-height: 1.55;
}
.pc-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ============================================================
   LEGAL BAR
   ============================================================ */
.legal-bar {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  text-align: center;
}
.lb-title { font-size: .92rem; font-weight: 700; color: var(--muted); margin-bottom: .4rem; }
.lb-text  { font-size: .82rem; color: rgba(141,174,200,.6); max-width: 66ch; margin-inline: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.footer-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.footer-logo  { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; opacity: .88; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.5rem;
}
.footer-nav a {
  font-size: .83rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .8rem;
  color: rgba(141,174,200,.55);
}

/* ============================================================
   COOKIE BANNER & DIALOG
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  z-index: 200;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.3rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
  max-width: 700px;
  margin-inline: auto;
}
.cookie-banner p { font-size: .88rem; color: var(--muted); margin-bottom: .9rem; line-height: 1.6; }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }

.cookie-dialog {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  width: min(520px, 94vw);
  padding: 2rem;
  background: var(--navy-3);
  color: var(--text);
  box-shadow: var(--shadow);
}
.cookie-dialog::backdrop { background: rgba(0,0,0,.6); }
.cookie-dialog h2 { font-size: 1.15rem; margin-bottom: .5rem; color: var(--white); }
.cookie-dialog p  { font-size: .88rem; color: var(--muted); margin-bottom: 1.2rem; }
.cookie-opt {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; color: var(--text);
  margin-bottom: .7rem; cursor: pointer;
}
.cookie-dialog-btns {
  margin-top: 1.4rem;
  display: flex; gap: .6rem; justify-content: flex-end;
}

/* ============================================================
   SECONDARY PAGES
   ============================================================ */
.secondary-page {
  width: min(var(--max), 92vw);
  margin: 2rem auto 4rem;
  padding: 2.5rem;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.secondary-page h1 { font-size: clamp(1.6rem,3vw,2.4rem); color: var(--white); margin-bottom: 1rem; }
.secondary-page p, .secondary-page li { color: var(--muted); line-height: 1.75; }
.secondary-page ul { padding-left: 1.2rem; list-style: disc; display: flex; flex-direction: column; gap: .45rem; }

/* ============================================================
   CAREERS — Job cards
   ============================================================ */
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-bottom: 3.5rem;
}
.job-card {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: transform var(--trans), box-shadow var(--trans);
}
.job-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.45); }
.job-dept {
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
}
.job-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.job-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.job-type {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  color: rgba(141,174,200,.6);
  padding-top: .85rem;
  border-top: 1px solid var(--line);
}
.job-type::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,151,58,.6);
  flex-shrink: 0;
}
.careers-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.careers-cta p {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.careers-cta a.cta-email {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-lt);
  border-bottom: 2px solid rgba(201,151,58,.4);
  padding-bottom: .1rem;
  transition: color var(--trans), border-color var(--trans);
}
.careers-cta a.cta-email:hover { color: var(--white); border-color: var(--white); }

/* ============================================================
   LEGAL PROSE — Privacy, Terms, Cookies
   ============================================================ */
.legal-prose {
  max-width: 800px;
  margin-inline: auto;
}
.legal-date {
  font-size: .8rem;
  color: rgba(141,174,200,.45);
  display: block;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-prose h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 3.2rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}
.legal-prose h3 {
  font-size: .96rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-top: 1.8rem;
  margin-bottom: .5rem;
}
.legal-prose p {
  font-size: .91rem;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: .85rem;
}
.legal-prose ul,
.legal-prose ol {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.legal-prose ul { list-style: disc; }
.legal-prose ol { list-style: decimal; }
.legal-prose li {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.72;
}
.legal-prose strong { color: var(--text); font-weight: 700; }
.legal-prose a { color: var(--gold-lt); }
.legal-prose a:hover { color: var(--white); }

.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .84rem;
  margin-bottom: 1.6rem;
  overflow-x: auto;
  display: block;
}
.lp-table th {
  text-align: left;
  padding: .65rem 1rem;
  background: var(--navy-3);
  color: var(--gold-lt);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.lp-table td {
  padding: .6rem 1rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(201,151,58,.07);
  vertical-align: top;
  line-height: 1.62;
}
.lp-table tr:last-child td { border-bottom: none; }

/* ============================================================
   SUB-PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-1) 100%);
  border-bottom: 1px solid var(--line);
  padding: 5.5rem 0 4.5rem;
  text-align: center;
}
.page-hero .section-eye { margin-bottom: 1rem; }
.page-hero-h {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 1.2rem;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.75;
}

/* ============================================================
   VIDEO TUTORIAL CARDS
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.video-card {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(0,0,0,.55); }
.video-thumb {
  aspect-ratio: 16 / 9;
  background: var(--navy-2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.02) 0px,
    rgba(255,255,255,.02) 1px,
    transparent 1px,
    transparent 14px
  );
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,151,58,.88);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  flex-shrink: 0;
}
.video-card:hover .video-play-btn {
  background: var(--gold-lt);
  transform: scale(1.1);
}
.video-play-btn svg {
  width: 22px;
  height: 22px;
  color: var(--navy-1);
  margin-left: 3px;
}
.video-num {
  position: absolute;
  top: .75rem;
  left: .9rem;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-lt);
  background: rgba(4,15,30,.78);
  padding: .2rem .55rem;
  border-radius: 99px;
  border: 1px solid rgba(201,151,58,.28);
}
.video-info {
  padding: 1.2rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.video-info h3 {
  font-size: .96rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.video-info p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
}
.video-coming {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(141,174,200,.5);
  padding-top: .75rem;
  border-top: 1px solid var(--line);
}
.video-coming::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,151,58,.5);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 4rem;
}
.contact-card {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.contact-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 24px; height: 24px;
  color: var(--gold-lt);
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.contact-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}
.contact-card a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold-lt);
  word-break: break-all;
  transition: color var(--trans);
}
.contact-card a:hover { color: var(--white); }

.contact-form-wrap {
  max-width: 700px;
  margin-inline: auto;
}
.contact-form-wrap > h2 {
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.form-control {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  font: inherit;
  font-size: .94rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
}
.form-control::placeholder { color: rgba(141,174,200,.35); }
.form-control:focus {
  border-color: rgba(201,151,58,.55);
  box-shadow: 0 0 0 3px rgba(201,151,58,.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 148px;
}
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.6rem;
}
.form-legal {
  font-size: .76rem;
  color: rgba(141,174,200,.55);
  line-height: 1.65;
}
.form-legal a { color: var(--gold-lt); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .main-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .site-header { grid-template-columns: auto 1fr auto; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 4rem 3rem; }
  .hero-copy h1 { max-width: 100%; }
  .hero-sub { max-width: 100%; }

  .uc-grid         { grid-template-columns: repeat(3, 1fr); }
  .feat-grid         { grid-template-columns: 1fr; }
  .screenshot-grid   { grid-template-columns: repeat(2, 1fr); }
  .testi-grid        { grid-template-columns: 1fr; }
  .video-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-grid         { grid-template-columns: 1fr; }
  .job-grid          { grid-template-columns: 1fr; }

  .stats-inner { gap: 0; }
  .stat { padding: .5rem 1.4rem; }
}

@media (max-width: 560px) {
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshot-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .stat { padding: .4rem 1rem; }
  .stat-div { height: 30px; }
  .footer-top { flex-direction: column; gap: 1.4rem; }
}
