/* ═══════════════════════════════════════════════════
   STARSPOT CRM — Design System & Styles
   ═══════════════════════════════════════════════════ */

/* ─── Reset ────────────────────────────────────── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

/* ─── Design Tokens ────────────────────────────── */
:root {
  --primary: #FF7A59;
  --primary-hover: #E8694D;
  --primary-light: #FFF0EB;
  --primary-glow: rgba(255,122,89,0.12);

  --navy: #1B2A4A;
  --navy-light: #2D3748;
  --slate: #6B7C93;
  --slate-light: #94A3B8;

  --bg: #F7F5F0;
  --bg-alt: #FFFFFF;
  --surface: #FFFFFF;
  --border: #E8E4DE;

  --dark: #0F172A;
  --dark-surface: #1E293B;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --nav-h: 76px;
  --section-py: clamp(64px, 8vw, 120px);

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 20px;
  --r-full: 999px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-primary: 0 8px 32px rgba(255,122,89,0.25);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
}

/* ─── Base ─────────────────────────────────────── */
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--navy-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { max-width: 65ch; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #FF9A76 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
}

/* ─── Layout ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--dark);
  color: var(--slate-light);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section__header p {
  margin: 16px auto 0;
  color: var(--slate);
  font-size: 1.1rem;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 89, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(255, 122, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 89, 0); }
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  animation: pulseGlow 3s infinite;
}
.btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-primary);
  transform: translateY(-2px);
  animation: none; /* stop pulse on hover so float/shadow can take over */
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  padding: 8px 0;
  border-radius: 0;
}
.btn--ghost:hover { gap: 12px; }

.btn--white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }

/* ─── Navigation ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--duration) var(--ease);
}
.nav.scrolled {
  background: rgba(247, 245, 240, 0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  transform: scale(1.8);
  transform-origin: left center;
}

.nav__menu { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-light);
  border-radius: var(--r-sm);
  transition: all var(--duration) var(--ease);
}
.nav__link:hover,
.nav__link.active {
  color: var(--primary);
  background: var(--primary-glow);
}

.nav__item--dropdown > .nav__link::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--duration) var(--ease);
}
.nav__item--dropdown:hover > .nav__link::after {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration) var(--ease);
}
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-light);
  border-radius: var(--r-sm);
  transition: all var(--duration) var(--ease);
}
.nav__dropdown-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  top: -300px; right: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,42,74,0.04) 0%, transparent 70%);
  bottom: -200px; left: -100px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.hero__proof {
  font-size: 0.85rem;
  color: var(--slate-light);
  letter-spacing: 0.02em;
}

/* Page Header (inner pages) */
.page-header {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  top: -300px; right: -100px;
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header p {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 600px;
  margin: 16px auto 0;
}

/* ─── Logo Marquee ─────────────────────────────── */
.marquee {
  padding: 40px 0;
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  padding: 0 40px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
  white-space: nowrap;
  opacity: 0.45;
  transition: opacity var(--duration) var(--ease);
}
.marquee__item:hover { opacity: 1; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Service Cards ────────────────────────────── */
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }



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

.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  animation: floatIcon 3.5s ease-in-out infinite;
}
.service-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__title { font-size: 1.2rem; margin-bottom: 12px; }
.service-card__desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--duration) var(--ease);
}
.service-card__link:hover { gap: 10px; }

