/* ═══════════════════════════════════════════
   PERTISE LP — SITES & LANDING PAGES
   Brand: #373083 (indigo) + #0D9668 (accent green)
   Fonts: Montserrat (headings) + Inter (body)
   ═══════════════════════════════════════════ */

:root {
  --indigo: #373083;
  --indigo-deep: #1E1A5A;
  --indigo-dark: #0F0C2E;
  --indigo-light: #4A42A0;
  --indigo-pale: #EEEDFA;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F9FAFB;
  --gray-100: #F5F5F7;
  --gray-200: #E8E8EC;
  --gray-400: #9898A6;
  --gray-600: #6B6B7B;
  --gray-800: #2C2C3A;
  --text-primary: #1A1A2E;
  --text-secondary: #5A5A6E;
  --accent: #0D9668;
  --accent-hover: #0A7B54;
  --accent-light: rgba(16,185,129,0.08);
  --wpp-green: #25D366;
  --font-heading: 'Montserrat', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(55,48,131,0.06);
  --shadow-lg: 0 20px 60px rgba(55,48,131,0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── SECTION NAV (Premium DS) ─────────────────────── */
.section-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,12,46,.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 40px rgba(0,0,0,.3);
  transform: translateY(-100%); transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.section-nav.nav-visible { transform: translateY(0); }
/* Bottom edge glow */
.section-nav::after {
  content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,150,104,.2), rgba(55,48,131,.15), transparent);
}
.nav-inner {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 0;
}
.nav-logo {
  display: flex; align-items: center; margin-right: auto;
}
.nav-logo svg {
  height: 24px; width: auto;
  transition: opacity .3s;
  animation: nav-logo-float 3s ease-in-out infinite;
}
@keyframes nav-logo-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.nav-logo:hover svg { opacity: .8; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,.55); text-decoration: none;
  font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 8px;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  font-family: var(--font-heading);
  letter-spacing: .3px; text-transform: uppercase;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--accent); border-radius: 1px;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.nav-link:hover { color: white; }
.nav-link:hover::after { left: 25%; right: 25%; }
.nav-link.active { color: white; background: rgba(255,255,255,.06); }
.nav-link.active::after { left: 25%; right: 25%; }
.nav-cta {
  color: #fff; text-decoration: none;
  font-size: 12px; font-weight: 700;
  padding: 10px 24px; border-radius: 8px;
  background: var(--accent);
  font-family: var(--font-heading); letter-spacing: .3px;
  text-transform: uppercase;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  margin-left: 8px;
  box-shadow: 0 2px 12px rgba(13,150,104,.2);
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(13,150,104,.3);
}
@media (max-width: 768px) {
  .section-nav .container { padding: 0; }
  .nav-inner { gap: 4px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 10px 16px; scrollbar-width: none; }
  .nav-inner::-webkit-scrollbar { display: none; }
  .nav-logo { margin-right: 8px; flex-shrink: 0; }
  .nav-logo svg { height: 18px; animation: none; }
  .nav-links { gap: 2px; }
  .nav-link { font-size: 11px; padding: 6px 12px; white-space: nowrap; flex-shrink: 0; }
  .nav-link::after { display: none; }
  .nav-cta { font-size: 11px; padding: 8px 16px; white-space: nowrap; flex-shrink: 0; }
  .section-nav::after { display: none; }

  /* Mobile conversion fixes */
  .hero-cta .btn-primary { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
  .pricing-card-featured { order: -1; }
  .metric-icon { display: none; }
  .metric-card { padding: 24px 12px; }
  .segment-tag { min-height: 44px; }
  .faq-item { min-height: 48px; }
}

/* scroll-margin for fixed nav */
section[id] { scroll-margin-top: 64px; }

/* ── UTILITY ─────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; content-visibility: auto; contain-intrinsic-size: auto 800px; }

h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; line-height: 1.3; }

em { font-style: normal; color: var(--accent); }

/* ── FOCUS VISIBLE (accessibility) ───── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

/* ── ANIMATIONS ──────────────────────── */
.animate-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Hero elements visible immediately — no wait for observer */
.hero .animate-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1; transform: none; transition: none; }
  .hero__blob, .hero__shape, .hero__beam, .hero__particle, .hero__marker,
  .hero__ghost, .hero-cta .btn-primary,
  .cta-final__orb, .cta-final__shape, .cta-final__beam,
  .cta-final .btn-primary,
  .nav-logo svg,
  .pricing-card .btn-primary { animation: none !important; }
  * { transition-duration: 0.01s !important; }
}

/* ── BUTTONS ─────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--accent); color: var(--white);
  text-decoration: none; font-family: var(--font-heading);
  font-size: 15px; font-weight: 700; border-radius: var(--radius-sm);
  transition: all 0.3s ease; letter-spacing: 0.3px; border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,150,104,0.25);
}
.btn-lg { padding: 18px 44px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: transparent; color: var(--white);
  text-decoration: none; font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.3); border-radius: var(--radius-sm);
  transition: all 0.3s ease; cursor: pointer;
}
.btn-outline-light:hover {
  border-color: var(--white); background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   HERO (Premium Design System)
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--indigo-dark); position: relative;
  overflow: hidden; padding: 100px 0 60px;
}

/* Top fade for nav integration */
.hero__top-fade {
  position: absolute; top: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(180deg, rgba(6,5,15,.5) 0%, transparent 100%);
  z-index: 3; pointer-events: none;
}

/* 96px grid with mask */
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(55,48,131,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,48,131,.08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 70%);
}

/* Secondary thin lines */
.hero__lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Noise texture */
.hero__noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}

/* Grid intersection markers */
.hero__marker {
  position: absolute; width: 4px; height: 4px;
  background: rgba(13,150,104,.4); border-radius: 50%;
  box-shadow: 0 0 8px rgba(13,150,104,.3); z-index: 2;
  animation: hero-marker-pulse 4s ease-in-out infinite;
}
@keyframes hero-marker-pulse {
  0%,100% { opacity: .3; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.8); }
}

