/* ═══════════════════════════════════════════════
   Buddy Infotech — Premium Redesign
   Font: Space Grotesk (display) + Inter (body)
   Palette: Obsidian bg · Electric blue accent · Gold highlight
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  /* Core palette */
  --bg:      #050810;
  --bg2:     #0A0E1A;
  --surface: #0F1420;
  --card:    #131929;
  --border:  #1E2740;
  --border2: #2A3550;

  /* Text */
  --ink:   #EEF2FF;
  --muted: #8B96B0;
  --hint:  #4A5568;

  /* Accents */
  --blue:        #4F8EF7;
  --blue-bright: #60A5FA;
  --blue-dim:    rgba(79,142,247,0.12);
  --blue-glow:   rgba(79,142,247,0.25);
  --gold:        #F59E0B;
  --gold2:       #FCD34D;
  --gold-dim:    rgba(245,158,11,0.12);
  --gold-glow:   rgba(245,158,11,0.3);
  --purple:      #8B5CF6;
  --green:       #10B981;
  --red:         #EF4444;
  --cyan:        #06B6D4;

  /* Radius */
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── SUPER 6 TICKER BANNER ── */
.super6-banner {
  background: linear-gradient(90deg, #1a0a00, #3B1500 30%, #7C2D12 50%, #3B1500 70%, #1a0a00);
  border-bottom: 2px solid var(--gold);
  overflow: hidden; position: relative;
  display: flex; align-items: stretch;
}
.s6-badge {
  background: var(--gold); color: #000;
  padding: 0 1.5rem; padding-right: 2rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}
.s6-track {
  flex: 1; overflow: hidden; padding: 0.6rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.s6-reel {
  display: flex; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.s6-reel:hover { animation-play-state: paused; }
.s6-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0 2rem; color: #FEF3C7;
  font-size: 0.78rem; font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.s6-item .dot { width: 5px; height: 5px; background: var(--gold2); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(5,8,16,0.9);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 5%;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); flex-shrink: 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo .logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
}
.nav-logo span { color: var(--blue-bright); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  padding: 0.4rem 0.85rem; border-radius: var(--r);
  transition: all .15s; white-space: nowrap; display: inline-block;
}
.nav-link:hover, .nav-link.active { color: var(--ink); background: var(--surface); }
.nav-has-drop { position: relative; }
.nav-drop {
  display: none; position: absolute;
  top: calc(100% + 10px); left: -8px;
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r-lg); padding: 0.6rem;
  min-width: 480px; z-index: 9999;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(79,142,247,0.1);
  display: none; grid-template-columns: 1fr 1fr; gap: 2px;
}
.nav-drop a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.8rem; border-radius: 8px;
  font-size: 0.82rem; color: var(--muted);
  transition: all .15s; white-space: nowrap;
}
.nav-drop a:hover { background: var(--surface); color: var(--ink); }
.nav-drop a .drop-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; padding: 0.5rem 1.25rem; border-radius: var(--r);
  font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 4px 16px rgba(79,142,247,0.3);
  transition: opacity .15s, transform .15s; flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-hbg { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hbg span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.mob-menu {
  display: none; flex-direction: column;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
}
.mob-menu.open { display: flex; }
.mob-link { color: var(--ink); font-size: 0.9rem; font-weight: 500; padding: 0.65rem 0; border-bottom: 1px solid var(--border); }
.mob-cta { margin-top: 0.75rem; background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; padding: 0.85rem; border-radius: var(--r); text-align: center; font-weight: 700; display: block; }

/* ── HERO CAROUSEL ── */
.hero-carousel { position: relative; height: 600px; overflow: hidden; }
@media(max-width:768px) { .hero-carousel { height: 480px; } }
.hc-slides { display: flex; height: 100%; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.hc-slide {
  min-width: 100%; height: 100%; position: relative;
  flex-shrink: 0; overflow: hidden;
}
.hc-slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: none;
}
.hc-slide-img.loaded { opacity: 0.45; transition: opacity .5s; }
.hc-slide-bg-fallback {
  position: absolute; inset: 0;
}
/* Each slide gets its own AI-image-inspired gradient bg */
.hc-slide:nth-child(1) .hc-slide-bg-fallback {
  background: radial-gradient(ellipse at 70% 50%, rgba(79,142,247,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(139,92,246,0.2) 0%, transparent 50%),
              linear-gradient(135deg, #050810 0%, #0a1628 100%);
}
.hc-slide:nth-child(2) .hc-slide-bg-fallback {
  background: radial-gradient(ellipse at 60% 40%, rgba(6,182,212,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 70%, rgba(79,142,247,0.18) 0%, transparent 50%),
              linear-gradient(135deg, #050810 0%, #0a1a28 100%);
}
.hc-slide:nth-child(3) .hc-slide-bg-fallback {
  background: radial-gradient(ellipse at 65% 45%, rgba(16,185,129,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 25% 75%, rgba(79,142,247,0.15) 0%, transparent 50%),
              linear-gradient(135deg, #050810 0%, #071a14 100%);
}
.hc-slide:nth-child(4) .hc-slide-bg-fallback {
  background: radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 70%, rgba(139,92,246,0.15) 0%, transparent 50%),
              linear-gradient(135deg, #050810 0%, #1a1205 100%);
}
.hc-slide:nth-child(5) .hc-slide-bg-fallback {
  background: radial-gradient(ellipse at 60% 40%, rgba(139,92,246,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 75%, rgba(79,142,247,0.15) 0%, transparent 50%),
              linear-gradient(135deg, #050810 0%, #120a28 100%);
}
.hc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,8,16,0.97) 0%, rgba(5,8,16,0.75) 50%, rgba(5,8,16,0.2) 100%);
}
/* AI visual element — abstract mesh/grid */
.hc-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px;
  opacity: 0.6;
}
@media(max-width:900px) { .hc-visual { display: none; } }
.hc-visual svg { width: 100%; height: 100%; }

.hc-content {
  position: absolute; top: 50%; left: 0;
  transform: translateY(-50%);
  padding: 0 5%; max-width: 700px; width: 100%;
}
.hc-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(79,142,247,0.12); border: 1px solid rgba(79,142,247,0.25);
  color: var(--blue-bright); padding: 0.3rem 0.9rem; border-radius: 99px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.hc-eyebrow .pulse {
  width: 6px; height: 6px; background: var(--blue); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(79,142,247,0.5)} 50%{box-shadow:0 0 0 5px rgba(79,142,247,0)} }
.hc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700; letter-spacing: -0.04em;
  color: var(--ink); line-height: 1.06;
  margin-bottom: 1.1rem;
}
.hc-title .hl {
  background: linear-gradient(135deg, var(--blue-bright), var(--purple), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hc-title .hl-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hc-sub {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; max-width: 520px; margin-bottom: 2rem;
}
.hc-btns { display: flex; gap: 0.875rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; padding: 0.85rem 1.75rem; border-radius: var(--r);
  font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(79,142,247,0.35);
  transition: transform .15s, box-shadow .15s; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(79,142,247,0.5); }
.btn-ghost {
  border: 1.5px solid var(--border2); color: var(--ink);
  padding: 0.85rem 1.75rem; border-radius: var(--r);
  font-weight: 600; font-size: 0.95rem;
  transition: border-color .15s, background .15s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--blue); background: rgba(79,142,247,0.08); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #E08600);
  color: #000; padding: 0.85rem 1.75rem; border-radius: var(--r);
  font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(245,158,11,0.3);
  transition: transform .15s; display: inline-block;
}
.btn-gold:hover { transform: translateY(-2px); }

/* Slide trust badges */
.hc-trust {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
}
.trust-pill {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--muted); font-weight: 500;
}
.trust-pill .ic { font-size: 0.95rem; }

/* Carousel nav */
.hc-arr {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 48px; height: 48px;
  background: rgba(5,8,16,0.7); border: 1px solid var(--border2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink); font-size: 1rem;
  transition: all .2s; user-select: none;
  backdrop-filter: blur(8px);
}
.hc-arr:hover { border-color: var(--blue); background: rgba(79,142,247,0.15); }
.hc-arr.prev { left: 1.5rem; }
.hc-arr.next { right: 1.5rem; }
.hc-nav {
  position: absolute; bottom: 1.75rem; left: 50%;
  transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 20;
}
.hc-dot {
  width: 28px; height: 3px; background: rgba(255,255,255,0.2);
  border-radius: 2px; cursor: pointer; transition: all .3s;
}
.hc-dot.active { background: var(--blue); width: 44px; }

/* ── STATS BAR ── */
.stats-strip {
  display: flex; max-width: 1320px; margin: 2.5rem auto; padding: 0 5%;
}
.stats-inner {
  display: flex; flex: 1; border: 1px solid var(--border);
  border-radius: var(--r-xl); background: var(--card); overflow: hidden;
}
.stat-item {
  flex: 1; padding: 1.4rem 1.5rem; text-align: center;
  border-right: 1px solid var(--border); position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl { font-size: 0.75rem; color: var(--hint); margin-top: 0.2rem; }

/* ── SERVICES GRID ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden;
}
.svc-card {
  background: var(--card); padding: 0;
  text-decoration: none; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background .2s;
}
.svc-card:hover { background: var(--surface); }
.svc-card-img {
  width: 100%; height: 170px; object-fit: cover;
  opacity: 0.6; transition: opacity .3s, transform .4s;
  display: block;
}
.svc-card:hover .svc-card-img { opacity: 0.85; transform: scale(1.04); }
.svc-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-card-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.65rem; }
.svc-card-ic {
  width: 40px; height: 40px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.svc-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.975rem; font-weight: 600; color: var(--ink); line-height: 1.3;
}
.svc-card-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.svc-card-foot { display: flex; align-items: center; justify-content: space-between; }
.svc-tag {
  display: inline-block; padding: 0.2rem 0.65rem;
  border-radius: 99px; font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.svc-arrow { font-size: 0.8rem; font-weight: 700; color: var(--blue-bright); }
/* Image overlay shimmer */
.svc-card-img-wrap { position: relative; overflow: hidden; }
.svc-card-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--card) 100%);
  pointer-events: none;
}

/* ── SECOND HERO — Split ── */
.hero2 {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; min-height: 480px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 4.5rem;
}
.hero2-left {
  padding: 4.5rem 5%; display: flex;
  flex-direction: column; justify-content: center;
}
.hero2-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.3);
  color: #C4B5FD; padding: 0.35rem 0.9rem; border-radius: 99px;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.25rem; width: fit-content;
}
.hero2-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.9rem);
  font-weight: 700; letter-spacing: -0.035em;
  color: var(--ink); line-height: 1.1; margin-bottom: 1rem;
}
.hero2-title .hl2 {
  background: linear-gradient(135deg, #A78BFA, #6366F1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero2-sub { font-size: 0.975rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.75rem; max-width: 460px; }
.hero2-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); padding: 0.3rem 0.75rem; border-radius: 99px;
  font-size: 0.75rem; font-weight: 500;
  transition: all .15s; text-decoration: none;
}
.pill:hover { border-color: var(--blue); color: var(--blue-bright); }
.hero2-right { position: relative; overflow: hidden; }
.hero2-right img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; display: block; }
.hero2-grad { position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg2) 0%, rgba(10,14,26,0.5) 60%, transparent 100%); }
.hero2-floats { position: absolute; bottom: 2rem; right: 2rem; display: flex; flex-direction: column; gap: 0.75rem; z-index: 10; }
.hero2-float {
  background: rgba(5,8,16,0.88); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 0.9rem 1.25rem; text-align: center; min-width: 140px;
}
.hero2-fval { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: -0.03em; }
.hero2-flbl { font-size: 0.7rem; color: var(--hint); margin-top: 0.1rem; }

