/* 247 Virtual Solution — Violet & Magenta SaaS */
:root {
  --navy: #0F172A;
  --navy-soft: #1A1E35;
  --ink: #0F172A;
  --text: #1E293B;
  --mute: #64748B;
  --line: #E2E8F0;
  --paper: #FFFFFF;
  --pearl: #F8FAFC;
  --pink: #EC4899;
  --violet: #8B5CF6;
  --magenta: #D946EF;
  --grad: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
  --grad-cta: linear-gradient(105deg, #1E3A8A 0%, #7C3AED 50%, #DB2777 100%);
  --grad-support: linear-gradient(90deg, #A78BFA 0%, #C026D3 100%);
  --green: #16A34A;
  --green-soft: #DCFCE7;
  --orange: #F97316;
  --blue: #0EA5E9;
  --teal: #14B8A6;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--violet);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* —— Atmosphere —— */
.page-bg {
  position: relative;
  isolation: isolate;
}
.page-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: var(--pearl);
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
}
.glow--pink { background: #F9A8D4; width: 420px; height: 420px; }
.glow--violet { background: #C4B5FD; width: 380px; height: 380px; }
.glow--blue { background: #BAE6FD; width: 360px; height: 360px; }

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: 3rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  border-radius: 0.45rem;
}

.nav-desktop {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 0.15rem;
}
.nav-desktop > a,
.nav-dropdown-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}
.nav-desktop > a:hover,
.nav-dropdown-btn:hover,
.nav-desktop > a[aria-current="page"] {
  color: var(--navy);
  background: rgba(139, 92, 246, 0.08);
}

.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown-btn svg { width: 12px; height: 12px; opacity: 0.6; }
.mega-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: min(92vw, 56rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 120;
}
.nav-dropdown.is-open .mega-menu,
.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.25rem;
}
.mega-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.mega-col h4 a:hover { color: var(--violet); }
.mega-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--mute);
  padding: 0.2rem 0;
  transition: color 0.15s;
}
.mega-col a:hover { color: var(--violet); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.header-phone svg { width: 16px; height: 16px; color: var(--violet); }

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--navy);
  margin: 2.5px 0;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--paper);
  z-index: 99;
  overflow-y: auto;
  padding: 1.25rem 1.25rem 3rem;
  border-top: 1px solid var(--line);
}
.mobile-nav.is-open { display: block; }
.mobile-nav > a,
.mobile-pillar-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  text-align: left;
}
.mobile-pillar-links {
  display: none;
  padding: 0.5rem 0 0.75rem 0.75rem;
}
.mobile-pillar.is-open .mobile-pillar-links { display: block; }
.mobile-pillar-links a {
  display: block;
  padding: 0.4rem 0;
  color: var(--mute);
  font-size: 0.925rem;
}
.mobile-nav-cta { margin-top: 1.25rem; }

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .header-phone { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .mega-grid { grid-template-columns: repeat(6, 1fr); }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.85rem 1.35rem;
  border-radius: 0.7rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary {
  background: var(--navy-soft);
  color: #fff;
  box-shadow: 0 8px 20px rgba(26, 30, 53, 0.2);
}
.btn--primary:hover { background: var(--navy); }
.btn--ghost {
  background: var(--paper);
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: #CBD5E1; background: #fff; }
.btn--white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  border-radius: 0.55rem;
}
.btn.is-loading { opacity: 0.7; pointer-events: none; }

/* —— Badges —— */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--violet);
}
.badge--soft {
  background: #FDF2F8;
  border-color: #FBCFE8;
  color: #DB2777;
}
.badge--dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}
.badge svg { width: 14px; height: 14px; }