/* Glow blobs */
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(120px);
  pointer-events: none; will-change: transform;
}
.hero__blob--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(55,48,131,.5) 0%, transparent 65%);
  top: -200px; right: -150px;
  animation: hero-blob-1 20s ease-in-out infinite;
}
.hero__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,150,104,.25) 0%, transparent 65%);
  bottom: -100px; left: -120px;
  animation: hero-blob-2 24s ease-in-out infinite;
}
.hero__blob--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,66,160,.2) 0%, transparent 65%);
  top: 40%; left: 50%;
  animation: hero-blob-3 18s ease-in-out infinite;
}
@keyframes hero-blob-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(50px,-60px) scale(1.1); }
  66% { transform: translate(-30px,40px) scale(.95); }
}
@keyframes hero-blob-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px,-40px) scale(1.08); }
}
@keyframes hero-blob-3 {
  0%,100% { transform: translate(-50%,0) scale(1); }
  33% { transform: translate(calc(-50% + 40px),-50px) scale(1.05); }
  66% { transform: translate(calc(-50% - 30px),30px) scale(.97); }
}

/* Rising particles */
.hero__particle {
  position: absolute; border-radius: 50%; z-index: 2;
  animation: hero-particle-rise linear infinite; pointer-events: none;
}
@keyframes hero-particle-rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-80vh) translateX(20px); opacity: 0; }
}

/* Beam sweeps */
.hero__beam { position: absolute; pointer-events: none; z-index: 2; }
.hero__beam--h {
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(13,150,104,.2) 30%, rgba(13,150,104,.4) 50%, rgba(13,150,104,.2) 70%, transparent 100%);
  background-size: 300% 100%;
  animation: hero-beam-h 8s ease-in-out infinite;
}
.hero__beam--v {
  top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(55,48,131,.15) 30%, rgba(55,48,131,.3) 50%, rgba(55,48,131,.15) 70%, transparent 100%);
  background-size: 100% 300%;
  animation: hero-beam-v 10s ease-in-out infinite;
}
@keyframes hero-beam-h {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
@keyframes hero-beam-v {
  0% { background-position: 0 200%; }
  100% { background-position: 0 -100%; }
}

/* Floating geometric shapes */
.hero__shape { position: absolute; pointer-events: none; opacity: .06; z-index: 2; }
.hero__shape--circle {
  width: 140px; height: 140px; border: 2px solid rgba(124,58,237,.5);
  border-radius: 50%; top: 15%; right: 10%;
  animation: hero-shape-1 14s ease-in-out infinite;
}
.hero__shape--square {
  width: 70px; height: 70px; border: 2px solid rgba(13,150,104,.5);
  top: 35%; left: 6%; transform: rotate(45deg);
  animation: hero-shape-2 16s ease-in-out infinite;
}
.hero__shape--rect {
  width: 100px; height: 60px; border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 8px; bottom: 20%; right: 5%;
  animation: hero-shape-3 12s ease-in-out infinite;
}
.hero__shape--diamond {
  width: 40px; height: 40px; border: 2px solid rgba(74,66,160,.4);
  bottom: 30%; left: 15%; transform: rotate(45deg);
  animation: hero-shape-1 9s ease-in-out infinite reverse;
}
@keyframes hero-shape-1 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(15deg); }
}
@keyframes hero-shape-2 {
  0%,100% { transform: translateY(0) rotate(45deg); }
  33% { transform: translateY(-20px) rotate(55deg); }
  66% { transform: translateY(15px) rotate(35deg); }
}
@keyframes hero-shape-3 {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.08); }
}

/* Ghost text */
.hero__ghost {
  position: absolute; bottom: -.1em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-heading); font-size: clamp(80px, 15vw, 220px);
  font-weight: 900; letter-spacing: -.05em; line-height: .85;
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 1;
  -webkit-text-stroke: 1px rgba(55,48,131,.12); color: transparent;
  background: linear-gradient(180deg, rgba(55,48,131,.08) 0%, transparent 70%);
  -webkit-background-clip: text; background-clip: text;
  opacity: 0; animation: hero-ghost-in 1.4s cubic-bezier(.16,1,.3,1) .5s both;
}
@keyframes hero-ghost-in {
  from { opacity: 0; transform: translateX(-50%) translateY(40px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Radial spotlight — draws focus to center */
.hero__spotlight {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 45%, rgba(55,48,131,.15) 0%, rgba(13,150,104,.04) 35%, transparent 65%);
  pointer-events: none; z-index: 2;
}

/* Content */
.hero-inner {
  position: relative; z-index: 10; text-align: center;
  max-width: 800px; margin: 0 auto;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; background: rgba(13,150,104,.1);
  border: 1px solid rgba(13,150,104,.25); border-radius: 100px;
  color: var(--accent); font-family: var(--font-heading);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 28px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; animation: hero-badge-pulse 2s ease-in-out infinite;
}
@keyframes hero-badge-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.hero-badge svg { flex-shrink: 0; display: none; }

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero-accent { color: var(--accent); }

.hero-sub {
  color: rgba(255,255,255,.6); font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7; max-width: 620px; margin: 0 auto 40px;
}
.hero-sub strong { color: rgba(255,255,255,.9); font-weight: 600; }

/* Shiny CTA */
@property --hero-cta-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes hero-cta-spin { to { --hero-cta-angle: 360deg; } }

.hero-cta { margin-bottom: 36px; }
.hero-cta .btn-primary {
  --hero-cta-angle: 0deg;
  background:
    linear-gradient(var(--accent), var(--accent)) padding-box,
    conic-gradient(from var(--hero-cta-angle), transparent 0%, rgba(255,255,255,.15) 10%, rgba(255,255,255,.5) 18%, rgba(255,255,255,.15) 30%, transparent 45%) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 8px 32px rgba(13,150,104,.3), inset 0 1px 0 rgba(255,255,255,.12);
  animation: hero-cta-spin 3s linear infinite;
  border-radius: 9999px; padding: 16px 40px;
}
.hero-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(13,150,104,.4), inset 0 1px 0 rgba(255,255,255,.15);
}

.hero-trust {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5); font-size: 13px; font-weight: 500;
}
.trust-item svg { stroke: rgba(255,255,255,.5); }

/* Hero mobile */
@media (max-width: 768px) {
  .hero { padding: 110px 0 50px; min-height: auto; }
  .hero__ghost { font-size: clamp(50px, 20vw, 120px); }
  .hero__shape, .hero__beam, .hero__lines { display: none; }
  .hero__blob--3 { display: none; }
  .hero__particle { display: none; }
  .hero__marker { display: none; }
  .hero-cta .btn-primary { padding: 14px 32px; border-radius: 9999px; }
  .hero-trust { gap: 12px; }
  .trust-item { font-size: 12px; }
}

