/* ════════════════════════════════════════════════════════════
   DESIGN TOKENS — Light Mode, matched to SP Webtech logo
════════════════════════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-soft: #eff6ff;
  --bg-dark: #0f172a;

  /* Brand colors */
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --accent: #0ea5e9;
  --accent-light: #38bdf8;
  --accent-dim: rgba(14, 165, 233, 0.1);
  --accent-border: rgba(14, 165, 233, 0.25);

  /* Text */
  --text-heading: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --text-on-dark: #e2e8f0;

  /* Borders & Surfaces */
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --white: #ffffff;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);
  --shadow-card: 0 8px 28px rgba(15, 23, 42, 0.07);
  --shadow-accent: 0 12px 32px rgba(14, 165, 233, 0.22);

  /* Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 999px;

  /* Typography */
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --topbar-h: 42px;
  --nav-h: 76px;
  --container-max: 1180px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s var(--ease);
}

/* ════════════════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ════════════════════════════════════════════════════════════
   SHARED TYPOGRAPHY (used across all sections)
════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.75;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════════════════════
   BUTTONS (shared)
════════════════════════════════════════════════════════════ */
.btn-primary {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.35);
}
.btn-primary svg {
  transition: transform var(--transition);
}
.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-heading);
  background: var(--bg);
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════════════════ */
.topbar {
  height: var(--topbar-h);
  background: var(--bg-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: transform 0.35s var(--ease);
}
.topbar.hidden {
  transform: translateY(-100%);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 450;
  color: var(--text-on-dark);
  transition: color var(--transition);
  white-space: nowrap;
}
.topbar-item:hover {
  color: var(--accent-light);
}
.topbar-item svg {
  opacity: 0.75;
  flex-shrink: 0;
}
.topbar-static {
  cursor: default;
}
.topbar-static:hover {
  color: var(--text-on-dark);
}
.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.topbar-social a {
  color: var(--text-on-dark);
  opacity: 0.75;
  transition: all var(--transition);
  display: flex;
}
.topbar-social a:hover {
  color: var(--accent-light);
  opacity: 1;
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition:
    top 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(15, 23, 42, 0.07);
  border-bottom-color: var(--border-light);
}
.navbar.topbar-gone {
  top: 0;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}
.nav-logo:hover img {
  transform: scale(1.06) rotate(-3deg);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}
.logo-sp {
  color: var(--accent);
}
.logo-dot {
  color: var(--accent);
}

/* ── Nav Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 9px 16px;
  border-radius: var(--radius);
  position: relative;
  transition:
    color var(--transition),
    background var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}
.nav-link:hover {
  color: var(--text-heading);
  background: var(--bg-alt);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-link.active {
  color: var(--primary);
}

/* ── CTA Button ── */
.btn-quote {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 11px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.22);
  transition: all var(--transition);
}
.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30, 64, 175, 0.32);
}
.btn-quote svg {
  transition: transform var(--transition);
}
.btn-quote:hover svg {
  transform: translateX(3px);
}
.mobile-cta {
  display: none;
}
.desktop-cta {
  display: inline-flex;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 9px;
  flex-shrink: 0;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.hamburger:hover {
  border-color: var(--accent-border);
  background: var(--accent-dim);
}
.bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.open .bar:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
  background: var(--primary);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
  background: var(--primary);
}

/* ── Mobile Drawer ── */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-backdrop.visible {
  display: block;
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--topbar-h) + var(--nav-h) + 56px);
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 38%);
}

/* ── Background decoration ── */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.hero-blob-1 {
  width: 480px;
  height: 480px;
  top: -160px;
  right: -120px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.18) 0%,
    transparent 70%
  );
}
.hero-blob-2 {
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -140px;
  background: radial-gradient(
    circle,
    rgba(30, 64, 175, 0.1) 0%,
    transparent 70%
  );
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(30, 64, 175, 0.1) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 30% 35%,
    black 0%,
    transparent 75%
  );
}

/* ── Layout ── */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  flex: 1;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  width: fit-content;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5);
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(14, 165, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

/* ── Headline ── */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-heading);
  margin-bottom: 22px;
}
.hl-line {
  display: block;
}
.hl-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtext ── */
.hero-sub {
  font-size: 1.04rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

/* ── Actions ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* ── Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ════════════════════════════════════════════════════════════
   HERO VISUAL — Browser Mockup
════════════════════════════════════════════════════════════ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.browser-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Browser top bar */
.browser-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}
.browser-dots {
  display: flex;
  gap: 7px;
}
.bdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.bdot-red {
  background: #ff5f56;
}
.bdot-yellow {
  background: #ffbd2e;
}
.bdot-green {
  background: #27c93f;
}
.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.browser-url svg {
  color: #27c93f;
  flex-shrink: 0;
}

