/* ============================================================
   COMPONENTS.CSS — All UI Components
   Arioun AI v2
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   CURSOR GLOW
   ────────────────────────────────────────────────────────── */
#cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: var(--z-toast);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}

/* ──────────────────────────────────────────────────────────
   NAVBAR
   ────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: 80px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3,2,8,0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(124,58,237,0.10);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(3,2,8,0.92);
  box-shadow: 0 1px 32px rgba(0,0,0,0.6);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.01em;
  padding: 6px 2px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-vivid);
  transition: width 0.25s var(--ease-out);
  border-radius: 1px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-1);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  margin-left: var(--sp-3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(3,2,8,0.97);
  backdrop-filter: blur(24px);
  border-bottom: var(--border);
  z-index: calc(var(--z-sticky) - 1);
  padding: var(--sp-5) 5%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transform: translateY(-110%);
  transition: transform 0.3s var(--ease-out);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(124,58,237,0.08);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--text-1); }

/* ──────────────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 13px 28px;
  border-radius: var(--r-lg);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    transform 0.18s var(--ease-out),
    box-shadow 0.25s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.06));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

/* Primary */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: var(--shadow-btn-h);
  transform: translateY(-2px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--accent-border);
}
.btn-ghost:hover {
  background: var(--accent-subtle);
  color: var(--text-1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Text */
.btn-text {
  background: transparent;
  color: var(--accent-vivid);
  padding-left: 0;
  padding-right: 0;
  gap: var(--sp-2);
}
.btn-text:hover { color: var(--accent-bright); }
.btn-text .btn-arrow {
  transition: transform 0.2s var(--ease-out);
}
.btn-text:hover .btn-arrow { transform: translateX(4px); }

/* Sizes */
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 38px; font-size: 1rem; border-radius: var(--r-xl); }

/* ──────────────────────────────────────────────────────────
   EYEBROW BADGE
   ────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-full);
  color: var(--accent-vivid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}

/* ──────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% var(--sp-9);
  position: relative;
  overflow: hidden;
}

/* Aurora glow blobs */
.aurora-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.aurora-blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.aurora-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  top: 100px;
  right: 5%;
}
.aurora-blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
  top: 150px;
  left: 5%;
}

/* Shader canvas */
#shader-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}
.hero-title {
  margin-bottom: var(--sp-5);
}
.hero-sub {
  max-width: 600px;
  margin: 0 auto var(--sp-6);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-2);
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.hero-social-proof {
  margin-top: var(--sp-7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-divider {
  width: 1px;
  height: 36px;
  background: var(--accent-border);
}

/* Scroll hint */
.scroll-hint-wrap {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-hint-line {
  width: 1.5px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--accent-border));
}
.scroll-hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-vivid);
}

/* ──────────────────────────────────────────────────────────
   SECTION HEADERS
   ────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.section-header.left {
  text-align: left;
  margin: 0;
}
.section-title { margin-bottom: var(--sp-4); }
.section-sub   { color: var(--text-2); }

/* ──────────────────────────────────────────────────────────
   CARDS (base)
   ────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-3);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  transition:
    transform  0.25s var(--ease-out),
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 0%, rgba(124,58,237,0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.40);
  background: var(--bg-4);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(124,58,237,0.15),
    0 8px 32px rgba(124,58,237,0.12);
}
.card:hover::after { opacity: 1; }

/* Glow sweep on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.06), transparent);
  transform: skewX(-15deg);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.card:hover::before {
  opacity: 1;
  animation: card-sweep 0.6s var(--ease-out) forwards;
}

/* Card icon */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
  font-size: 1.3rem;
}

/* Card number (process steps) */
.card-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-vivid);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  display: block;
}

/* ──────────────────────────────────────────────────────────
   BENTO CARDS
   ────────────────────────────────────────────────────────── */
.bento-card {
  background: var(--bg-3);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  transition:
    transform  0.25s var(--ease-out),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124,58,237,0.45);
  box-shadow:
    var(--shadow-lg),
    0 0 32px rgba(124,58,237,0.14);
}
.bento-card-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-vivid);
  margin-bottom: var(--sp-3);
  display: block;
}
.bento-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-1);
  margin-bottom: var(--sp-3);
}
.bento-card-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-2);
}

/* Featured bento card (larger, accented) */
.bento-card.featured {
  background: linear-gradient(135deg, var(--bg-4) 0%, rgba(124,58,237,0.08) 100%);
  border-color: rgba(124,58,237,0.35);
}
.bento-card.featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Bento card glow spot */
.bento-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Feature list in bento card */
.bento-list {
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.bento-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  color: var(--text-2);
}
.bento-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-vivid);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   STAT CELL
   ────────────────────────────────────────────────────────── */
.stat-cell {
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  position: relative;
}
.stat-cell-val {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-2);
  background: linear-gradient(135deg, var(--text-1), var(--accent-vivid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-cell-label {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ──────────────────────────────────────────────────────────
   BENEFIT CARDS (why section)
   ────────────────────────────────────────────────────────── */
.benefit-card {
  background: var(--bg-3);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.40);
  box-shadow: var(--shadow-md), 0 0 24px rgba(124,58,237,0.10);
}
.benefit-big-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-vivid), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--sp-3);
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: var(--sp-2);
}
.benefit-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   PROCESS / TIMELINE ITEMS
   ────────────────────────────────────────────────────────── */
