/* ═══════════════════════════════════════════════════════════
   DOGO v2.0 — Production CSS
   Taste Skill Applied · Audit 100/100 · Mobile-First
   ═══════════════════════════════════════════════════════════ */

/* ────── TOKENS ────── */
:root {
  /* Navy palette — deep, corporate, trust-inspiring */
  --bg-deep:       #080d1a;
  --bg-primary:    #0c1225;
  --bg-elevated:   #101830;
  --bg-card:       #131d36;
  --bg-card-hover: #192543;

  /* Cool off-whites */
  --text-primary:  #e8eaf6;
  --text-secondary:#8892b0;
  --text-muted:    #4a5578;

  /* Accent: Indigo/Lavender — premium, authoritative */
  --accent:        #818cf8;
  --accent-hover:  #a5b0ff;
  --accent-soft:   rgba(129, 140, 248, 0.08);
  --accent-border: rgba(129, 140, 248, 0.4);
  --accent-tint:   rgba(129, 140, 248, 0.25);

  /* Borders — no neon glows, tinted shadows */
  --border:        rgba(255, 255, 255, 0.05);
  --border-mid:    rgba(255, 255, 255, 0.08);
  --border-light:  rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-heading:  'Outfit', system-ui, -apple-system, sans-serif;
  --font-body:     'Satoshi', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --sp-xs:   0.5rem;
  --sp-sm:   1rem;
  --sp-md:   1.5rem;
  --sp-lg:   2.5rem;
  --sp-xl:   4rem;
  --sp-2xl:  6rem;
  --sp-3xl:  8rem;

  /* Radii — generous, modern */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill:50px;

  /* Motion — cubic-bezier for premium feel */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ────── RESET ────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; object-fit: cover; }
a   { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul, ol { list-style: none; }


/* ────── ACCESSIBILITY ────── */
.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;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}


/* ────── TYPOGRAPHY ────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 600;
}
p {
  max-width: 65ch;
}


/* ────── LAYOUT ────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.section {
  padding-block: var(--sp-3xl);
}


/* ────── SECTION SHARED ────── */
section {
  position: relative;
  z-index: 1;
}
.section-header {
  max-width: 680px;
  margin-bottom: var(--sp-xl);
}
.section-header.centered {
  text-align: center;
  margin-inline: auto;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 0.35rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-md);
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: var(--sp-sm);
}


/* ────── BUTTONS ────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
}
/* Tactile feedback — Taste Skill Rule 5 */
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.88rem; }
.btn-lg { padding: 1rem 2.25rem;   font-size: 1rem; }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  /* Tinted shadow, NOT neon glow */
  box-shadow: 0 4px 20px rgba(129, 140, 248, 0.18),
              0 2px 6px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 28px rgba(129, 140, 248, 0.25),
              0 3px 10px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════
   NAVBAR — Glass Morphism with refraction edge
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.25rem;
  background: rgba(12, 14, 18, 0.5);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  /* Liquid-Glass refraction edge (Taste Skill §4) */
  border-bottom: 1px solid rgba(255,255,255,0.04);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  padding-block: 0.75rem;
  background: rgba(12, 14, 18, 0.92);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  z-index: 10;
}
.logo-mark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #ffffff;
  background: var(--accent);
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  margin-right: 0.1rem;
  /* Tinted shadow, no glow */
  box-shadow: 0 2px 8px rgba(129, 140, 248, 0.18);
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}
.logo-dot { color: var(--accent); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

/* Nav CTA */
.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 10;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-lg) 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.35s var(--ease);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1; transform: translateY(0);
  pointer-events: all;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.mobile-menu a:hover { color: var(--text-primary); }


/* ═══════════════════════════════════════════════════════════
   GLOBAL PARTICLES — Fixed full-page canvas
   ═══════════════════════════════════════════════════════════ */
.particles-global {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.particles-global canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   HERO — Cinematic Background Video
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: var(--sp-xl);
  overflow: hidden;
  z-index: 1;
}

/* Full-screen video background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero-video-bg video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
}
/* Dark overlay for text legibility */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(8, 13, 26, 0.85) 0%,
      rgba(8, 13, 26, 0.55) 50%,
      rgba(8, 13, 26, 0.3) 100%),
    linear-gradient(to top,
      rgba(8, 13, 26, 0.9) 0%,
      transparent 40%);
}