/* Browser content */
.browser-content {
  padding: 22px 22px 26px;
}

/* Mock nav */
.mock-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.mock-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  flex-shrink: 0;
}
.mock-nav-links {
  display: flex;
  gap: 12px;
  margin-left: 8px;
}
.mock-nav-links span {
  display: block;
  width: 32px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
}
.mock-nav-btn {
  width: 56px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  margin-left: auto;
}

/* Mock hero */
.mock-hero {
  margin-bottom: 26px;
}
.mock-pill {
  width: 110px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  margin-bottom: 16px;
}
.mock-heading {
  height: 15px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--text-heading), var(--text-body));
  margin-bottom: 10px;
  transform-origin: left;
}
.mock-h-1 {
  width: 88%;
}
.mock-h-2 {
  width: 58%;
  margin-bottom: 18px;
}
.mock-text {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  margin-bottom: 8px;
  transform-origin: left;
}
.mock-text-short {
  width: 68%;
  margin-bottom: 22px;
}
.mock-buttons {
  display: flex;
  gap: 10px;
}
.mock-btn {
  height: 34px;
  border-radius: var(--radius-sm);
}
.mock-btn-fill {
  width: 118px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.mock-btn-outline {
  width: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
}

/* Mock cards */
.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mock-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 12px;
  background: var(--bg-alt);
}
.mock-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  margin-bottom: 10px;
}
.mock-card-line {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  margin-bottom: 6px;
}
.mock-card-line.short {
  width: 60%;
  margin-bottom: 0;
}

/* ── Floating Cards ── */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  white-space: nowrap;
}
.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
}
.float-card small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.float-dot {
  width: 11px;
  height: 11px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: ripple-green 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes ripple-green {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.float-card-1 {
  top: 6%;
  right: -8%;
}
.float-card-2 {
  bottom: 22%;
  left: -12%;
}

/* Code snippet floating card */
.float-card-3 {
  bottom: -6%;
  right: 8%;
  background: var(--bg-dark);
  border: 1px solid #1e293b;
  padding: 14px 18px;
}
.float-code {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.5;
}
.fc-line {
  display: block;
}
.fc-indent {
  padding-left: 16px;
}
.fc-tag {
  color: #38bdf8;
}
.fc-name {
  color: #f472b6;
}
.fc-prop {
  color: #fbbf24;
}
.fc-str {
  color: #4ade80;
}

/* ── Scroll Indicator ── */
.hero-scroll {
  position: relative;
  z-index: 1;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-track {
  width: 24px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-thumb {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollThumb 2.2s ease-in-out infinite;
}
@keyframes scrollThumb {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(12px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
.hero-scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════════════════════ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Left content ── */
.about-content .section-eyebrow {
  justify-content: flex-start;
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 22px;
}
.about-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-checklist {
  margin: 26px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-heading);
}
.check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(14, 165, 233, 0.28);
}

/* ── Right pillar cards ── */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-border);
}
.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition:
    background var(--transition),
    color var(--transition);
}
.pillar-card:hover .pillar-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 9px;
}
.pillar-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Offset every 2nd card for a dynamic staggered look */
.about-pillars .pillar-card:nth-child(2),
.about-pillars .pillar-card:nth-child(4) {
  margin-top: 28px;
}

/* ════════════════════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: block;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.04) 0%,
    rgba(14, 165, 233, 0.06) 100%
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-border);
}
.service-card:hover::after {
  opacity: 1;
}

/* Number badge */
.service-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--border);
  transition: color var(--transition);
  z-index: 1;
}
.service-card:hover .service-num {
  color: var(--accent-light);
}

/* Icon */
.service-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}

.service-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 11px;
}
.service-text {
  position: relative;
  z-index: 1;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Arrow */
.service-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-muted);
  transition: all var(--transition);
}
.service-card:hover .service-arrow {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: translateX(4px);
}

/* Bottom CTA */
.services-cta {
  margin-top: 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.services-cta p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-heading);
}