/* ═══════════════════════════════════════════
   METRICS (Premium Design System)
   ═══════════════════════════════════════════ */
.metrics {
  position: relative;
  background: linear-gradient(135deg, var(--indigo-dark) 0%, var(--indigo-deep) 40%, var(--indigo) 100%);
  padding: 0; overflow: hidden;
}

/* Top/bottom edge glow */
.metrics::before, .metrics::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px; z-index: 2;
}
.metrics::before {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(13,150,104,.3), rgba(55,48,131,.2), transparent);
}
.metrics::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(55,48,131,.2), rgba(13,150,104,.3), transparent);
}

/* Background noise + dots */
.metrics__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.metrics__bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.metrics__bg::after {
  content: ''; position: absolute; inset: 0; opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}

.metrics-grid {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; max-width: 1200px; margin: 0 auto;
}

.metric-card {
  padding: 40px 20px;
  position: relative;
  transition: all .3s var(--ease-spring, ease);
}

/* Dividers between cards */
.metric-card + .metric-card::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.1), transparent);
}

/* Hover glow */
.metric-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(13,150,104,.06) 0%, transparent 70%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.metric-card:hover::after { opacity: 1; }

/* Icon */
.metric-icon {
  width: 44px; height: 44px; margin: 0 auto 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.metric-icon svg {
  width: 22px; height: 22px; color: var(--accent);
  stroke-width: 1.5; transition: all .3s;
}
.metric-card:hover .metric-icon {
  background: rgba(13,150,104,.15);
  border-color: rgba(13,150,104,.25);
  transform: scale(1.08);
}

/* Number with gradient */
.metric-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.85) 50%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  line-height: 1.1;
}

.metric-label {
  color: rgba(255,255,255,.55); font-size: 13px; font-weight: 500;
  letter-spacing: .02em;
}

/* Metrics mobile */
@media (max-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card { padding: 28px 16px; }
  .metric-card + .metric-card::before { display: none; }
  .metric-card:nth-child(n+3)::after { display: none; }
  .metric-number { font-size: 1.75rem; }
  .metric-icon { width: 36px; height: 36px; margin-bottom: 12px; }
  .metric-icon svg { width: 18px; height: 18px; }
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 6px 16px;
  background: var(--indigo-pale); color: var(--indigo);
  border-radius: 100px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-secondary); font-size: clamp(1rem, 1.5vw, 1.1rem);
  max-width: 600px; margin: 16px auto 0; line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PROBLEM (Premium Design System)
   ═══════════════════════════════════════════ */
.problem {
  position: relative; background: #FAFBFF; overflow: hidden;
}

/* Line grid */
.problem__bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(55,48,131,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,48,131,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Dot grid */
.problem__bg-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(55,48,131,.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Orbs — brand colors */
.problem__orb {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.problem__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(55,48,131,.07) 0%, transparent 60%);
  top: -150px; right: -100px;
}
.problem__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,150,104,.04) 0%, transparent 60%);
  bottom: -100px; left: -80px;
}

/* Shapes — brand colors */
.problem__shape {
  position: absolute; pointer-events: none; opacity: .06; z-index: 1;
}
.problem__shape--1 {
  width: 100px; height: 100px; border: 2px solid var(--indigo);
  border-radius: 50%; top: 10%; right: 6%;
  animation: hero-shape-1 14s ease-in-out infinite;
}
.problem__shape--2 {
  width: 50px; height: 50px; border: 2px solid var(--accent);
  border-radius: 8px; bottom: 15%; left: 5%; transform: rotate(45deg);
  animation: hero-shape-2 11s ease-in-out infinite;
}

/* Top separator */
.problem::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,48,131,.1), transparent);
  z-index: 2;
}

.problem .container { position: relative; z-index: 5; }

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* Cards */
.problem-card {
  position: relative; background: var(--white);
  border-radius: 20px; padding: 40px 32px;
  border: 1.5px solid rgba(55,48,131,.08);
  transition: all .45s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(55,48,131,.04);
}

/* Left accent bar — brand gradient */
.problem-card::before {
  content: ''; position: absolute; top: 16px; bottom: 16px; left: 0;
  width: 4px; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--indigo), var(--accent));
  opacity: .5; transition: all .4s cubic-bezier(.16,1,.3,1);
}

/* Bottom accent bar on hover */
.problem-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(55,48,131,.15);
  box-shadow: 0 20px 60px rgba(55,48,131,.1), 0 0 0 1px rgba(55,48,131,.04);
}
.problem-card:hover::before { opacity: 1; top: 0; bottom: 0; }
.problem-card:hover::after { transform: scaleX(1); }

/* Number badge — indigo */
.problem-card__number {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(55,48,131,.06); border: 1px solid rgba(55,48,131,.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 13px; font-weight: 800;
  color: var(--indigo); transition: all .3s;
}
.problem-card:hover .problem-card__number {
  background: var(--indigo); color: white;
  box-shadow: 0 4px 16px rgba(55,48,131,.2);
}

/* Icon — indigo */
.problem-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(55,48,131,.08) 0%, rgba(55,48,131,.04) 100%);
  border: 1px solid rgba(55,48,131,.1);
  color: var(--indigo); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: all .4s cubic-bezier(.16,1,.3,1);
}
.problem-icon svg { transition: all .4s; }

.problem-card:hover .problem-icon {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  border-color: transparent; color: white;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(55,48,131,.2);
}
.problem-card:hover .problem-icon svg { color: white; stroke: white; }

.problem-card h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 800;
  margin-bottom: 12px; color: var(--text-primary);
  letter-spacing: -.02em; line-height: 1.25;
}
.problem-card p {
  color: var(--text-secondary); font-size: 15px; line-height: 1.75;
}

/* Mobile */
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; gap: 14px; }
  .problem-card { padding: 28px 24px; border-radius: 16px; }
  .problem__shape { display: none; }
  .problem-card h3 { font-size: 18px; }
}

/* ═══════════════════════════════════════════
   PRICING (Premium Design System)
   ═══════════════════════════════════════════ */