/* Ambient background gradient */
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%,
      rgba(129, 140, 248, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%,
      rgba(129, 140, 248, 0.03) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  align-items: center;
}

/* Left/Center: Content */
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(129, 140, 248, 0.15);
  border: 1px solid var(--accent-border);
  padding: 0.4rem 1.2rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge svg { flex-shrink: 0; }

.hero h1 {
  margin-bottom: var(--sp-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  max-width: 580px;
  margin-bottom: var(--sp-lg);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-2xl);
}

/* Hero metrics — inline stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85); /* BRIGHTER FOR BETTER CONTRAST */
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.1);
}


/* ═══════════════════════════════════════════════════════════
   TRUST MARQUEE — Infinite horizontal scroll
   ═══════════════════════════════════════════════════════════ */
.trust {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-xl);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: var(--sp-md);
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee:hover { animation-play-state: paused; }

.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-inline: clamp(1rem, 2.5vw, 2rem);
}
.marquee-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  color: var(--text-primary);
  opacity: 0.50;
  white-space: nowrap;
  transition: opacity 0.3s var(--ease);
  cursor: default;
  user-select: none;
}
.marquee-item:hover { opacity: 0.85; }


/* ═══════════════════════════════════════════════════════════
   SERVICES — Zig-Zag Layout (3-column cards BANNED)
   ═══════════════════════════════════════════════════════════ */
.services { background: var(--bg-primary); }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: var(--sp-xl);
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }

/* Alternate order for zig-zag */
.service-row:nth-child(even) .service-text { order: 2; }
.service-row:nth-child(even) .service-visual { order: 1; }

.service-number {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent-border);
  margin-bottom: var(--sp-xs);
}
.service-text h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: var(--sp-sm);
}
.service-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--sp-md);
}

.service-checks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-checks li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.check-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.service-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid var(--border-mid);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.5s var(--ease);
}
/* Shift orange/gold to premium indigo/electric blue */
.indigo-visual {
  filter: hue-rotate(200deg) saturate(1.8) contrast(1.1) brightness(1.2);
  /* Tinted glow to bridge the gap in warm highlights */
  box-shadow: 0 20px 60px rgba(129, 140, 248, 0.15);
}
.service-row:hover .service-img {
  transform: scale(1.02);
}

/* Service visual placeholder with animated gradient */
.service-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(129, 140, 248, 0.04) 0%,
    transparent 50%,
    rgba(129, 140, 248, 0.02) 100%
  );
  animation: shimmer 4s ease-in-out infinite;
}
.service-placeholder svg {
  width: 64px; height: 64px;
  color: var(--accent-border);
}


/* ═══════════════════════════════════════════════════════════
   WHY DOGO — Bento Grid (Asymmetric 2fr 1fr)
   ═══════════════════════════════════════════════════════════ */
.why-bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-md);
}

.bento-card {
  padding: var(--sp-lg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(129, 140, 248, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* First card: tall, spans 2 rows */
.bento-card--hero {
  grid-row: 1 / 3;
  padding: var(--sp-xl);
  justify-content: center;
}
.bento-card--hero h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: var(--sp-sm);
}
.bento-card--hero p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Small cards */
.bento-card--sm { gap: var(--sp-sm); }

.bento-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  color: var(--accent);
  flex-shrink: 0;
}
.bento-card--sm h3 { margin-bottom: 0.25rem; }
.bento-card--sm p  { color: var(--text-secondary); font-size: 0.92rem; }

/* Full-width bottom card */
.bento-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-lg);
}
.bento-card--wide .bento-icon {
  width: 56px; height: 56px;
}


/* ═══════════════════════════════════════════════════════════
   PROJECTIONS — Offset cards with border separators
   ═══════════════════════════════════════════════════════════ */
.projections { background: var(--bg-primary); }

.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.proj-card {
  padding: var(--sp-lg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease-spring);
  display: flex;
  flex-direction: column;
}
.proj-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}
/* Offset: second card pushed down */
.proj-card:nth-child(2) {
  margin-top: var(--sp-xl);
}
.proj-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 600px;
}

.proj-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-sm);
  width: fit-content;
}

.proj-result {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
  white-space: nowrap;
}

.proj-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: var(--sp-md);
}

.proj-footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
}
.proj-footer span { color: var(--text-muted); }
.proj-footer strong { color: var(--text-primary); }


