/* ══════════════════════════════════════════════════════
   BREAKTHROUGH BACK OFFICE — v5
   
   Design intent:
   • Fonts: "Outfit" from Google Fonts — geometric, clean,
     professional. Confident without being decorative.
     Consistent weight across all headings.
   • Background: Fixed radial orb gradients only —
     no canvas particles, no SVG mountains, no noise.
     Subtle luminous spots give depth without busyness.
   • Pricing tiles: ALL equal at rest. Zero pre-highlight.
     Hover-only lift/glow, identical on every card.
   • Header: 88px tall, logo at 58px — genuinely readable.
   • Color: Deep navy #0a0f1f from v6, steel-blue accents.
══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg:        #0a0f1f;
  --bg-panel:  #0e1628;
  --bg-card:   #111e35;
  --bg-stripe: rgba(255,255,255,0.025);

  --text:      #eef4ff;
  --text-2:    #9ab4d4;
  --text-3:    #4d6680;

  --blue:      #2563eb;
  --blue-lt:   #3b82f6;
  --blue-dk:   #1d4ed8;
  --steel:     #60a5fa;
  --cyan:      #22d3ee;

  --border:    rgba(32,48,71,0.9);    /* matches v6 exactly */
  --border-md: rgba(37,99,235,0.22);
  --border-hi: rgba(37,99,235,0.48);

  --shadow:    rgba(0,0,0,0.55);

  --r:         14px;
  --r-lg:      18px;
  --r-xl:      22px;

  --header-h:  76px;
  --ease:      cubic-bezier(0.22,1,0.36,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  /*
    Subtle ambient background — three techniques layered:
    1. Two large radial gradients (top-left cyan, top-right blue) = v6 orbs
    2. Very faint diagonal line texture via repeating-linear-gradient
       — adds tactile depth without visual noise
    3. Linear gradient ties top/bottom together
  */
  background-image:
    radial-gradient(1100px 520px at 13% -8%,  rgba(34,211,238,0.10), transparent 60%),
    radial-gradient(1100px 560px at 91%  2%,  rgba(37,99,235,0.13),  transparent 65%),
    repeating-linear-gradient(
      125deg,
      transparent,
      transparent 42px,
      rgba(37,99,235,0.022) 42px,
      rgba(37,99,235,0.022) 43px
    ),
    linear-gradient(180deg, #0a0f1f 0%, #0c1526 55%, #0a0f1f 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── AMBIENT ORB (scrolling layer matching v6) ── */
.bg-orbs {
  position: fixed;
  inset: -10% -10% auto -10%;
  height: 62vh;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(360px 240px at 13% 40%, rgba(34,211,238,0.13), transparent 62%),
    radial-gradient(520px 340px at 87% 28%, rgba(37,99,235,0.13), transparent 62%);
}

/* ── LAYOUT ── */
.wrap      { position: relative; z-index: 1; }
.container { width: min(1180px, 93vw); margin-inline: auto; }
.section   { padding: 80px 0; position: relative; z-index: 1; }
.section-alt {
  background: var(--bg-stripe);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.anchor { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ── TYPOGRAPHY ──
   Outfit at weight 700 for headings: professional, geometric,
   reads as financial-services — not a tech startup decorative face.
   NO gradient text on section headings. Clean white only.
   Gradient reserved for one hero accent line only.
*/
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  line-height: 1.12;
}
h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(24px, 3.1vw, 40px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
h3 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
h4 { font-size: 15px; font-weight: 600; }

p { font-size: 15px; color: var(--text-2); line-height: 1.78; }
strong { color: var(--text); font-weight: 600; }

/* Accent gradient — used sparingly on hero line only */
.grad {
  background: linear-gradient(112deg, var(--blue-lt) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.07em; /* prevent descender clipping */
  display: inline-block;
}

/* Eyebrow label — subtle, not loud */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34,211,238,0.07);
  border: 1px solid rgba(34,211,238,0.18);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* Section heading block */
.sec-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.sec-head h2 { margin-bottom: 12px; }
.sec-head p  { font-size: 16px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r);
  padding: 12px 22px;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s, background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { flex-shrink: 0; transition: transform 0.18s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,99,235,0.38);
  border-color: transparent;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--blue-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-md);
}
.btn-ghost:hover, .btn-ghost:focus {
  border-color: var(--steel);
  color: var(--steel);
  transform: translateY(-1px);
}

.btn-lg    { font-size: 15px; padding: 14px 28px; border-radius: var(--r-lg); }
.btn-block { width: 100%; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);   /* 112px — logo at 88px is clearly legible */
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(37,99,235,0.15);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,1);
  box-shadow: 0 2px 20px rgba(10,15,31,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/*
  Logo: 774×774 square JPEG.
  At 58px tall inside an 88px header there's comfortable breathing room.
  object-fit: contain keeps it proportional regardless of aspect ratio.
*/
.brand { display: flex; flex-direction: row; align-items: center; flex-shrink: 0; gap: 14px; text-decoration: none; }
.brand-divider {
  width: 1px;
  height: 32px;
  background: rgba(37,99,235,0.2);
  flex-shrink: 0;
}
.brand-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  padding: 8px 13px;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--blue); background: rgba(37,99,235,0.07); }
.nav .btn { margin-left: 10px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  border-radius: 8px;
  background: #1e3a5f;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.26s, opacity 0.26s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(10,15,31,0.98);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px 24px;
  flex-direction: column; gap: 2px;
  z-index: 199; opacity: 0; transform: translateY(-4px);
  transition: opacity 0.22s, transform 0.22s;
  pointer-events: none;
}
.mobile-nav.open { display: flex; opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav a {
  font-size: 15px; font-weight: 500; color: var(--text-2);
  padding: 13px 4px; border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); }