.pricing {
  position: relative;
  background: linear-gradient(180deg, #06050F 0%, #0A081F 15%, #0F0C2E 35%, #1E1A5A 55%, #0F0C2E 80%, #06050F 100%);
  overflow: hidden; padding: 120px 0 100px !important;
}
.pricing .section-tag { background: rgba(13,150,104,.12); color: var(--accent); }
.pricing .section-header h2 { color: white; }
.pricing .section-header h2 em { color: var(--accent); }
.pricing .section-sub { color: rgba(255,255,255,.55); max-width: 700px; }

/* Background layers */
.pricing__noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}
.pricing__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(55,48,131,.12) 1px, transparent 1px);
  background-size: 32px 32px;
}
.pricing__orb {
  position: absolute; border-radius: 50%; filter: blur(130px); pointer-events: none;
}
.pricing__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(55,48,131,.4) 0%, transparent 60%);
  top: -200px; right: -150px;
}
.pricing__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,150,104,.2) 0%, transparent 60%);
  bottom: -150px; left: -100px;
}

.pricing .container { position: relative; z-index: 5; }

/* Grid 3 cols — equal height */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
  align-items: stretch;
}

/* Cards */
.pricing-card {
  position: relative;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: all .5s cubic-bezier(.16,1,.3,1);
}
/* Top accent line */
.pricing-card::after {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .5s;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 24px 64px rgba(0,0,0,.3), 0 0 40px rgba(55,48,131,.08);
}
.pricing-card:hover::after { opacity: 1; }

/* Featured card — elevated */
.pricing-card-featured {
  border-color: rgba(13,150,104,.3);
  background: rgba(255,255,255,.06);
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(0,0,0,.3), 0 0 0 1px rgba(13,150,104,.15);
}
.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-8px);
  border-color: rgba(13,150,104,.4);
}

/* Badge */
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 7px 22px; border-radius: 100px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap; z-index: 5;
}
.pricing-card-featured .pricing-popular {
  background: var(--accent); color: white;
  box-shadow: 0 4px 20px rgba(13,150,104,.3);
}

/* Header */
.pricing-header { margin-bottom: 28px; }
.pricing-label {
  display: block; font-family: var(--font-heading);
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}

/* Old price (line-through) */
.pricing-old {
  display: block; font-family: var(--font-heading);
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,.3);
  text-decoration: line-through; margin-bottom: 6px;
}

/* Price */
.pricing-price {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px;
}
.pricing-currency {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,.6);
}
.pricing-value {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.85) 50%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card-featured .pricing-value {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 80%);
  -webkit-background-clip: text; background-clip: text;
}

.pricing-desc {
  color: rgba(255,255,255,.5); font-size: 15px; line-height: 1.5;
}

/* Divider */
.pricing-divider {
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  margin: 24px 0;
}

/* Features */
.pricing-features {
  list-style: none; flex: 1; margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.5;
}
.pricing-features li svg {
  flex-shrink: 0; color: var(--accent); margin-top: 2px;
}

/* CTA buttons — pill shiny */
@property --pricing-cta-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes pricing-cta-spin { to { --pricing-cta-angle: 360deg; } }

/* All pricing buttons same height */
.pricing-card .btn-primary,
.pricing-card .btn-outline {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px; border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700; letter-spacing: .03em;
  text-decoration: none; text-align: center;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  width: 100%;
}

.pricing-card .btn-primary {
  background: var(--accent); color: white; border: none;
  box-shadow: 0 6px 24px rgba(13,150,104,.25), inset 0 1px 0 rgba(255,255,255,.1);
}
.pricing-card .btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(13,150,104,.35), inset 0 1px 0 rgba(255,255,255,.15);
}

.pricing-card .btn-outline {
  background: rgba(255,255,255,.05); color: white;
  border: 1.5px solid rgba(255,255,255,.15);
}
.pricing-card .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

/* Note */
.pricing-note {
  text-align: center; color: rgba(255,255,255,.4); font-size: 14px;
  max-width: 500px; margin: 40px auto 0; line-height: 1.7;
}

/* Pricing mobile */
@media (max-width: 968px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; gap: 28px; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-8px); }
  .pricing-card { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .pricing-card { padding: 32px 24px; }
  .pricing-card .btn-primary,
  .pricing-card .btn-outline { padding: 14px 24px; font-size: 13px; }
}

/* ═══════════════════════════════════════════
   STEPS (Premium — White bg)
   ═══════════════════════════════════════════ */
.steps {
  position: relative; background: white; overflow: hidden;
}
.steps .section-tag { background: rgba(55,48,131,.06); color: var(--indigo); }
.steps .section-header h2 { color: var(--text-primary); }
.steps .section-header h2 em { color: var(--accent); }

/* Background — white with Pertise grid elements */
.steps__bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(55,48,131,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,48,131,.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.steps__bg-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(55,48,131,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
/* Cross-hatch */
.steps__bg-cross {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(45deg, rgba(55,48,131,.015) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(55,48,131,.015) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Orbs */
.steps__orb {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.steps__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(55,48,131,.08) 0%, transparent 60%);
  top: -150px; left: -100px;
}
.steps__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,150,104,.05) 0%, transparent 60%);
  bottom: -100px; right: -80px;
}
/* Shapes */
.steps__shape {
  position: absolute; pointer-events: none; opacity: .06; z-index: 1;
}
.steps__shape--1 {
  width: 120px; height: 120px; border: 2px solid var(--indigo);
  border-radius: 50%; top: 12%; right: 5%;
  animation: hero-shape-1 15s ease-in-out infinite;
}
.steps__shape--2 {
  width: 60px; height: 60px; border: 2px solid var(--accent);
  border-radius: 10px; bottom: 15%; left: 4%; transform: rotate(45deg);
  animation: hero-shape-2 12s ease-in-out infinite;
}
.steps::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,48,131,.1), transparent);
  z-index: 2;
}

.steps .container { position: relative; z-index: 5; }

/* Timeline grid */
.steps-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0;
  position: relative; max-width: 960px; margin: 0 auto;
}

/* Cards */
.step-card {
  text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 2;
}

/* Number circle */
.step-number {
  position: relative;
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-light) 100%);
  color: var(--white);
  font-family: var(--font-heading); font-size: 28px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(55,48,131,.2), 0 0 0 6px rgba(55,48,131,.06);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  z-index: 3;
}
.step-card:hover .step-number {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(55,48,131,.3), 0 0 0 8px rgba(55,48,131,.1);
}