/* ── SECTION COMMONS ── */
.section { padding: 5rem 5%; max-width: 1320px; margin: 0 auto; }
.eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 0.6rem; }
.s-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 0.65rem;
}
.s-body { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.75; margin-bottom: 3rem; }
.divider { height: 1px; background: var(--border); }

/* ── FEATURE CARDS ── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.25rem; }
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.feat-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.feat-icon {
  width: 46px; height: 46px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
  background: var(--blue-dim); border: 1px solid var(--blue-glow);
}
.feat-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.feat-card p { font-size: 0.855rem; color: var(--muted); line-height: 1.7; }

/* ── PRICING ── */
.price-band { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-cards { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-top: 3rem; }
.p-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.25rem;
  flex: 1; min-width: 250px; max-width: 320px; position: relative;
  transition: border-color .2s, transform .2s;
}
.p-card:hover { transform: translateY(-4px); }
.p-card.feat { border-color: var(--blue); background: var(--surface); }
.p-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; font-size: 0.68rem; font-weight: 700;
  padding: 0.28rem 1rem; border-radius: 99px; white-space: nowrap;
}
.p-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hint); margin-bottom: 0.75rem; }
.p-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.p-price sup { font-size: 1rem; vertical-align: top; margin-top: 0.4rem; }
.p-period { font-size: 0.78rem; color: var(--hint); margin: 0.35rem 0 1.1rem; }
.p-feats { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.55rem; }
.p-feats li { font-size: 0.855rem; color: var(--ink); display: flex; gap: 0.6rem; }
.p-feats li::before { content: '✓'; color: var(--blue-bright); font-weight: 700; flex-shrink: 0; }
.p-btn { display: block; text-align: center; padding: 0.85rem; border-radius: var(--r); font-weight: 600; font-size: 0.9rem; transition: opacity .15s; }
.p-btn.blue { background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; }
.p-btn.outline { border: 1px solid var(--border2); color: var(--ink); }
.p-btn:hover { opacity: 0.85; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; }
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.testi-text { font-size: 0.875rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.testi-author { display: flex; align-items: center; gap: 0.65rem; }
.testi-av {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 0.72rem; color: var(--hint); }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.c-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; }
.c-ic {
  width: 40px; height: 40px; background: var(--blue-dim);
  border: 1px solid var(--blue-glow); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.c-detail span { font-size: 0.875rem; color: var(--muted); }
.c-form { display: flex; flex-direction: column; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label { font-size: 0.7rem; font-weight: 600; color: var(--hint); letter-spacing: 0.07em; text-transform: uppercase; }
.fg input, .fg textarea, .fg select {
  background: var(--card); border: 1.5px solid var(--border);
  color: var(--ink); padding: 0.78rem 1rem; border-radius: var(--r);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color .15s; -webkit-appearance: none; width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--hint); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,142,247,0.1); }