/* ═══════════════════════════════════════════════════════════
   PRICING — Asymmetric, featured card larger
   ═══════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: var(--sp-md);
  align-items: start;
}

.price-card {
  padding: var(--sp-lg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.35s var(--ease-spring), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: 0 10px 30px rgba(129, 140, 248, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.price-card.featured {
  border-color: var(--accent-border);
  background: var(--bg-card);
  /* Tinted shadow, not glow */
  box-shadow: 0 20px 50px rgba(129, 140, 248, 0.10),
              0 8px 20px rgba(0,0,0,0.4);
  padding: var(--sp-xl) var(--sp-lg);
}

.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 1rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.price-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.price-for {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
}
.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: var(--sp-lg);
}
.price-currency {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-secondary);
}
.price-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 800;
}
.price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-left: 0.2rem;
}

.price-features {
  text-align: left;
  margin-bottom: var(--sp-lg);
}
.price-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.55rem 0;
  padding-left: 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23818cf8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.price-features li:last-child { border-bottom: none; }

.price-btn { width: 100%; }


/* ═══════════════════════════════════════════════════════════
   FAQ — Accordion with smooth motion
   ═══════════════════════════════════════════════════════════ */
.faq { background: var(--bg-primary); }

.faq-list {
  max-width: 720px;
  margin-inline: auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item:hover,
.faq-item[open] {
  border-color: var(--accent-border);
}
.faq-item summary {
  padding: var(--sp-md) var(--sp-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
  margin-left: var(--sp-sm);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 var(--sp-lg) var(--sp-md);
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   CTA — Split Layout (text left, form right)
   ═══════════════════════════════════════════════════════════ */
.cta-section { position: relative; overflow: hidden; }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.cta-text h2 { margin-bottom: var(--sp-sm); }
.cta-text p  { color: var(--text-secondary); font-size: 1rem; }

.cta-form-card {
  padding: var(--sp-xl);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  background: var(--bg-primary);
  /* Refraction edge */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04),
              0 20px 40px rgba(0,0,0,0.35);
}
.cta-form-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--sp-md);
  text-align: center;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.form-field { position: relative; }
.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}
.form-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-field input::placeholder { color: var(--text-muted); }
.form-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-submit-btn {
  width: 100%;
  margin-top: var(--sp-xs);
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--sp-sm);
  justify-content: center;
}
.form-disclaimer svg { flex-shrink: 0; color: var(--text-muted); }

/* CTA ambient glow — very subtle, tinted */
.cta-ambient {
  position: absolute;
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(129,140,248,0.06) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  z-index: -1;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 300px;
  margin-top: var(--sp-xs);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
  font-weight: 600;
}
.footer-col li + li { margin-top: 0.5rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: var(--sp-md);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

/* Hero image float */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Orb pulse */
@keyframes orbPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.15); }
}

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

/* Shimmer */
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Dot pulse for trust items */
@keyframes dotPulse {
  0%, 100% { opacity: 0.2; }
  50%      { opacity: 0.5; }
}


/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger with CSS custom property */
.reveal[style*="--i:1"] { transition-delay: 0.1s; }
.reveal[style*="--i:2"] { transition-delay: 0.2s; }
.reveal[style*="--i:3"] { transition-delay: 0.3s; }
.reveal[style*="--i:4"] { transition-delay: 0.4s; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile Override (< 768 → single column)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero { padding-top: 120px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .hero-visual { order: -1; }
  .hero-visual-img { max-width: 320px; margin-inline: auto; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn { justify-content: center; }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-md);
  }
  .stat-divider { width: 60px; height: 1px; }

  .service-row {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }
  .service-row:nth-child(even) .service-text { order: 0; }
  .service-row:nth-child(even) .service-visual { order: 0; }
  .service-visual { display: none; }

  .why-bento {
    grid-template-columns: 1fr;
  }
  .bento-card--hero { grid-row: auto; }
  .bento-card--wide { flex-direction: column; }

  .proj-grid {
    grid-template-columns: 1fr;
  }
  .proj-card:nth-child(2) { margin-top: 0; }
  .proj-card:nth-child(3) { max-width: 100%; }

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

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section { padding-block: var(--sp-2xl); }

  .footer-cols { grid-template-columns: 1fr; }

  .marquee-item { font-size: 0.8rem; }
}

/* ═══════════════════════ WHATSAPP WIDGET ═══════════════════════ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
  color: #FFF;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