/* Card body below number */
.step-card__body {
  background: white;
  border: 1.5px solid rgba(55,48,131,.08);
  border-radius: 20px; padding: 32px 24px 28px;
  box-shadow: 0 4px 20px rgba(55,48,131,.04);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden; width: 100%;
}
/* Left accent bar */
.step-card__body::before {
  content: ''; position: absolute; top: 12px; bottom: 12px; left: 0;
  width: 3px; border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--indigo), var(--accent));
  opacity: .4; transition: all .4s;
}
/* Bottom accent bar on hover */
.step-card__body::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.step-card:hover .step-card__body {
  transform: translateY(-6px);
  border-color: rgba(55,48,131,.15);
  box-shadow: 0 16px 48px rgba(55,48,131,.1);
}
.step-card:hover .step-card__body::before { opacity: 1; top: 0; bottom: 0; }
.step-card:hover .step-card__body::after { transform: scaleX(1); }

/* Icon in card */
.step-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(55,48,131,.06); border: 1px solid rgba(55,48,131,.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.step-card__icon svg {
  width: 24px; height: 24px; color: var(--indigo); stroke-width: 1.5;
  transition: all .4s;
}
.step-card:hover .step-card__icon {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  border-color: transparent; transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(55,48,131,.15);
}
.step-card:hover .step-card__icon svg { color: white; }

.step-card h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 800;
  color: var(--text-primary); margin-bottom: 10px;
  letter-spacing: -.02em;
}
.step-card p {
  color: var(--text-secondary); font-size: 15px; line-height: 1.7;
}

/* Connector — horizontal line with arrow */
.step-connector {
  display: flex; align-items: center; justify-content: center;
  padding-top: 36px; /* align with number center */
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-connector__line {
  width: 48px; height: 2px; position: relative;
  background: linear-gradient(90deg, rgba(55,48,131,.15), rgba(13,150,104,.2));
}
.step-connector__line::after {
  content: ''; position: absolute; right: -4px; top: -4px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--accent);
  border-top: 2px solid var(--accent);
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .steps-grid {
    display: flex; flex-direction: column;
    align-items: center; gap: 24px; max-width: 400px;
  }
  .step-connector { display: none; }
  .step-card { padding: 0; width: 100%; }
  .step-number { width: 60px; height: 60px; font-size: 24px; margin-bottom: 20px; }
  .step-card__body { padding: 28px 24px; }
  .steps__orb, .steps__shape { display: none; }
}

/* ═══════════════════════════════════════════
   CTA MID
   ═══════════════════════════════════════════ */
.cta-mid { padding: 80px 0; background: var(--indigo-dark); }
.cta-mid-inner { text-align: center; }
.cta-mid h2 { color: var(--white); margin-bottom: 12px; }
.cta-mid p {
  color: rgba(255,255,255,0.78); font-size: 16px;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════
   INCLUDED (Premium Bento)
   ═══════════════════════════════════════════ */
.included {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #0A081F 0%, #0F0C2E 30%, #1E1A5A 60%, #0F0C2E 100%);
}
.included .section-tag { background: rgba(13,150,104,.12); color: var(--accent); }
.included .section-header h2 { color: white; }
.included .section-header h2 em { color: var(--accent); }

/* Noise */
.included__noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}
/* Dot grid */
.included__bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(55,48,131,.15) 1px, transparent 1px);
  background-size: 32px 32px;
}
/* Line grid */
.included__bg-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(55,48,131,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,48,131,.06) 1px, transparent 1px);
  background-size: 96px 96px;
}
/* Orbs */
.included__orb {
  position: absolute; border-radius: 50%; filter: blur(130px); pointer-events: none;
}
.included__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(55,48,131,.4) 0%, transparent 60%);
  top: -200px; right: -150px;
}
.included__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,150,104,.15) 0%, transparent 60%);
  bottom: -150px; left: -100px;
}
/* Shapes */
.included__shape {
  position: absolute; pointer-events: none; opacity: .06; z-index: 1;
}
.included__shape--1 {
  width: 120px; height: 120px; border: 2px solid rgba(255,255,255,.2);
  border-radius: 50%; bottom: 10%; right: 5%;
  animation: hero-shape-1 16s ease-in-out infinite;
}
.included__shape--2 {
  width: 60px; height: 60px; border: 2px solid rgba(13,150,104,.4);
  border-radius: 10px; top: 15%; left: 4%; transform: rotate(45deg);
  animation: hero-shape-2 13s ease-in-out infinite;
}

.included .container { position: relative; z-index: 5; }

/* Bento grid — 4 cards, 2x2 */
.included-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

/* Cards — glass dark */
.included-card {
  position: relative;
  padding: 36px 28px; border-radius: 20px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.08);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
/* Top accent line on hover */
.included-card::after {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,150,104,.4), transparent);
  opacity: 0; transition: opacity .5s;
}
.included-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 24px 64px rgba(0,0,0,.3), 0 0 40px rgba(55,48,131,.06);
}
.included-card:hover::after { opacity: 1; }

/* Icon */
.included-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(13,150,104,.12) 0%, rgba(55,48,131,.08) 100%);
  border: 1px solid rgba(13,150,104,.15);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.included-card:hover .included-icon {
  background: linear-gradient(135deg, var(--accent), #0A7B54);
  border-color: transparent; color: white;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(13,150,104,.25);
}
.included-card:hover .included-icon svg { color: white; stroke: white; }
.included-icon svg { transition: all .4s; }

/* Number badge */
.included-card__number {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-heading); font-size: 48px; font-weight: 900;
  line-height: 1; color: rgba(255,255,255,.03);
  letter-spacing: -.03em;
  transition: color .4s;
}
.included-card:hover .included-card__number {
  color: rgba(255,255,255,.06);
}

.included-card h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 800;
  margin-bottom: 10px; color: white;
  letter-spacing: -.02em; position: relative; z-index: 1;
}
.included-card p {
  color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.75;
  position: relative; z-index: 1;
}

/* Mobile */
@media (max-width: 968px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .included-grid { grid-template-columns: 1fr; gap: 14px; }
  .included-card { padding: 28px 24px; border-radius: 16px; }
  .included__shape { display: none; }
}

/* ═══════════════════════════════════════════
   SEGMENTS (Premium — white bg + Pertise elements)
   ═══════════════════════════════════════════ */
