/* ============================================================
   CriouSites — Landing Page
   LIGHT theme — Indigo / Royal Blue (brand) on white
   ============================================================ */

:root {
  /* Backgrounds */
  --bg: #ffffff;
  --bg-2: #f5f6fc;          /* light indigo-tinted section */
  --bg-3: #eef0fa;
  --surface: #ffffff;
  --surface-2: #f7f8fd;
  --border: rgba(28, 26, 74, 0.10);
  --border-strong: rgba(28, 26, 74, 0.18);

  /* Brand — pulled from the CriouSites logo (royal indigo) */
  --indigo: #2a1fb0;        /* deep brand */
  --indigo-600: #3a2fd4;
  --violet: #5b4ef2;        /* bright accent */
  --blue: #3b6ef5;          /* secondary blue */
  --indigo-soft: rgba(58, 47, 212, 0.10);
  --violet-soft: rgba(91, 78, 242, 0.10);

  /* Text */
  --white: #ffffff;
  --ink: #14152b;           /* near-black navy */
  --text: #1c1e35;
  --muted: #565b73;
  --muted-2: #8a8fa6;

  /* Gradients */
  --grad-brand: linear-gradient(120deg, var(--violet), var(--indigo));
  --grad-tri: linear-gradient(120deg, var(--blue), var(--violet) 50%, var(--indigo));
  --grad-text: linear-gradient(120deg, var(--indigo) 0%, var(--violet) 55%, var(--blue));

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 56px);
  --radius: 18px;
  --radius-lg: 26px;

  /* Shadows — soft indigo tint */
  --shadow-sm: 0 2px 10px rgba(28, 26, 74, 0.06);
  --shadow-md: 0 14px 40px rgba(28, 26, 74, 0.10);
  --shadow-lg: 0 30px 70px rgba(28, 26, 74, 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

/* Ambient atmosphere fixed behind everything (subtle on light) */
.atmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.atmos .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.atmos .g1 { width: 620px; height: 620px; top: -200px; left: -140px; background: radial-gradient(circle, rgba(91,78,242,0.20), transparent 65%); }
.atmos .g2 { width: 680px; height: 680px; top: 32%; right: -240px; background: radial-gradient(circle, rgba(59,110,245,0.16), transparent 65%); }
.atmos .g3 { width: 520px; height: 520px; bottom: -180px; left: 28%; background: radial-gradient(circle, rgba(42,31,176,0.10), transparent 65%); }
.atmos .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(28,26,74,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,26,74,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 25%, transparent 78%);
}

/* Cursor-follow spotlight */
.spotlight {
  position: fixed;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,78,242,0.10), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .4s;
}

main, header, footer { position: relative; z-index: 2; }