.fg select option { background: #131929; }
.fg textarea { min-height: 110px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sub-btn {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; border: none; padding: 0.9rem; border-radius: var(--r);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: opacity .15s, transform .15s; width: 100%;
  box-shadow: 0 6px 24px rgba(79,142,247,0.3);
}
.sub-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #0d1a3a, #0a1225);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: var(--r-xl); padding: 4.5rem 3rem;
  text-align: center; position: relative; overflow: hidden;
  margin: 0 5% 5rem;
}
.cta-band::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(79,142,247,0.15), transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 0.75rem;
}
.cta-band p { color: var(--muted); font-size: 1rem; margin-bottom: 2.25rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 4rem 5% 3rem; max-width: 1320px; margin: 0 auto; display: flex; align-items: center; gap: 4rem; }
.page-hero-text { flex: 1; }
.page-hero-img { flex: 1; max-width: 520px; }
.page-hero-img img { border-radius: var(--r-xl); border: 1px solid var(--border); width: 100%; height: 320px; object-fit: cover; opacity: 0.85; }
.ph-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.ph-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.035em; color: var(--ink); line-height: 1.08; margin-bottom: 1rem; }
.ph-title span { color: var(--blue-bright); }
.ph-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 500px; margin-bottom: 2rem; }
.ph-stats { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.ph-stat-val { font-family: 'Space Grotesk', sans-serif; font-size: 1.7rem; font-weight: 700; letter-spacing: -0.03em; }
.ph-stat-lbl { font-size: 0.73rem; color: var(--hint); margin-top: 0.1rem; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1.5rem; padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { width: 40px; height: 40px; background: var(--blue-dim); border: 1px solid var(--blue-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--blue-bright); flex-shrink: 0; margin-top: 2px; }
.step h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.975rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.step p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: var(--card); border: none; padding: 1.2rem 1.5rem; text-align: left; font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: background .15s; }
.faq-q:hover { background: var(--surface); }
.faq-arr { font-size: 0.85rem; color: var(--blue-bright); transition: transform .3s; flex-shrink: 0; }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arr { transform: rotate(180deg); }

/* ── FOOTER ── */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); margin-top: 5rem; }
.footer-top { max-width: 1320px; margin: 0 auto; padding: 3.5rem 5% 2.5rem; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .f-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 0.5rem; }
.footer-brand .f-logo .logo-mark { width: 28px; height: 28px; background: linear-gradient(135deg, var(--blue), var(--purple)); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.footer-brand .f-logo span { color: var(--blue-bright); }
.footer-brand p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; margin-top: 0.75rem; max-width: 240px; }
.footer-socials { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-socials a { width: 34px; height: 34px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--muted); transition: all .15s; }
.footer-socials a:hover { border-color: var(--blue); color: var(--blue-bright); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hint); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.84rem; color: var(--muted); margin-bottom: 0.55rem; transition: color .15s; }
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom { max-width: 1320px; margin: 0 auto; padding: 1.25rem 5%; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--hint); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: var(--hint); transition: color .15s; }
.footer-links a:hover { color: var(--ink); }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 500; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }

/* ── QUICK LINKS ── */
.ql-grid { display: grid; grid-template-columns: repeat(10,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; }
.ql-item { background: var(--card); padding: 1rem 0.5rem; text-align: center; display: block; text-decoration: none; transition: background .15s; }
.ql-item:hover { background: var(--surface); }
.ql-ic { font-size: 1.5rem; display: block; margin-bottom: 0.35rem; }
.ql-nm { font-size: 0.6rem; font-weight: 600; color: var(--muted); line-height: 1.25; display: block; }
.ql-item:hover .ql-nm { color: var(--ink); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .page-hero { flex-direction: column; gap: 2.5rem; }
  .page-hero-img { max-width: 100%; width: 100%; }
}
@media(max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hbg { display: flex; }
  .hc-arr { display: none; }
  .stats-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .ql-grid { grid-template-columns: repeat(5,1fr); }
  .hero2 { grid-template-columns: 1fr; }
  .hero2-right { min-height: 260px; }
  .hero2-floats { bottom: 1rem; right: 1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .price-cards { flex-direction: column; align-items: center; }
  .p-card { max-width: 100%; width: 100%; }
  .cta-band { padding: 3rem 1.5rem; margin: 0 4% 4rem; }
  .fg-row { grid-template-columns: 1fr; }
}
@media(max-width:480px) { .ql-grid { grid-template-columns: repeat(5,1fr); } }