.segments {
  position: relative; background: #F8F7FC; overflow: hidden;
}
/* Dot grid only — no lines */
.segments__bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(55,48,131,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
/* Hidden — no extra grids */
.segments__bg-dots { display: none; }
.segments__bg-cross { display: none; }
/* Orbs — more visible */
.segments__orb {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
  animation: seg-orb-float 20s ease-in-out infinite;
}
.segments__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(55,48,131,.05) 0%, transparent 55%);
  top: -150px; left: -100px;
}
.segments__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,150,104,.03) 0%, transparent 55%);
  bottom: -100px; right: -80px;
  animation-delay: -10s;
}
@keyframes seg-orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-40px) scale(1.06); }
}
/* Shapes — Pertise colors, more visible */
.segments__shape {
  position: absolute; pointer-events: none; opacity: .04; z-index: 1;
}
.segments__shape--1 {
  width: 110px; height: 110px; border: 2px solid var(--indigo);
  border-radius: 50%; top: 10%; right: 5%;
  animation: hero-shape-1 14s ease-in-out infinite;
}
.segments__shape--2 {
  width: 55px; height: 55px; border: 2px solid var(--accent);
  border-radius: 10px; bottom: 12%; left: 4%; transform: rotate(45deg);
  animation: hero-shape-2 11s ease-in-out infinite;
}
.segments__shape--3 {
  width: 80px; height: 80px; border: 1.5px solid var(--indigo-light);
  border-radius: 50%; bottom: 35%; right: 7%;
  animation: hero-shape-3 16s ease-in-out infinite;
}
.segments__shape--4 {
  width: 40px; height: 40px; border: 1.5px solid var(--indigo);
  top: 28%; left: 8%; transform: rotate(45deg);
  animation: hero-shape-1 9s ease-in-out infinite reverse;
}
/* Horizontal accent line */
.segments__accent-line {
  position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(55,48,131,.08) 25%, rgba(13,150,104,.06) 50%, rgba(55,48,131,.08) 75%, transparent 95%);
  pointer-events: none; z-index: 1;
}
/* Top/bottom separators */
.segments::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,48,131,.12), transparent);
  z-index: 2;
}
.segments::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,48,131,.08), transparent);
  z-index: 2;
}
.segments .container { position: relative; z-index: 5; }

@media (max-width: 768px) {
  .segments__shape, .segments__bg-cross, .segments__accent-line { display: none; }
}

.segments-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.segment-tag {
  padding: 12px 24px;
  background: white;
  border: none; border-radius: 9999px;
  font-family: var(--font-heading); font-size: 14px; font-weight: 600;
  color: var(--text-primary); letter-spacing: -.01em;
  transition: all .35s cubic-bezier(.16,1,.3,1); cursor: default;
  box-shadow: 0 2px 8px rgba(55,48,131,.06);
  display: inline-flex; align-items: center; gap: 0;
}
.segment-tag:hover {
  background: var(--indigo); color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(55,48,131,.15);
}
.segment-tag__dot { display: none; }

@media (max-width: 768px) {
  .segments__shape, .segments__bg-cross, .segments__accent-line { display: none; }
  .segments-grid { gap: 8px; }
  .segment-tag { padding: 10px 20px; font-size: 13px; }
}

/* ═══════════════════════════════════════════
   FAQ (Premium — Pertise bg)
   ═══════════════════════════════════════════ */
.faq {
  position: relative; background: white; overflow: hidden;
}
/* Line grid */
.faq__bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(55,48,131,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,48,131,.06) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* Dot grid */
.faq__bg-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(55,48,131,.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
/* Orbs */
.faq__orb {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
  animation: seg-orb-float 22s ease-in-out infinite;
}
.faq__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(55,48,131,.1) 0%, transparent 55%);
  top: -150px; right: -100px;
}
.faq__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,150,104,.06) 0%, transparent 55%);
  bottom: -100px; left: -80px;
  animation-delay: -10s;
}
/* Shapes */
.faq__shape {
  position: absolute; pointer-events: none; opacity: .08; z-index: 1;
}
.faq__shape--1 {
  width: 120px; height: 120px; border: 2px solid var(--indigo);
  border-radius: 50%; top: 10%; left: 5%;
  animation: hero-shape-1 15s ease-in-out infinite;
}
.faq__shape--2 {
  width: 60px; height: 60px; border: 2px solid var(--accent);
  border-radius: 10px; bottom: 15%; right: 4%; transform: rotate(45deg);
  animation: hero-shape-2 12s ease-in-out infinite;
}
.faq__shape--3 {
  width: 80px; height: 80px; border: 1.5px solid var(--indigo-light);
  border-radius: 50%; top: 50%; right: 8%;
  animation: hero-shape-3 18s ease-in-out infinite;
}
/* Separators */
.faq::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,48,131,.1), transparent);
  z-index: 2;
}
.faq .container { position: relative; z-index: 5; }

/* FAQ items — card style */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: white; border: 1.5px solid rgba(55,48,131,.08);
  border-radius: 16px; overflow: hidden;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 2px 8px rgba(55,48,131,.03);
}
.faq-item:hover {
  border-color: rgba(55,48,131,.14);
  box-shadow: 0 6px 24px rgba(55,48,131,.06);
  transform: translateY(-2px);
}
.faq-item.active {
  border-color: rgba(55,48,131,.18);
  box-shadow: 0 8px 32px rgba(55,48,131,.08);
}

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 28px; background: none; border: none; border-bottom: none;
  cursor: pointer; text-align: left;
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  color: var(--text-primary); transition: color .3s;
  letter-spacing: -.01em;
}
.faq-question:hover { color: var(--indigo); }

/* Icon container */
.faq-question svg {
  flex-shrink: 0; width: 28px; height: 28px; padding: 5px;
  background: rgba(55,48,131,.06); border: 1px solid rgba(55,48,131,.08);
  border-radius: 8px; color: var(--indigo);
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  background: var(--indigo); color: white; border-color: transparent;
  box-shadow: 0 4px 12px rgba(55,48,131,.2);
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .5s cubic-bezier(.16,1,.3,1);
}
.faq-item.active .faq-answer {
  max-height: 400px;
}
.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-secondary); font-size: 15px; line-height: 1.8;
  border-top: 1px solid rgba(55,48,131,.06); padding-top: 16px; margin: 0 28px;
  padding-left: 0; padding-right: 0;
}
.faq-answer strong { color: var(--text-primary); }