.timeline-content {
  background: var(--bg-3);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.timeline-item.active .timeline-content {
  border-color: rgba(124,58,237,0.40);
  background: var(--bg-4);
}
.timeline-step-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-vivid);
  margin-bottom: var(--sp-2);
  display: block;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: var(--sp-2);
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────
   TECH MARQUEE
   ────────────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  padding: var(--sp-4) 0;
}
.marquee-track {
  display: flex;
  gap: var(--sp-5);
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--bg-3);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-full);
  padding: 8px 20px;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  flex-shrink: 0;
}
.marquee-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-vivid);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   ABOUT VISUAL / TEAM
   ────────────────────────────────────────────────────────── */
.about-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  border-radius: var(--r-xl);
  border: var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.15) 0%, transparent 70%);
}
.about-logo-large {
  position: relative;
  z-index: 1;
  width: 60%;
  opacity: 0.85;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}
.value-card {
  background: var(--bg-3);
  border: var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}
.value-icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
  display: block;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.value-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   CONTACT
   ────────────────────────────────────────────────────────── */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--text-1);
  font-weight: 500;
}

/* Contact form */
.contact-form {
  background: var(--bg-3);
  border: var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.form-control {
  background: var(--bg-2);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: var(--text-1);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.form-control::placeholder { color: var(--text-3); }
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-3);
  margin-top: var(--sp-2);
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 14px;
  background: var(--bg-2);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-size: 0.875rem;
  color: var(--text-2);
  user-select: none;
}
.checkbox-item:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--text-1);
}
.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(124,58,237,0.35);
  background: var(--bg-3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.checkbox-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid transparent;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  transition: border-color 0.15s ease;
}
.checkbox-item input[type="checkbox"]:checked ~ .checkbox-box {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox-item input[type="checkbox"]:checked ~ .checkbox-box::after {
  border-color: var(--white);
}
.checkbox-item input[type="checkbox"]:checked ~ span:last-child {
  color: var(--text-1);
}
.checkbox-item:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

/* Calendly embed */
.calendly-block {
  background: var(--bg-3);
  border: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-0);
  border-top: var(--border-subtle);
  padding: var(--sp-9) 5% var(--sp-6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: var(--border-subtle);
}
.footer-brand img {
  height: 120px;
  width: auto;
  margin-bottom: var(--sp-4);
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: var(--sp-4);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-link {
  font-size: 0.875rem;
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  text-align: left;
}
.footer-link:hover { color: var(--text-1); }
.footer-bottom {
  padding-top: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-4);
}
.footer-legal {
  display: flex;
  gap: var(--sp-5);
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-4);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-3); }

/* ──────────────────────────────────────────────────────────
   CTA SECTION
   ────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  position: relative;
  z-index: 1;
  background: var(--bg-3);
  border: 1px solid rgba(124,58,237,0.30);
  border-radius: var(--r-2xl);
  padding: var(--sp-9) var(--sp-7);
  max-width: 760px;
  margin: 0 auto;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 25%;
  right: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ──────────────────────────────────────────────────────────
   DIVIDER
   ────────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid rgba(124,58,237,0.10);
  margin: 0;
}

/* ──────────────────────────────────────────────────────────
   TAG / BADGE
   ────────────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-vivid);
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────────────────────
   FEATURE VISUAL PLACEHOLDER
   ────────────────────────────────────────────────────────── */
.feature-visual {
  position: relative;
  background: var(--bg-3);
  border: var(--border);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.12) 0%, transparent 65%);
}
.feature-visual-icon {
  position: relative;
  z-index: 1;
  font-size: 4rem;
  opacity: 0.4;
}

/* ──────────────────────────────────────────────────────────
   TOAST NOTIFICATIONS
   ────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: var(--sp-5);
  right: var(--sp-5);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  pointer-events: none;
}
.toast {
  background: var(--bg-4);
  border: var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-5);
  font-size: 0.875rem;
  color: var(--text-1);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  pointer-events: all;
  box-shadow: var(--shadow-lg);
  transform: translateX(110%);
  transition: transform 0.35s var(--ease-out), opacity 0.35s ease;
  opacity: 0;
  max-width: 360px;
}
.toast.show {
  transform: translateX(0);
  opacity: 1;
}
.toast-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE OVERRIDES
   ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-social-proof { gap: var(--sp-4); }
}

@media (max-width: 640px) {
  .navbar { height: 72px; }
  .nav-logo img { height: 100px; }

  .hero { padding: 100px 5% var(--sp-7); }
  .hero-sub { font-size: 1rem; }

  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .contact-form { padding: var(--sp-5); }

  .footer-top { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cta-box { padding: var(--sp-7) var(--sp-5); }
  .hero-social-proof { display: none; }

  .values-grid { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