/* ---------- Shared layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
section { position: relative; }
.section-pad { padding-block: clamp(80px, 12vw, 150px); }
.tint { background: var(--bg-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: var(--surface);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet); box-shadow: 0 0 8px rgba(91,78,242,0.6);
}

.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 22px;
  color: var(--ink);
}
.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 620px;
  margin-top: 18px;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head { margin-bottom: clamp(44px, 6vw, 72px); }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 500; font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--violet), var(--indigo));
  box-shadow: 0 10px 28px rgba(58,47,212,0.28);
  font-weight: 600;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(58,47,212,0.40); }
.btn-ghost {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--indigo); color: var(--indigo); }
.btn-wa {
  color: #fff;
  background: linear-gradient(120deg, #25d366, #11b14e);
  box-shadow: 0 10px 28px rgba(37,211,102,0.30);
  font-weight: 600;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.42); }
.btn-lg { padding: 17px 34px; font-size: 17px; }

/* ---------- Glass / card base ---------- */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background .4s, border-color .4s, box-shadow .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(28,26,74,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { height: 38px; width: auto; }
.brand .brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  letter-spacing: 0.01em; color: var(--ink);
}
.brand .brand-name b { color: var(--indigo); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 15px; font-weight: 500;
  padding: 9px 15px; border-radius: 100px;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-2); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 12px; width: 46px; height: 46px; cursor: pointer;
  color: var(--ink); align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gut);
  transform: translateX(100%); transition: transform .45s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--ink); text-decoration: none;
  font-family: var(--font-display); font-size: 28px; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 150px; padding-bottom: 90px; overflow: hidden; background: linear-gradient(180deg, #f7f8fe 0%, var(--bg) 70%); }
#hero-particles { position: absolute; inset: 0; z-index: 0; opacity: 0.9; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px); align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm); font-size: 13.5px; color: var(--muted);
}
.hero-badge .pill {
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.05em; color: #fff;
  background: linear-gradient(120deg, var(--violet), var(--indigo));
  padding: 4px 11px; border-radius: 100px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-top: 26px;
  color: var(--ink);
}
.hero h1 .grad-text { display: inline; }
.hero-sub {
  color: var(--muted); font-size: clamp(17px, 1.7vw, 20px);
  max-width: 560px; margin-top: 26px; line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-trust {
  display: flex; align-items: center; gap: 22px; margin-top: 40px;
  color: var(--muted); font-size: 14px; flex-wrap: wrap;
}
.hero-trust .stars { color: #f5a623; letter-spacing: 2px; }
.hero-trust .divider { width: 1px; height: 26px; background: var(--border-strong); }

/* Hero visual — stacked dashboard mockups */
.hero-visual { position: relative; perspective: 1600px; }
.hv-stack { position: relative; transform-style: preserve-3d; transform: rotateY(-13deg) rotateX(6deg); }
.browser {
  border-radius: 16px; overflow: hidden;
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px; background: #f4f5fb;
  border-bottom: 1px solid var(--border);
}
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-bar .dot.r { background: #ff5f57; }
.browser-bar .dot.y { background: #febc2e; }
.browser-bar .dot.g { background: #28c840; }
.browser-bar .url {
  margin-left: 12px; flex: 1; height: 24px; border-radius: 8px;
  background: #fff; border: 1px solid var(--border); display: flex; align-items: center;
  padding: 0 12px; font-size: 11.5px; color: var(--muted-2);
  font-family: var(--font-body);
}
.browser-shot { display: block; width: 100%; height: auto; }
.hv-main { position: relative; z-index: 3; }
.hv-float {
  position: absolute; z-index: 4;
  border-radius: 16px; padding: 16px 18px;
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  animation: floaty 5s ease-in-out infinite;
}
.hv-float .label { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.hv-float .label .dotg { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
.hv-float .big { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin-top: 6px; color: var(--ink); }
.hv-float .big.cyan { color: var(--indigo); }
.hv-float.f1 { top: -34px; right: -18px; }
.hv-float.f2 { bottom: -28px; left: -34px; animation-delay: 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ============================================================
   MARQUEE / tech ticker
   ============================================================ */
.ticker { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.ticker-track { display: flex; gap: 18px; width: max-content; animation: scroll-x 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.tech-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display); font-weight: 500; font-size: 16px;
  color: var(--ink); white-space: nowrap;
  transition: border-color .3s, transform .3s;
}
.tech-chip:hover { border-color: var(--indigo); transform: translateY(-2px); }
.tech-chip .mark { width: 9px; height: 9px; border-radius: 2px; transform: rotate(45deg); }

/* ============================================================
   TRUST METRICS
   ============================================================ */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.metric { padding: 38px 30px; text-align: left; }
.metric .num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 4.4vw, 58px); line-height: 1;
  background: var(--grad-tri); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric .lbl { color: var(--muted); margin-top: 12px; font-size: 15.5px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  padding: 40px; transition: transform .45s var(--ease), box-shadow .4s;
}
.service-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  padding: 1px; background: var(--grad-tri);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .svc-glow { opacity: 1; }
.svc-glow {
  position: absolute; top: -40%; right: -10%; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(91,78,242,0.10), transparent 60%);
  opacity: 0; transition: opacity .5s; pointer-events: none;
}
.svc-icon {
  width: 66px; height: 66px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--indigo-soft), var(--violet-soft));
  border: 1px solid var(--border-strong);
  margin-bottom: 26px;
}
.svc-icon svg { width: 32px; height: 32px; stroke: var(--indigo); fill: none; stroke-width: 1.6; }
.service-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: -0.01em; color: var(--ink); }
.service-card p { color: var(--muted); margin-top: 14px; font-size: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.svc-tags span {
  font-size: 12.5px; color: var(--indigo); padding: 5px 12px;
  border: 1px solid var(--border-strong); border-radius: 100px; background: var(--bg-2);
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-line {
  position: absolute; top: 31px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 12%, var(--border-strong) 88%, transparent);
}
.process-line .fill {
  position: absolute; inset: 0; width: 0; background: var(--grad-tri);
  box-shadow: 0 0 14px rgba(91,78,242,0.4); transition: width 1.6s var(--ease);
}
.step { position: relative; padding: 0 16px; text-align: center; }
.step-node {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  color: var(--indigo); position: relative; z-index: 2;
  transition: border-color .4s, box-shadow .4s, transform .4s, background .4s;
}
.step.on .step-node { border-color: var(--violet); color: #fff; background: linear-gradient(135deg, var(--violet), var(--indigo)); box-shadow: 0 0 0 6px var(--violet-soft), 0 10px 24px rgba(58,47,212,0.3); transform: scale(1.04); }
.step h4 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); }
.step p { color: var(--muted); font-size: 14.5px; margin-top: 9px; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter {
  font-family: var(--font-display); font-size: 14.5px; font-weight: 500;
  color: var(--muted); background: var(--surface); border: 1px solid var(--border-strong);
  padding: 10px 20px; border-radius: 100px; cursor: pointer;
  transition: color .3s, border-color .3s, background .3s;
}
.filter:hover { color: var(--indigo); border-color: var(--indigo); }
.filter.active { color: #fff; background: linear-gradient(120deg, var(--violet), var(--indigo)); border-color: transparent; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px; gap: 20px;
}
.pf-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .4s;
}
.pf-item.tall { grid-row: span 2; }
.pf-item.wide { grid-column: span 4; }
.pf-item.span3 { grid-column: span 3; }
.pf-item.span2 { grid-column: span 2; }
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pf-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,14,40,0.05) 30%, rgba(12,14,40,0.86));
}
.pf-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pf-item:hover img { transform: scale(1.08); }
.pf-meta { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; }
.pf-cat {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #c7d0ff;
}
.pf-title { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin-top: 6px; color: #fff; }
.pf-item.hide { display: none; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { padding: 30px; transition: transform .4s var(--ease), box-shadow .4s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-check {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--indigo-soft), var(--violet-soft));
  border: 1px solid var(--border-strong);
}
.why-check svg { width: 22px; height: 22px; stroke: var(--indigo); fill: none; stroke-width: 2.4; }
.why-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.25; color: var(--ink); }
.why-card p { color: var(--muted); font-size: 14.5px; margin-top: 10px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-track { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: stretch; }
.testi-card { padding: 40px; display: flex; flex-direction: column; }
.testi-card .testi-author { margin-top: auto; }
.testi-stars { color: #f5a623; letter-spacing: 3px; font-size: 17px; }
.testi-card blockquote {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px); line-height: 1.5;
  margin: 22px 0 30px; color: var(--ink); letter-spacing: -0.01em;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-author { display: flex; align-items: center; gap: 15px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
}
.testi-avatar-logo {
  padding: 4px; overflow: hidden;
}
.testi-author .name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.testi-author .role { color: var(--muted); font-size: 14px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { padding: 40px 34px; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { box-shadow: var(--shadow-lg); background: linear-gradient(180deg, #f6f5ff, #fff); }
.price-card.featured::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1.5px;
  background: var(--grad-tri);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.price-pop {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: #fff; background: linear-gradient(120deg, var(--violet), var(--indigo));
  padding: 6px 13px; border-radius: 100px;
}
.price-name { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink); }
.price-tagline { color: var(--muted); font-size: 14.5px; line-height: 1.5; margin-top: 10px; min-height: 44px; }
.price-feats { list-style: none; margin: 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.price-feats li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); font-size: 15px; line-height: 1.45; }
.price-feats li svg { width: 18px; height: 18px; stroke: var(--violet); fill: none; stroke-width: 2.4; flex-shrink: 0; margin-top: 3px; }
.price-card .btn { width: 100%; margin-top: 28px; }
.pricing-note { text-align: center; color: var(--muted-2); font-size: 13.5px; margin-top: 30px; max-width: 640px; margin-inline: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { padding: 0 28px; transition: box-shadow .3s; }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--ink);
}
.faq-q .ic { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-q .ic::before, .faq-q .ic::after {
  content: ""; position: absolute; background: var(--indigo); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .ic::before { width: 14px; height: 2px; }
.faq-q .ic::after { width: 2px; height: 14px; transition: transform .3s; }
.faq-item.open .faq-q .ic::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--muted); font-size: 15.5px; padding-bottom: 26px; max-width: 92%; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final { text-align: center; padding: clamp(60px, 8vw, 100px) var(--gut); border-radius: var(--radius-lg); position: relative; overflow: hidden; background: linear-gradient(135deg, var(--indigo), #1a1480); border: none; box-shadow: var(--shadow-lg); }
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(91,78,242,0.55), transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 100%, rgba(59,110,245,0.5), transparent 60%);
}
.cta-final > * { position: relative; z-index: 2; }
.cta-final .eyebrow { color: #c7d0ff; background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22); }
.cta-final .eyebrow::before { background: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.7); }
.cta-final h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 4.6vw, 60px); line-height: 1.05; letter-spacing: -0.02em; color: #fff; }
.cta-final h2 .grad-text { background: linear-gradient(120deg, #fff, #c7d0ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta-final p { color: rgba(255,255,255,0.82); font-size: clamp(16px, 1.6vw, 20px); max-width: 600px; margin: 22px auto 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.cta-final .btn-primary { background: #fff; color: var(--indigo); box-shadow: 0 10px 28px rgba(0,0,0,0.18); }
.cta-final .btn-primary:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.26); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); padding-block: 70px 36px; margin-top: clamp(60px,10vw,120px); background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 15px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted);
  transition: color .3s, border-color .3s, transform .3s;
}
.footer-social a:hover { color: var(--indigo); border-color: var(--indigo); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h5 { font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-bottom: 18px; color: var(--ink); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { color: var(--muted); text-decoration: none; font-size: 14.5px; transition: color .25s; }
.footer-col a:hover { color: var(--indigo); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border);
  color: var(--muted-2); font-size: 13.5px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 70;
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25d366, #11b14e);
  box-shadow: 0 10px 34px rgba(37,211,102,0.45);
  color: #fff; text-decoration: none;
  transition: transform .35s var(--ease);
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse {
  0% { box-shadow: 0 10px 34px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 10px 34px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 34px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
html.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .services-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-line { display: none; }
  .step { display: flex; gap: 20px; text-align: left; align-items: flex-start; }
  .step-node { margin: 0; }
  .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
  .pf-item.wide { grid-column: span 4; }
  .pf-item.span3 { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testi-track { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .pf-item.wide, .pf-item.span3, .pf-item.span2 { grid-column: span 1; }
  .pf-item.tall { grid-row: span 1; }
  .hv-float.f1 { right: 0; }
  .hv-float.f2 { left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 120px; }
}