@media (max-width: 768px) {
  .faq__shape { display: none; }
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer p { margin: 0 20px; font-size: 14px; }
  .faq-question svg { width: 24px; height: 24px; padding: 4px; }
}

/* ═══════════════════════════════════════════
   CTA FINAL (Premium — full DS)
   ═══════════════════════════════════════════ */
.cta-final {
  position: relative; overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(180deg, #06050F 0%, #0A081F 15%, #0F0C2E 35%, #1E1A5A 55%, #0F0C2E 80%, #06050F 100%);
}

/* Noise */
.cta-final__noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}
/* Grid */
.cta-final__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(55,48,131,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,48,131,.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}
/* Dot grid */
.cta-final__dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(55,48,131,.12) 1px, transparent 1px);
  background-size: 32px 32px;
}
/* Orbs */
.cta-final__orb {
  position: absolute; border-radius: 50%; filter: blur(130px); pointer-events: none;
  will-change: transform;
}
.cta-final__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,150,104,.2) 0%, transparent 55%);
  top: -250px; right: -150px;
  animation: hero-blob-1 20s ease-in-out infinite;
}
.cta-final__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(55,48,131,.35) 0%, transparent 55%);
  bottom: -150px; left: -100px;
  animation: hero-blob-2 24s ease-in-out infinite;
}
.cta-final__orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,150,104,.12) 0%, transparent 55%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: hero-blob-3 18s ease-in-out infinite;
}
/* Shapes */
.cta-final__shape {
  position: absolute; pointer-events: none; opacity: .06; z-index: 2;
}
.cta-final__shape--1 {
  width: 140px; height: 140px; border: 2px solid rgba(13,150,104,.5);
  border-radius: 50%; top: 12%; left: 8%;
  animation: hero-shape-1 14s ease-in-out infinite;
}
.cta-final__shape--2 {
  width: 70px; height: 70px; border: 2px solid rgba(255,255,255,.2);
  border-radius: 12px; bottom: 15%; right: 6%; transform: rotate(45deg);
  animation: hero-shape-2 11s ease-in-out infinite;
}
.cta-final__shape--3 {
  width: 100px; height: 100px; border: 1.5px solid rgba(55,48,131,.4);
  border-radius: 50%; top: 60%; right: 15%;
  animation: hero-shape-3 16s ease-in-out infinite;
}
/* Beams */
.cta-final__beam {
  position: absolute; pointer-events: none; z-index: 2;
}
.cta-final__beam--h {
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(13,150,104,.15) 30%, rgba(13,150,104,.3) 50%, rgba(13,150,104,.15) 70%, transparent 100%);
  background-size: 300% 100%;
  animation: hero-beam-h 10s ease-in-out infinite;
}
.cta-final__beam--v {
  top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(55,48,131,.12) 30%, rgba(55,48,131,.25) 50%, rgba(55,48,131,.12) 70%, transparent 100%);
  background-size: 100% 300%;
  animation: hero-beam-v 12s ease-in-out infinite;
}
/* Spotlight */
.cta-final__spotlight {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(55,48,131,.15) 0%, rgba(13,150,104,.04) 30%, transparent 60%);
}

.cta-final .container { position: relative; z-index: 10; }
.cta-final-inner { text-align: center; max-width: 700px; margin: 0 auto; }

.cta-final h2 {
  color: var(--white); margin-bottom: 20px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -.03em;
}
.cta-final p {
  color: rgba(255,255,255,.6); font-size: 18px;
  margin-bottom: 40px; line-height: 1.7;
}
.cta-final-actions { margin-bottom: 20px; }

/* Shiny CTA button */
@property --cta-final-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes cta-final-spin { to { --cta-final-angle: 360deg; } }

.cta-final .btn-primary {
  --cta-final-angle: 0deg;
  background:
    linear-gradient(var(--accent), var(--accent)) padding-box,
    conic-gradient(from var(--cta-final-angle), transparent 0%, rgba(255,255,255,.15) 10%, rgba(255,255,255,.5) 18%, rgba(255,255,255,.15) 30%, transparent 45%) border-box;
  border: 1.5px solid transparent;
  border-radius: 9999px; padding: 18px 44px;
  box-shadow: 0 8px 40px rgba(13,150,104,.3), inset 0 1px 0 rgba(255,255,255,.12);
  animation: cta-final-spin 3s linear infinite;
  font-size: 16px;
}
.cta-final .btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 60px rgba(13,150,104,.4), inset 0 1px 0 rgba(255,255,255,.15);
}

.cta-final-sub {
  color: rgba(255,255,255,.4); font-size: 13px; font-weight: 500;
}

@media (max-width: 768px) {
  .cta-final { padding: 80px 0; }
  .cta-final__shape, .cta-final__beam { display: none; }
  .cta-final__orb--3 { display: none; }
  .cta-final .btn-primary { padding: 16px 36px; font-size: 15px; }
}

/* ═══════════════════════════════════════════
   OTHER SERVICES (White + DS)
   ═══════════════════════════════════════════ */
.other-services {
  position: relative; background: white; overflow: hidden;
}
.other-services__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(55,48,131,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.other-services__orb {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.other-services__orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(55,48,131,.06) 0%, transparent 55%);
  top: -100px; right: -80px;
}
.other-services__orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(13,150,104,.04) 0%, transparent 55%);
  bottom: -80px; left: -60px;
}
.other-services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,48,131,.1), transparent);
  z-index: 2;
}
.other-services .container { position: relative; z-index: 5; }

.other-services-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.other-services-text .section-tag {
  background: rgba(55,48,131,.06); color: var(--indigo);
}
.other-services-text h2 {
  color: var(--text-primary); margin-bottom: 16px;
}
.other-services-text h2 em { color: var(--accent); }
.other-services-text p {
  color: var(--text-secondary); font-size: 15px;
  line-height: 1.7; margin-bottom: 28px;
}

/* Service cards */
.other-services-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.service-mini {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 20px;
  background: white; border: 1.5px solid rgba(55,48,131,.08);
  border-radius: 16px;
  color: var(--text-primary); font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 2px 12px rgba(55,48,131,.03);
  position: relative; overflow: hidden;
}
.service-mini::before {
  content: ''; position: absolute; top: 8px; bottom: 8px; left: 0;
  width: 3px; border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--indigo), var(--accent));
  opacity: .3; transition: opacity .4s;
}
.service-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(55,48,131,.15);
  box-shadow: 0 12px 32px rgba(55,48,131,.08);
}
.service-mini:hover::before { opacity: .7; }