/* ════════════════════════════════════════════════════════════
   PROCESS / TIMELINE SECTION
════════════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 8px 0;
}
/* Static center line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
/* Animated progress line (grows on scroll) */
.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 2px;
}

/* Step row */
.timeline-step {
  position: relative;
  width: 50%;
  padding: 0 46px 44px;
  box-sizing: border-box;
}
.timeline-step.left {
  left: 0;
  text-align: right;
}
.timeline-step.right {
  left: 50%;
  text-align: left;
}
.timeline-step:last-child {
  padding-bottom: 0;
}

/* Step card */
.step-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.step-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-border);
}

/* Icon inside card */
.step-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.timeline-step.left .step-icon {
  margin-left: auto;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 9px;
}
.step-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Number marker on the center line */
.step-marker {
  position: absolute;
  top: 4px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
  border: 4px solid var(--bg);
  z-index: 2;
}
.timeline-step.left .step-marker {
  right: -23px;
}
.timeline-step.right .step-marker {
  left: -23px;
}

/* ════════════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  margin-bottom: 28px;
}

/* ── Info panel (gradient) ── */
.contact-info {
  position: relative;
  background: linear-gradient(
    150deg,
    var(--primary-dark) 0%,
    var(--primary) 45%,
    var(--accent) 130%
  );
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  color: #fff;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
}
.contact-info-sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.ci-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ci-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 3px;
}
.ci-value {
  font-size: 0.98rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  transition: opacity var(--transition);
}
a.ci-value:hover {
  opacity: 0.8;
}
.ci-value-static {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.contact-social {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}
.contact-social-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}
.contact-social-links {
  display: flex;
  gap: 10px;
}
.contact-social-links a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    background var(--transition),
    transform var(--transition);
}
.contact-social-links a:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

/* ── Form ── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 7px;
}
.form-group label span {
  color: var(--accent);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-heading);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 15px;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  cursor: pointer;
}

/* Honeypot — hidden from humans */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit button + spinner */
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  position: relative;
}
.form-submit .btn-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-submit.loading {
  pointer-events: none;
  opacity: 0.85;
}
.form-submit.loading .btn-label,
.form-submit.loading .btn-arrow {
  display: none;
}
.form-submit.loading .btn-spinner {
  display: block;
}

/* Status message */
.form-status {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 0 2px;
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.success {
  color: #15803d;
}
.form-status.error {
  color: #dc2626;
}

/* ── Map ── */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 340px;
  background: var(--bg-alt);
}
.contact-map iframe {
  display: block;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 70px 0 28px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand column */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo img {
  height: 42px;
  width: auto;
}
.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: #fff;
}
.footer-about {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 330px;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: translateY(-3px);
}

/* Link columns */
.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  transition:
    color var(--transition),
    padding-left var(--transition);
  position: relative;
  width: fit-content;
}
.footer-links a::before {
  content: "→";
  position: absolute;
  left: -18px;
  opacity: 0;
  color: var(--accent-light);
  transition:
    opacity var(--transition),
    left var(--transition);
}
.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer-links a:hover::before {
  opacity: 1;
  left: -14px;
}