.mobile-nav .btn { margin-top: 16px; justify-content: center; }

/* ══════ HERO ══════ */
.hero {
  padding: 88px 0 72px;
  position: relative;
  z-index: 1;
  /* overflow must NOT be hidden — gradient text descenders clip otherwise */
}

/* Very faint grid overlay — adds structure without visual noise */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 35%, black, transparent);
  mask-image: radial-gradient(ellipse 70% 75% at 50% 35%, black, transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-copy { max-width: 550px; }

/* H1: no gradient on the whole thing — one accent line only */
.hero-h1 {
  margin-bottom: 20px;
  padding-bottom: 3px; /* descender safety */
}
.hero-h1 .grad { display: block; line-height: 1.12; }

.hero-sub {
  font-size: 16px; line-height: 1.78;
  color: var(--text-2);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-sub strong { color: var(--text); }

/* Pain points */
.pain-list { margin-bottom: 36px; }
.pain-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-2); padding: 5px 0;
}
.pain-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
  border-radius: 50%; font-size: 10px; color: #f87171; font-weight: 700;
}

.hero-cta { margin-bottom: 26px; }

/* Trust pills */
.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--text-2);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 999px;
}
.trust-pill svg { color: var(--cyan); flex-shrink: 0; }

/* ── Dashboard card ── */
.hero-visual { position: relative; }
.dash-card {
  background: linear-gradient(150deg, var(--bg-card) 0%, var(--bg-panel) 100%);
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: 0 24px 72px rgba(0,0,0,0.6), 0 0 40px rgba(37,99,235,0.16);
  animation: card-float 7s ease-in-out infinite;
}
@keyframes card-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.dc-chrome {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}
.dc-dots { display: flex; gap: 5px; }
.dc-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dc-dots span:nth-child(1) { background: #ff5f57; }
.dc-dots span:nth-child(2) { background: #febc2e; }
.dc-dots span:nth-child(3) { background: #28c840; }
.dc-title { font-size: 12px; font-weight: 500; color: var(--text-3); flex: 1; text-align: center; letter-spacing: 0.04em; }
.dc-live  { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #22c55e; letter-spacing: 0.05em; text-transform: uppercase; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; animation: live-pulse 1.9s ease-in-out infinite; }
@keyframes live-pulse { 0%,100%{ opacity:1; box-shadow:0 0 6px #22c55e; } 50%{ opacity:0.3; box-shadow:none; } }

.dc-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 18px; }
.dc-stat {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 8px; text-align: center;
}
.dc-stat-label { font-size: 10px; font-weight: 500; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 5px; }
.dc-stat-val   { font-family: 'Outfit',sans-serif; font-size: 20px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 4px; }
.dc-stat-val.green { color: #22c55e; }
.dc-stat-delta { font-size: 11px; font-weight: 600; color: #22c55e; }

.dc-chart  { margin-bottom: 14px; }
.sparkline { width: 100%; height: 68px; display: block; overflow: visible; }
.spark-fill { fill: url(#sg); }
.spark-line {
  fill: none; stroke: url(#sl); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 700; stroke-dashoffset: 700;
  animation: draw-spark 2s 0.5s var(--ease) forwards;
}
@keyframes draw-spark { to { stroke-dashoffset: 0; } }
.dc-xlabels { display: flex; justify-content: space-between; padding: 0 2px; }
.dc-xlabels span { font-size: 10px; color: var(--text-3); }

.dc-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.dc-tag   { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2); color: var(--steel); }
.dc-tag.c { background: rgba(34,211,238,0.07); border-color: rgba(34,211,238,0.18); color: var(--cyan); }

/* Floating badges */
.float-badge {
  position: absolute; display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: #c8e8ff;
  background: rgba(10,15,31,0.92); border: 1px solid rgba(34,211,238,0.26);
  backdrop-filter: blur(10px); padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35); white-space: nowrap;
}
.fb-1 { top: -14px; right: -10px; animation: fb1 6s ease-in-out infinite; }
.fb-2 { bottom: -14px; left: -14px; animation: fb2 6.5s ease-in-out infinite; }
@keyframes fb1 { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } }
@keyframes fb2 { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(7px);  } }

/* ══════ METRICS STRIP ══════ */
.metrics-strip {
  position: relative; z-index: 1;
  background: var(--bg-stripe);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.metrics-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.metric { text-align: center; padding: 4px 20px; position: relative; }
.metric + .metric::before { content:''; position:absolute; left:0; top:14%; bottom:14%; width:1px; background:var(--border); }
.metric-num {
  font-family: 'Outfit',sans-serif;
  font-size: 30px; font-weight: 700; line-height: 1;
  background: linear-gradient(112deg, var(--blue-lt), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 5px;
}
.metric-lbl { font-size: 12px; font-weight: 400; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.07em; }

/* ══════ SERVICES ══════ */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.svc-card {
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 20px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  position: relative; overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s;
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  transform:scaleX(0); transform-origin:left;
  transition:transform 0.3s var(--ease);
}
.svc-card:hover { transform:translateY(-4px); border-color:var(--border-md); box-shadow:0 18px 52px rgba(0,0,0,0.4); }
.svc-card:hover::before { transform:scaleX(1); }
.svc-icon {
  width:46px; height:46px;
  background:rgba(37,99,235,0.1); border:1px solid rgba(37,99,235,0.18);
  border-radius:12px; display:flex; align-items:center; justify-content:center;
  color:var(--cyan); margin-bottom:16px; transition:background 0.22s;
}
.svc-card:hover .svc-icon { background:rgba(37,99,235,0.18); }
.svc-card h3 { font-size:17px; margin-bottom:10px; }
.svc-card p  { font-size:14px; line-height:1.65; margin-bottom:16px; }
.svc-badge {
  font-size:11px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
  padding:3px 10px; border-radius:999px;
  background:rgba(37,99,235,0.1); border:1px solid rgba(37,99,235,0.18); color:var(--steel);
}
.svc-badge.hi { background:rgba(34,211,238,0.07); border-color:rgba(34,211,238,0.18); color:var(--cyan); }

/* ══════ PROBLEM SECTION ══════ */
.problem-layout { display:grid; grid-template-columns:1fr 1.15fr; gap:72px; align-items:center; }
.problem-copy h2 { margin-bottom:16px; }
.problem-copy p  { margin-bottom:14px; }
.problem-copy .btn { margin-top:8px; }

.flip-row { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.fc { height:200px; perspective:900px; }
.fc-inner {
  width:100%; height:100%; position:relative;
  transform-style:preserve-3d; transition:transform 0.58s var(--ease);
}
.fc:hover .fc-inner { transform:rotateY(180deg); }
.fc-front, .fc-back {
  position:absolute; inset:0;
  backface-visibility:hidden; -webkit-backface-visibility:hidden;
  border-radius:var(--r); padding:20px 14px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; gap:9px;
}
.fc-front { background:var(--bg-card); border:1px solid var(--border); }
.fc-back  { background:linear-gradient(145deg,rgba(37,99,235,0.13),rgba(34,211,238,0.07)); border:1px solid var(--border-md); transform:rotateY(180deg); }
.fc-emoji { font-size:26px; width:50px; height:50px; border-radius:10px; display:flex; align-items:center; justify-content:center; }
.fc-emoji.red { background:rgba(239,68,68,0.1); border:1px solid rgba(239,68,68,0.2); }
.fc-emoji.amb { background:rgba(245,158,11,0.1); border:1px solid rgba(245,158,11,0.2); }
.fc-front h4 { font-size:14px; color:var(--text); }
.fc-front p  { font-size:12px; color:var(--text-2); line-height:1.5; }
.fc-back  h4 { font-size:13px; color:var(--cyan); }
.fc-back  p  { font-size:12px; color:var(--text-2); line-height:1.5; }

/* ══════ HOW IT WORKS ══════ */
.how-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:36px; position:relative; }
.how-steps::before {
  content:''; position:absolute; top:27px;
  left:calc(16.5% + 13px); right:calc(16.5% + 13px);
  height:1px; background:linear-gradient(90deg,rgba(37,99,235,0.35),rgba(34,211,238,0.35));
}
.how-step { display:flex; flex-direction:column; align-items:center; text-align:center; gap:16px; }
.step-num {
  width:54px; height:54px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  display:flex; align-items:center; justify-content:center;
  font-family:'Outfit',sans-serif; font-size:17px; font-weight:700; color:#fff;
  box-shadow:0 0 0 7px rgba(37,99,235,0.1), 0 8px 22px rgba(37,99,235,0.35);
  position:relative; z-index:1; flex-shrink:0;
}
.how-step h3 { font-size:17px; margin-bottom:6px; }
.how-step p  { font-size:14px; line-height:1.72; max-width:275px; }
.how-step strong { color:var(--text); }

/* ══════ PRICING ══════
   RULES (matching v6's approach exactly):
   ─ All three cards share identical border, background, shadow at rest
   ─ No card is scaled up, highlighted, or visually promoted by default
   ─ One badge label per card (Starter / Pro / Executive+) — purely informational
   ─ The ONLY visual change is on hover: lift + glow, same for all
   ─ Visitor chooses based on content, not visual manipulation
*/
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: stretch;
  gap: 22px;
}
.plan {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl);
  padding: 28px 24px 24px;
  /* Identical background on all three */
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  min-height: 480px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s, background 0.22s;
}
/* HOVER ONLY — same rules apply to every card */
.plan:hover, .plan:focus-within {
  transform: translateY(-9px) scale(1.02);
  box-shadow: 0 28px 80px -10px rgba(37,99,235,0.45);
  border-color: var(--border-hi);
  background: linear-gradient(180deg, rgba(37,99,235,0.13), rgba(34,211,238,0.06));
}

.plan-badge {
  position: absolute; top: 14px; left: 18px;
  background: rgba(34,211,238,0.14); border: 1px solid rgba(34,211,238,0.3);
  color: #b9f3ff; font-size: 15px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.plan h3 {
  margin: 28px 0 8px;
  font-size: 15px; font-weight: 600;
  color: var(--text-2); line-height: 1.45; min-height: 48px;
}
.plan-price {
  font-family: 'Outfit',sans-serif;
  font-size: 34px; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  margin: 6px 0 2px; line-height: 1;
}
.plan-per     { font-size: 14px; color: var(--text-3); }
.plan-divider { height: 1px; background: var(--border); margin: 18px 0; }
.plan-features { flex:1; display:flex; flex-direction:column; gap:11px; margin-bottom:24px; }
.plan-features li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text-2); line-height:1.5; }
.chk { color:var(--cyan); font-weight:700; font-size:13px; flex-shrink:0; margin-top:1px; }
.plan-cta { margin-top:auto; }
.plan-note { text-align:center; font-size:13px; color:var(--text-3); margin-top:28px; }
.plan-note strong { color:var(--text-2); }

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px auto 0;
  max-width: 520px;
  background: linear-gradient(135deg, rgba(34,211,238,0.07), rgba(37,99,235,0.07));
  border: 1px solid rgba(34,211,238,0.25);
  border-radius: var(--r-lg);
  padding: 16px 22px;
}
.guarantee-icon {
  flex-shrink: 0;
  color: #22d3ee;
  display: flex;
  align-items: center;
}
.guarantee-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.guarantee-copy strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.guarantee-copy span {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ══════ ABOUT ══════ */
.about-layout { display:grid; grid-template-columns:1.1fr 1fr; gap:72px; align-items:center; }
.about-copy h2 { margin-bottom:18px; }
.about-copy p  { margin-bottom:14px; }
.values { display:flex; flex-direction:column; gap:12px; margin-top:26px; }
.val {
  display:flex; align-items:flex-start; gap:14px;
  padding:14px 16px; background:rgba(255,255,255,0.02);
  border:1px solid var(--border); border-radius:var(--r);
  transition:border-color 0.2s, background 0.2s;
}
.val:hover { border-color:var(--border-md); background:rgba(37,99,235,0.04); }
.val-icon {
  font-size:19px; width:40px; height:40px; flex-shrink:0;
  background:rgba(37,99,235,0.1); border:1px solid var(--border);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
}
.val strong { font-size:14px; font-weight:600; color:var(--text); display:block; margin-bottom:2px; }
.val span   { font-size:13px; color:var(--text-2); }
.about-card { background:var(--bg-card); border:1px solid var(--border-md); border-radius:var(--r-xl); padding:26px; box-shadow:0 8px 40px rgba(0,0,0,0.4); }
.about-logo-box {
  background:rgba(255,255,255,0.04); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:26px 20px; margin-bottom:20px;
  display:flex; align-items:center; justify-content:center;
}
.about-logo-box img { max-width:200px; width:100%; height:auto; }
.about-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.astat {
  background:rgba(255,255,255,0.025); border:1px solid var(--border);
  border-radius:var(--r); padding:14px 8px; text-align:center;
  display:flex; flex-direction:column; gap:4px;
}
.astat-n {
  font-family:'Outfit',sans-serif; font-size:20px; font-weight:700; line-height:1;
  background:linear-gradient(112deg,var(--blue-lt),var(--cyan));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.astat span:last-child { font-size:11px; color:var(--text-3); text-transform:uppercase; letter-spacing:0.06em; }

/* ══════ CTA BAND ══════ */
.cta-band {
  position:relative; overflow:hidden; padding:68px 0;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.cta-band::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(800px 240px at 0% 50%,  rgba(37,99,235,0.18), transparent 70%),
    radial-gradient(600px 240px at 100% 50%, rgba(34,211,238,0.09), transparent 70%);
}
.cta-inner { position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-copy h2 { font-size:clamp(22px,2.8vw,34px); margin-bottom:8px; }
.cta-copy p  { font-size:15px; color:var(--text-2); }

/* ══════ CONTACT ══════ */
.contact-sec { background:var(--bg-stripe); border-top:1px solid var(--border); }
.contact-layout { display:grid; grid-template-columns:1fr 1.4fr; gap:72px; align-items:start; }
.contact-copy h2 { margin-bottom:16px; }
.contact-copy p  { margin-bottom:20px; }
.contact-email {
  display:inline-flex; align-items:center; gap:10px;
  font-size:14px; font-weight:500; color:var(--cyan); transition:gap 0.2s;
}
.contact-email:hover { gap:14px; }
.email-icon {
  width:36px; height:36px;
  background:rgba(34,211,238,0.07); border:1px solid rgba(34,211,238,0.18);
  border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-form { background:var(--bg-card); border:1px solid var(--border-md); border-radius:var(--r-xl); padding:30px 26px; }
.f-row   { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.f-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.f-group:last-of-type { margin-bottom:0; }
label { font-size:13px; font-weight:500; color:var(--text-2); letter-spacing:0.02em; }
input, select, textarea {
  font-family:'Outfit',sans-serif; font-size:14px; color:var(--text);
  background:rgba(255,255,255,0.04); border:1.5px solid var(--border);
  border-radius:var(--r); padding:11px 14px; outline:none; width:100%;
  transition:border-color 0.2s, box-shadow 0.2s; -webkit-appearance:none;
}
input::placeholder, textarea::placeholder { color:var(--text-3); }
input:focus, select:focus, textarea:focus {
  border-color:rgba(37,99,235,0.46);
  box-shadow:0 0 0 3px rgba(37,99,235,0.1);
}
select {
  cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234d6680' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 13px center; padding-right:38px;
}
select option { background:var(--bg-card); color:var(--text); }
textarea { resize:vertical; min-height:110px; line-height:1.6; }
.f-submit { margin-top:8px; }
.f-success {
  display:flex; align-items:center; gap:10px; margin-top:14px;
  padding:12px 14px; border-radius:var(--r);
  background:rgba(34,211,238,0.06); border:1px solid rgba(34,211,238,0.18);
  font-size:14px; color:var(--cyan);
}
.f-success[hidden] { display:none; }

/* ══════ FOOTER ══════ */
.site-footer {
  border-top:1px solid rgba(37,99,235,0.15); background: rgba(255,255,255,1);
  padding:22px 0 16px; position:relative; z-index:1;
}
.footer-grid { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:28px; }
.f-brand { display:flex; flex-direction:column; gap:6px; }
.footer-logo { height:44px; width:auto; object-fit:contain; }
.f-brand p { font-size:12px; color:#64748b; }
.f-nav { display:flex; gap:4px; justify-content:center; flex-wrap:wrap; }
.f-nav a { font-size:13px; font-weight:400; color:#64748b; padding:6px 10px; border-radius:8px; transition:color 0.15s, background 0.15s; }
.f-nav a:hover { color:var(--blue); background:rgba(37,99,235,0.07); }
.f-right { text-align:right; display:flex; flex-direction:column; gap:5px; align-items:flex-end; }
.f-email { font-size:14px; font-weight:500; color:var(--blue); transition:color 0.2s; }
.f-email:hover { color:var(--blue-dk); }
.f-copy  { font-size:12px; color:#94a3b8; }

/* ══════ MODAL ══════ */
.modal { position:fixed; inset:0; display:none; z-index:300; }
.modal[aria-hidden="false"] { display:grid; place-items:center; }
.modal-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.72); backdrop-filter:blur(4px); }
.modal-box {
  position:relative; width:min(1380px,98vw); height:92vh;
  background:var(--bg-panel); border:1px solid var(--border-md);
  border-radius:var(--r-xl); box-shadow:0 30px 100px rgba(0,0,0,0.6);
  padding:18px; display:flex; flex-direction:column; gap:12px;
}
.modal-x {
  position:absolute; right:12px; top:10px;
  background:rgba(255,255,255,0.06); border:1px solid var(--border);
  border-radius:var(--r); width:34px; height:34px;
  font-size:19px; color:var(--text); display:flex; align-items:center; justify-content:center;
  transition:background 0.18s;
}
.modal-x:hover { background:rgba(255,255,255,0.12); }
.modal-box h2 { font-size:18px; }
.iframe-wrap { flex:1; border-radius:var(--r); overflow:hidden; border:1px solid var(--border); }
iframe { width:100%; height:100%; border:0; }
.fineprint { font-size:12px; color:var(--text-3); }
.fineprint a { color:var(--cyan); }

/* ══════ REVEAL ══════ */
.rv-up {
  opacity:0; transform:translateY(22px);
  transition:opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay:var(--d, 0s);
}
.rv-right {
  opacity:0; transform:translateX(20px);
  transition:opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay:var(--d, 0s);
}
.rv-up.in, .rv-right.in { opacity:1; transform:none; }

/* ══════ RESPONSIVE ══════ */
@media (max-width:1080px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .about-layout  { grid-template-columns:1fr; }
  .about-layout .rv-right { order: -1; }
  .about-card    { max-width:400px; }
  .problem-layout { grid-template-columns:1fr; gap:48px; }
}
@media (max-width:860px) {
  .hero-inner    { grid-template-columns:1fr; }
  .hero-visual   { display:none; }
  .metrics-inner { grid-template-columns:repeat(2,1fr); }
  .metric + .metric:nth-child(3)::before { display:none; }
  .pricing-grid  { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .how-steps     { grid-template-columns:1fr; gap:28px; }
  .how-steps::before { display:none; }
  .how-step      { flex-direction:row; text-align:left; align-items:flex-start; gap:18px; }
  .how-step > div { text-align:left; }
  .contact-layout { grid-template-columns:1fr; gap:40px; }
  .footer-grid   { grid-template-columns:1fr; text-align:center; }
  .f-right       { align-items:center; }
  .f-nav         { display:none; }
  .cta-inner     { flex-direction:column; text-align:center; }
}
@media (max-width:640px) {
  :root { --header-h:64px; }
  .nav        { display:none; }
  .nav-toggle { display:flex; }
  .brand-logo { height:36px; }
  .brand-divider { display:none; }
  .brand-tagline { font-size:10px; white-space:nowrap; }
  .hero       { padding:56px 0 48px; }
  .section    { padding:60px 0; }
  .services-grid  { grid-template-columns:1fr; }
  .flip-row { grid-template-columns:1fr; gap:16px; }
  .fc { height:auto; perspective:none; }
  .fc-inner { transform:none !important; display:flex; flex-direction:column; gap:0; position:static; }
  .fc-front, .fc-back { position:static; transform:none !important; backface-visibility:visible; -webkit-backface-visibility:visible; border-radius:14px; padding:20px; }
  .fc-back { display:block; margin-top:8px; }
  .f-row    { grid-template-columns:1fr; }
  .contact-form { padding:20px; }
  .modal[aria-hidden="false"] { display:block; }
  .modal-box { position:fixed; inset:0; width:100vw; height:100vh; border-radius:0; }
  .iframe-wrap { height:calc(100vh - 110px); }
}
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { transition-duration:.01ms !important; animation-duration:.01ms !important; }
}

/* ══════ SERVICES STRIP (v6 — replaces metrics numbers) ══════ */
/* Override metric-num to work as a service name instead of a large number */
.metric-icon {
  width: 44px; height: 44px;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin: 0 auto 12px;
  transition: background 0.2s;
}
.metric:hover .metric-icon { background: rgba(37,99,235,0.2); }

/* Service name — override the gradient number style */
.metrics-strip .metric-num {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: none;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
}
.metrics-strip .metric-lbl {
  font-size: 12px;
  color: var(--text-3);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.45;
}
/* More breathing room for service items */
.metrics-strip { padding: 36px 0; }
.metric { padding: 8px 20px; }

/* ══════ PAIN LABEL (above pain list) ══════ */
.pain-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 8px;
}

/* ══════ ABOUT CARD — logo only, no stats grid ══════ */
.about-card-simple {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 60%, #f5f8ff 100%);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.about-photo-box img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 5px solid rgba(37,99,235,0.25);
  box-shadow: 0 16px 56px rgba(37,99,235,0.18), 0 4px 16px rgba(0,0,0,0.12);
  display: block;
}

/* ══════ FOOTER — legible tagline on white ══════ */
.f-brand p {
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
}

/* ══════ Brand name emphasis in hero ══════ */
.brand-emphasis {
  color: var(--blue);
  font-weight: 700;
}