.service-mini__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(55,48,131,.06); border: 1px solid rgba(55,48,131,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .4s cubic-bezier(.16,1,.3,1);
}
.service-mini__icon svg {
  width: 20px; height: 20px; color: var(--indigo); stroke-width: 1.5;
  transition: all .4s;
}
.service-mini:hover .service-mini__icon {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(55,48,131,.15);
}
.service-mini:hover .service-mini__icon svg { color: white; }

/* CTA button */
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  background: white; border: 1.5px solid rgba(55,48,131,.12);
  color: var(--indigo); font-family: var(--font-heading);
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 2px 12px rgba(55,48,131,.04);
}
.btn-outline-light:hover {
  border-color: rgba(55,48,131,.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55,48,131,.08);
}
.btn-outline-light svg { transition: transform .3s; }
.btn-outline-light:hover svg { transform: translateX(4px); }

@media (max-width: 1024px) {
  .other-services-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .other-services-list { grid-template-columns: 1fr; }
  .other-services-text { text-align: center; }
  .btn-outline-light { margin: 0 auto; }
}

/* ═══════════════════════════════════════════
   FOOTER (Design System — matches site)
   ═══════════════════════════════════════════ */
.footer {
  position: relative;
  background: linear-gradient(180deg, #0A0821 0%, #05030F 100%);
  padding: 80px 0 0; overflow: hidden; z-index: 1;
}
/* Background layers */
.footer__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.footer__bg-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 20% 0%, rgba(55,48,131,.08) 0%, transparent 60%),
    radial-gradient(ellipse 600px 350px at 80% 100%, rgba(13,150,104,.06) 0%, transparent 60%);
}
.footer__bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 10%, transparent 70%);
  opacity: .4;
}
.footer__bg-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .15; pointer-events: none; }
.footer__bg-orb--1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--indigo) 0%, transparent 70%); top: -150px; left: -100px; }
.footer__bg-orb--2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); bottom: -100px; right: -80px; }
/* Edge */
.footer__edge {
  position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 1;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.08) 20%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.08) 80%, transparent 100%);
}
.footer__edge::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 40px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,255,255,.03) 0%, transparent 100%);
  pointer-events: none;
}

.footer .container { position: relative; z-index: 2; }

/* Main grid */
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo { height: 32px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand { max-width: 320px; }
.footer-brand p {
  color: rgba(255,255,255,.45); font-size: 14px;
  line-height: 1.7; margin-bottom: 20px;
}
/* Social links */
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.footer-social a:hover {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15);
  color: white; transform: translateY(-2px);
}
.footer-social a svg { width: 16px; height: 16px; }

/* Columns */
.footer-col h4 {
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.6); font-size: 14px;
  text-decoration: none; transition: all .3s;
  display: inline-block; width: fit-content;
}
.footer-col a:hover { color: white; transform: translateX(4px); }

/* Bottom */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0 28px;
}
.footer-bottom span { color: rgba(255,255,255,.3); font-size: 12px; }
.footer-bottom-links { display: flex; gap: 12px; }
.footer-bottom-links a {
  color: rgba(255,255,255,.4); font-size: 12px;
  text-decoration: none; transition: color .3s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 768px) {
  .footer { padding: 60px 0 0; }
  .footer .container { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ═══════════════════════════════════════════
   WPP FLOAT
   ═══════════════════════════════════════════ */
.wpp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wpp-green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: all 0.3s ease; text-decoration: none;
}
.wpp-float svg { width: 28px; height: 28px; fill: var(--white); }
.wpp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════ */
#ck-banner { position:fixed; bottom:0; left:0; right:0; background:#1a1650; z-index:10000; transform:translateY(100%); transition:transform .4s cubic-bezier(.16,1,.3,1); box-shadow:0 -4px 32px rgba(0,0,0,.35); border-top:1px solid rgba(255,255,255,.08); }
#ck-banner.ck-show { transform:translateY(0); }
.ck-inner { max-width:1200px; margin:0 auto; padding:20px 32px; display:flex; align-items:center; gap:24px; }
.ck-text { flex:1; font-size:.875rem; color:rgba(255,255,255,.8); line-height:1.65; min-width:280px; }
.ck-text strong { color:#fff; }
.ck-link { color:#10B981; text-decoration:underline; text-underline-offset:2px; }
.ck-actions { display:flex; gap:12px; flex-shrink:0; }
.ck-btn { padding:11px 24px; border-radius:8px; font-size:.875rem; font-weight:600; cursor:pointer; border:none; transition:all .2s ease; white-space:nowrap; }
.ck-aceitar { background:#10B981; color:#fff; box-shadow:0 2px 8px rgba(16,185,129,.3); }
.ck-aceitar:hover { background:#0b8459; transform:translateY(-1px); }
.ck-recusar { background:transparent; color:rgba(255,255,255,.8); border:1px solid rgba(255,255,255,.3); }
.ck-recusar:hover { background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (768px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .other-services-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }

  /* Hero */
  .hero { padding: 60px 0 40px; min-height: auto; }
  .hero-badge { font-size: 12px; padding: 6px 16px; margin-bottom: 20px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-trust { gap: 12px; }

  .trust-item { font-size: 12px; }

  /* Buttons mobile */
  .btn-primary { padding: 14px 28px; font-size: 14px; }
  .btn-lg { padding: 16px 32px; font-size: 15px; }

  /* Metrics */
  .metrics { padding: 32px 0; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .metric-number { font-size: 1.75rem; }

  /* CTA Final */
  .cta-final { padding: 60px 0; }

  /* Other services */
  .other-services-list { grid-template-columns: 1fr; }
  .other-services-text { text-align: center; }
  .other-services-text .btn-outline-light { margin: 0 auto; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Cookie */
  .ck-inner { flex-direction:column; align-items:stretch; gap:16px; padding:20px 16px; }
  .ck-actions { width:100%; display:flex; }
  .ck-btn { flex:1; text-align:center; padding:13px 20px; }

  /* WPP float */
  .wpp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .wpp-float svg { width: 26px; height: 26px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (375px)
   ═══════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-trust { flex-direction: column; align-items: center; gap: 8px; }
  .pricing-value { font-size: 2.25rem; }
}

/* Exit popup: estilos 100% inline via JS — nenhuma classe CSS necessária */