/* Contact column */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}
.footer-contact-list svg {
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition);
}
.footer-contact-list a:hover {
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 9px 18px;
  cursor: pointer;
  transition: all var(--transition);
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.back-to-top svg {
  transition: transform var(--transition);
}
.back-to-top:hover svg {
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
════════════════════════════════════════════════════════════ */
/* ── Hero ── */
.svc-hero {
  position: relative;
  padding: calc(var(--topbar-h) + var(--nav-h) + 60px) 0 64px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 60%);
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.svc-blob {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.16) 0%,
    transparent 70%
  );
  filter: blur(60px);
}
.svc-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.breadcrumb a {
  color: var(--text-body);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb .current {
  color: var(--primary);
  font-weight: 500;
}

.svc-hero-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
}
.svc-hero-icon svg {
  width: 38px;
  height: 38px;
}
.svc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 14px;
}
.svc-hero-tagline {
  font-size: 1.12rem;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.svc-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Overview + Features ── */
.svc-overview-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.svc-intro .section-eyebrow {
  justify-content: flex-start;
}
.svc-intro-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
}
.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.svc-feature {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.svc-feature-check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 3px 8px rgba(14, 165, 233, 0.25);
}
.svc-feature h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 5px;
}
.svc-feature p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.price-card-featured {
  background: linear-gradient(
    160deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--accent) 130%
  );
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 5px 11px;
  border-radius: var(--radius-full);
}
.price-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.price-card-featured .price-name {
  color: #fff;
}
.price-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 22px;
  min-height: 40px;
}
.price-card-featured .price-desc {
  color: rgba(255, 255, 255, 0.8);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.price-card-featured .price-amount {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.price-from {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.price-card-featured .price-from {
  color: rgba(255, 255, 255, 0.7);
}
.price-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
}
.price-card-featured .price-value {
  color: #fff;
}
.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 100%;
}
.price-card-featured .price-period {
  color: rgba(255, 255, 255, 0.7);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.price-features svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.price-card-featured .price-features li {
  color: rgba(255, 255, 255, 0.92);
}
.price-card-featured .price-features svg {
  color: #fff;
}

.price-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.price-card-featured .price-cta {
  background: #fff;
  color: var(--primary);
  border: none;
}
.price-card-featured .price-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.price-note-line {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 36px;
}
.price-note-line a {
  color: var(--accent);
  font-weight: 500;
}

/* ── FAQ accordion ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-heading);
}
.faq-chev {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-chev {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 320px;
}
.faq-a p {
  padding: 0 22px 20px;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── CTA strip ── */
.svc-cta-strip {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--accent) 130%
  );
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.svc-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.svc-cta-inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.btn-cta-white svg {
  transition: transform var(--transition);
}
.btn-cta-white:hover svg {
  transform: translateX(3px);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤1024px
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 48px;
  }
  .float-card-1 {
    right: -4%;
  }
  .float-card-2 {
    left: -6%;
  }
  .float-card-3 {
    right: 2%;
  }
  .about-inner {
    gap: 44px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .svc-overview-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — ≤900px (stack hero, hide visual)
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }

  /* About → single column */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content .section-eyebrow {
    justify-content: center;
  }
  .about-content .section-title {
    text-align: center;
  }
  .about-content {
    text-align: center;
  }
  .about-checklist {
    align-items: center;
  }
  .about-content .btn-primary {
    margin: 0 auto;
  }

  /* Contact → single column */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET NAVBAR ≤768px
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .desktop-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--topbar-h) + var(--nav-h));
    right: 0;
    bottom: 0;
    width: min(300px, 84vw);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px 16px;
    background: var(--bg);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-link {
    font-size: 0.98rem;
    padding: 13px 16px;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link.active {
    background: var(--accent-dim);
  }
  .mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    padding: 13px 20px;
  }

  /* Hide topbar on mobile, navbar moves to top */
  .topbar {
    display: none;
  }
  .navbar {
    top: 0;
  }
  .nav-links {
    top: var(--nav-h);
  }
  .hero {
    padding-top: calc(var(--nav-h) + 44px);
  }
  .svc-hero {
    padding-top: calc(var(--nav-h) + 40px);
  }

  /* Timeline → single left-aligned column */
  .timeline::before,
  .timeline-progress {
    left: 22px;
  }
  .timeline-step,
  .timeline-step.left,
  .timeline-step.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 36px 60px;
  }
  .timeline-step.left .step-icon {
    margin-left: 0;
  }
  .timeline-step.left .step-marker,
  .timeline-step.right .step-marker {
    left: 0;
    right: auto;
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤480px
════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  .nav-logo img {
    height: 38px;
  }
  .nav-logo-text {
    font-size: 1.1rem;
  }
  .nav-links {
    width: 100%;
  }
  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-sub {
    font-size: 0.96rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-outline {
    justify-content: center;
    width: 100%;
  }
  .hero-stats {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-num {
    font-size: 1.6rem;
  }
  .stat-divider {
    display: none;
  }
  .section {
    padding: 64px 0;
  }

  /* About pillars → single column, remove offset */
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-pillars .pillar-card:nth-child(2),
  .about-pillars .pillar-card:nth-child(4) {
    margin-top: 0;
  }

  /* Services → single column */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Contact → stack form fields, tighten padding */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-info {
    padding: 32px 24px;
  }
  .contact-form-wrap {
    padding: 28px 22px;
  }
  .contact-map {
    height: 260px;
  }

  /* Footer → single column, centered bottom bar */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Service page → single column features, full-width buttons */
  .svc-features {
    grid-template-columns: 1fr;
  }
  .svc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .svc-hero-actions .btn-primary,
  .svc-hero-actions .btn-outline {
    justify-content: center;
    width: 100%;
  }
}