/* —— Hero —— */
.hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 1rem 0 1rem;
}
.hero-copy .lead {
  color: var(--mute);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-soft);
}
.trust-row svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.live-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .live-card { animation: none; }
}
.live-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.15rem 1.25rem 0.75rem;
}
.live-card-head h2 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
}
.live-card-head p {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.live-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 0 1.15rem 1.15rem;
}
.live-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: #FAFBFC;
}
.live-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.live-icon svg { width: 14px; height: 14px; }
.live-icon--pink { background: linear-gradient(135deg, #EC4899, #DB2777); }
.live-icon--orange { background: linear-gradient(135deg, #FB923C, #F97316); }
.live-icon--blue { background: linear-gradient(135deg, #38BDF8, #0EA5E9); }
.live-icon--teal { background: linear-gradient(135deg, #2DD4BF, #14B8A6); }
.live-icon--violet { background: linear-gradient(135deg, #A78BFA, #8B5CF6); }
.live-icon--navy { background: linear-gradient(135deg, #334155, #0F172A); }
.live-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 700;
}
.live-item span {
  font-size: 0.72rem;
  color: var(--mute);
  font-weight: 600;
}
.live-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--navy-soft);
  color: #fff;
  padding: 0.95rem 1.25rem;
}
.live-foot p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.live-foot strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
}
.live-bolt {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.2);
}
.live-bolt svg { width: 16px; height: 16px; color: #fff; }

@media (min-width: 900px) {
  .hero { padding: 4rem 0 3rem; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

/* —— Stats —— */
.stats {
  padding: 0 0 3rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stat {
  padding: 1.35rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-child(n+3) { border-bottom: none; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}
.stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: none; border-right: 1px solid var(--line); }
  .stat:last-child { border-right: none; }
}

/* —— Sections —— */
.section { padding: 4rem 0; position: relative; }
.section--tight { padding: 3rem 0; }
.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.section-head .badge { margin-bottom: 0.85rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-head p { color: var(--mute); }
.section-label {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.5rem;
}

/* —— Catalog —— */
.catalog-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.15rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  height: 100%;
}
.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}
.catalog-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 1rem;
}
.catalog-icon svg { width: 18px; height: 18px; }
.catalog-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}
.catalog-card p {
  color: var(--mute);
  font-size: 0.925rem;
  flex: 1;
  margin-bottom: 1.1rem;
}
.catalog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.catalog-foot svg { width: 16px; height: 16px; }
.pillar-mkt .catalog-icon { background: linear-gradient(135deg, #F472B6, #DB2777); }
.pillar-mkt .catalog-foot { color: #DB2777; }
.pillar-leads .catalog-icon { background: linear-gradient(135deg, #FB923C, #EA580C); }
.pillar-leads .catalog-foot { color: #EA580C; }
.pillar-dev .catalog-icon { background: linear-gradient(135deg, #38BDF8, #0284C7); }
.pillar-dev .catalog-foot { color: #0284C7; }
.pillar-bill .catalog-icon { background: linear-gradient(135deg, #2DD4BF, #0D9488); }
.pillar-bill .catalog-foot { color: #0D9488; }
.pillar-sup .catalog-icon { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.pillar-sup .catalog-foot { color: #7C3AED; }
.pillar-va .catalog-icon { background: linear-gradient(135deg, #475569, #0F172A); }
.pillar-va .catalog-foot { color: #334155; }

@media (min-width: 640px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* —— Why us —— */
.why-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
.why-copy .badge { margin-bottom: 0.85rem; }
.why-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.why-copy > p {
  color: var(--mute);
  margin-bottom: 1.25rem;
  max-width: 32rem;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.975rem;
}
.why-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--violet);
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 0.9rem;
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.feature-card p { color: var(--mute); font-size: 0.925rem; }

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .why-grid { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; }
}

/* —— Pillar panel (featured / hub) —— */
.pillar-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pillar-panel-head {
  background: var(--grad-support);
  padding: 1.75rem 1.5rem;
  color: #fff;
  display: grid;
  gap: 1rem;
}
.pillar-panel-head-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.pillar-panel-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}
.pillar-panel-icon svg { width: 18px; height: 18px; color: #fff; }
.pillar-panel-head .eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}
.pillar-panel-head h2,
.pillar-panel-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.pillar-panel-head p {
  opacity: 0.92;
  max-width: 36rem;
  font-size: 0.975rem;
}
.pillar-panel-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.pillar-panel-btn:hover { background: rgba(255, 255, 255, 0.3); }
.pillar-panel-body {
  padding: 1.5rem;
  display: grid;
  gap: 0.85rem;
}
.subsvc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  height: 100%;
}
.subsvc-card:hover {
  border-color: #C4B5FD;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.subsvc-card .icon-outline {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--violet);
  margin-bottom: 0.65rem;
}
.subsvc-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.subsvc-card p {
  color: var(--mute);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.avail {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
}
.avail svg { width: 14px; height: 14px; }

@media (min-width: 720px) {
  .pillar-panel-body { grid-template-columns: repeat(2, 1fr); padding: 1.75rem; gap: 1rem; }
  .pillar-panel-head { padding: 2rem 2rem; }
}
@media (min-width: 960px) {
  .pillar-panel-body { grid-template-columns: repeat(3, 1fr); }
}

.pillar-panel--mkt .pillar-panel-head { background: linear-gradient(90deg, #F472B6, #DB2777); }
.pillar-panel--leads .pillar-panel-head { background: linear-gradient(90deg, #FB923C, #EA580C); }
.pillar-panel--dev .pillar-panel-head { background: linear-gradient(90deg, #38BDF8, #0284C7); }
.pillar-panel--bill .pillar-panel-head { background: linear-gradient(90deg, #2DD4BF, #0D9488); }
.pillar-panel--sup .pillar-panel-head { background: var(--grad-support); }
.pillar-panel--va .pillar-panel-head { background: linear-gradient(90deg, #475569, #0F172A); }

/* —— How we work —— */
.how {
  background: radial-gradient(ellipse at 50% 30%, #3B0764 0%, #0F172A 55%, #020617 100%);
  color: #fff;
  border-radius: 0;
  margin: 0;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.how .section-head h2 { color: #fff; }
.how .section-head p { color: rgba(255, 255, 255, 0.65); }
.how-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.how-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  backdrop-filter: blur(8px);
  transition: background 0.25s, transform 0.25s;
}
.how-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.how-card .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #F0ABFC;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.how-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.925rem;
}
@media (min-width: 640px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
}

/* —— Industries —— */
.industries-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #F9A8D4;
}
.industry-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #FDF2F8;
  color: #DB2777;
  display: grid;
  place-items: center;
}
.industry-icon svg { width: 18px; height: 18px; }
.industry-card span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  line-height: 1.3;
}
@media (min-width: 720px) {
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
}

/* —— Testimonials —— */
.stories-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.story-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem 1.35rem;
  box-shadow: var(--shadow);
}
.story-quote {
  position: absolute;
  top: -0.85rem;
  left: 1.15rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35);
}
.story-quote svg { width: 14px; height: 14px; }
.stars {
  display: flex;
  gap: 0.15rem;
  color: #FBBF24;
  margin-bottom: 0.85rem;
}
.stars svg { width: 16px; height: 16px; }
.story-card blockquote {
  color: var(--text);
  font-size: 0.975rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}
.story-card cite {
  display: block;
  font-style: normal;
}
.story-card cite strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.925rem;
  color: var(--navy);
  font-weight: 700;
}
.story-card cite span {
  font-size: 0.8rem;
  color: var(--mute);
}
@media (min-width: 800px) {
  .stories-grid { grid-template-columns: repeat(3, 1fr); }
}

/* —— CTA banner —— */
.cta-banner {
  margin-top: 3rem;
  background: var(--grad-cta);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  color: #fff;
  display: grid;
  gap: 1.5rem;
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
}
.cta-banner .badge { margin-bottom: 0.85rem; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}
.cta-banner p {
  opacity: 0.9;
  max-width: 32rem;
  font-size: 0.975rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 800px) {
  .cta-banner {
    grid-template-columns: 1.4fr auto;
    align-items: center;
    padding: 2.25rem 2.25rem;
  }
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.page-hero .badge { margin-bottom: 0.85rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  max-width: 40rem;
}
.page-hero .lead {
  color: var(--mute);
  max-width: 38rem;
  margin-bottom: 1.5rem;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--mute);
  margin-bottom: 1rem;
}
.breadcrumbs a:hover { color: var(--violet); }
.breadcrumbs span[aria-hidden] { opacity: 0.5; }

/* —— Content blocks —— */
.prose-grid {
  display: grid;
  gap: 1rem;
}
.prose-grid--2 { }
@media (min-width: 720px) {
  .prose-grid--2 { grid-template-columns: 1fr 1fr; }
  .prose-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.value-card p { color: var(--mute); font-size: 0.925rem; }

/* —— Contact form —— */
.contact-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 880px) {
  .contact-layout { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
}
.contact-aside h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.contact-aside p { color: var(--mute); margin-bottom: 1.5rem; }
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-meta a,
.contact-meta div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--navy);
}
.contact-meta span { font-size: 0.875rem; color: var(--mute); }
.contact-meta svg {
  width: 20px;
  height: 20px;
  color: var(--violet);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #FAFBFC;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #A78BFA;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
  background: #fff;
}
.form-field textarea { min-height: 8rem; resize: vertical; }
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.form-status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.25rem;
}
.form-status--pending { color: var(--mute); }
.form-status--success { color: var(--green); }
.form-status--error { color: #DC2626; }

/* —— Footer —— */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .brand-logo {
  background: #f3f4f6;
  padding: 0.2rem 0.35rem;
  border-radius: 0.5rem;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 22rem;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.85rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: #E9D5FF; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}
.footer-bottom a:hover { color: #fff; }
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* —— Reveal motion —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* —— FAQ —— */
.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.faq-item h3,
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { margin-bottom: 0.55rem; }
.faq-item p { color: var(--mute); font-size: 0.925rem; }