/* ─── Process Steps ────────────────────────────── */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--border);
}
.process__step { text-align: center; padding: 0 20px; position: relative; }
.process__number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-primary);
}
.process__title { font-size: 1.05rem; margin-bottom: 12px; }
.process__desc {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ─── Split Cards ──────────────────────────────── */
.split-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.split-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.split-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}
.split-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.split-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}
.split-card__title { font-size: 1.5rem; margin-bottom: 16px; }
.split-card__desc {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ─── Value Cards ──────────────────────────────── */
.value-card { text-align: center; padding: 40px 28px; }
.value-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.value-card__icon svg {
  width: 32px; height: 32px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card__title { font-size: 1.2rem; margin-bottom: 12px; }
.value-card__desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
  margin: 0 auto;
}

/* ─── CTA Banner ───────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,122,89,0.1) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p {
  color: var(--slate-light);
  font-size: 1.1rem;
  margin: 0 auto 32px;
}

/* ─── Feature Grid (service detail pages) ──────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px;
  transition: all var(--duration) var(--ease);
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-item__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-item__icon svg {
  width: 22px; height: 22px;
  stroke: var(--primary);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.feature-item h4 { margin-bottom: 8px; }
.feature-item p { font-size: 0.875rem; color: var(--slate); line-height: 1.6; }

/* Mini Process (service pages) */
.mini-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mini-step { text-align: center; }
.mini-step__number {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.mini-step h4 { margin-bottom: 8px; }
.mini-step p { font-size: 0.875rem; color: var(--slate); }

/* Related services strip */
.related-services { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.related-pill {
  padding: 10px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--duration) var(--ease);
}
.related-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ─── Hub Cards (B2B page) ─────────────────────── */
.hub-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  border-top: 4px solid var(--primary);
  transition: all var(--duration) var(--ease);
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.hub-card__title {
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hub-card__title .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.hub-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hub-card__list li {
  font-size: 0.875rem;
  color: var(--slate);
  padding-left: 20px;
  position: relative;
}
.hub-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

/* ─── Forms ────────────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: all var(--duration) var(--ease);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--primary-glow);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Coming Soon ──────────────────────────────── */
.coming-soon {
  text-align: center;
  padding: 120px 0;
}
.coming-soon__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
}
.coming-soon__icon svg {
  width: 36px; height: 36px;
  stroke: var(--primary);
  fill: none; stroke-width: 2;
}
.coming-soon h2 { margin-bottom: 16px; }
.coming-soon p { color: var(--slate); font-size: 1.1rem; margin: 0 auto; }

/* ─── Footer ───────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--slate-light);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer__brand { max-width: 320px; }
.footer__logo-img {
  max-height: 65px;
  width: auto;
  margin-bottom: 24px;
  display: block;
  transform: scale(1.8);
  transform-origin: left center;
}
.footer__desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-light);
  transition: all var(--duration) var(--ease);
}
.footer__social a:hover { background: var(--primary); color: #fff; }
.footer__social a svg { width: 18px; height: 18px; fill: currentColor; }

.footer__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer__links a {
  display: block;
  font-size: 0.875rem;
  padding: 6px 0;
  color: var(--slate-light);
  transition: color var(--duration) var(--ease);
}
.footer__links a:hover { color: var(--primary); }

.footer__bottom {
  border-top: 1px solid var(--dark-surface);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ─── Scroll Reveal ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ─── Mobile Menu Overlay ──────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  padding: calc(var(--nav-h) + 32px) 24px 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-overlay.open { transform: translateX(0); }
.mobile-overlay .nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.mobile-overlay .nav__link {
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-overlay .nav__dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 0 0 0 16px;
  min-width: auto;
  display: none;
}
.mobile-overlay .nav__item--dropdown.open .nav__dropdown { display: block; }
.mobile-overlay .nav__dropdown-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-overlay .nav__actions {
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.mobile-overlay .nav__actions .btn { width: 100%; }

/* ─── Contact Grid (Get Started page) ──────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process::before { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__menu,
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .grid-2, .grid-3, .feature-grid, .mini-process { grid-template-columns: 1fr; }
  .split-cards, .contact-grid { grid-template-columns: 1fr; }
  .split-card { padding: 32px 24px; }

  .hero { min-height: auto; padding: calc(var(--nav-h) + 40px) 0 60px; }
  .hero__title { font-size: clamp(2rem, 7vw, 3rem); }

  .page-header { padding: calc(var(--nav-h) + 40px) 0 40px; }
  .section__header { margin-bottom: 40px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .form-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .process { grid-template-columns: 1fr; }
}

/* ─── Cookie Consent Banner ──────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--dark);
  color: #fff;
  padding: 24px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  border: 1px solid var(--navy-light);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner .cookie-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--slate-light);
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0; left: 0; right: 0;
    max-width: 100%;
    border-radius: var(--r) var(--r) 0 0;
    border-left: none; border-right: none; border-bottom: none;
  }
}
