/*
Theme Name: Kadence Websmartz Child
Theme URI: https://websmartz.co.uk
Description: Child theme for Kadence — implements the Websmartz design system (Brand of One). Generated from Claude Design hand-off 2026-04-30.
Author: Websmartz / Selah Ltd
Author URI: https://websmartz.co.uk
Template: kadence
Version: 1.0.0
Text Domain: kadence-websmartz-child
*/

/* ============ Websmartz Design System ============ */
:root {
  /* Brand */
  --brand-blue: #2563EB;
  --brand-purple: #7C3AED;
  --brand-grad: linear-gradient(95deg, #2563EB 0%, #7C3AED 100%);
  --brand-grad-soft: linear-gradient(95deg, rgba(37,99,235,0.10) 0%, rgba(124,58,237,0.10) 100%);
  --brand-grad-glow: radial-gradient(60% 60% at 50% 50%, rgba(124,58,237,0.45), rgba(37,99,235,0.18) 40%, transparent 75%);

  /* Neutrals (cool-tinted) */
  --bg: #FAFBFF;
  --bg-2: #F4F6FB;
  --ink: #0B1020;
  --ink-2: #1A2036;
  --muted: #5A6478;
  --muted-2: #8892A6;
  --line: #E6E9F2;
  --line-2: #EEF1F7;
  --card: #FFFFFF;

  /* Purple tint for icon chips */
  --purple-50: #F3EFFF;
  --purple-100: #E7DEFE;
  --purple-600: #7C3AED;

  /* Type */
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(11,16,32,0.04), 0 1px 1px rgba(11,16,32,0.03);
  --sh-md: 0 1px 2px rgba(11,16,32,0.04), 0 8px 24px rgba(11,16,32,0.06);
  --sh-lg: 0 2px 4px rgba(11,16,32,0.04), 0 24px 60px rgba(37,99,235,0.10), 0 8px 24px rgba(124,58,237,0.08);
  --sh-cta: 0 8px 20px rgba(124,58,237,0.30), 0 4px 8px rgba(37,99,235,0.18);

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Layout ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: var(--s-9) 0; }
section + section { padding-top: 0; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  font-weight: 700;
}
h1 { font-size: clamp(44px, 5.4vw, 76px); letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: clamp(34px, 3.6vw, 52px); letter-spacing: -0.03em; line-height: 1.05; }
h3 { font-size: 22px; letter-spacing: -0.015em; }
p  { margin: 0; color: var(--muted); }
.lead { font-size: 19px; line-height: 1.55; color: var(--muted); }
.caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

/* ===== Gradient text ===== */
.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== Pill badge ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  box-shadow: var(--sh-sm);
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-grad);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background: var(--brand-grad);
  box-shadow: var(--sh-cta);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(124,58,237,0.36), 0 6px 12px rgba(37,99,235,0.22); }
.btn-outline {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}
.btn-outline:hover { border-color: #C9D1E3; transform: translateY(-1px); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===== Wordmark ===== */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 28px;
  color: var(--ink);
}
.wordmark .smartz { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.wordmark .tld { font-size: 0.5em; font-weight: 600; color: var(--muted-2); margin-left: 2px; align-self: flex-start; transform: translateY(0.4em); letter-spacing: 0; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(250,251,255,0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250,251,255,0.92);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
  transition: background .18s ease, color .18s ease;
}
.nav-link:hover { background: var(--bg-2); color: var(--ink); }
.nav-link.active { color: var(--brand-purple); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 40px;
  padding-bottom: 56px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 3rem;
  }
}
.hero-eyebrow { margin-bottom: 20px; }
.hero h1 .l1 { display: block; color: var(--ink); }
.hero h1 .l2 { display: block; }
.hero h1 { font-size: clamp(2rem, 4.6vw, 4rem); }
.hero-sub {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 560px;
}
.hero-ctas {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 620px;
}
.hf {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hf-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--purple-50);
  display: grid;
  place-items: center;
  color: var(--brand-purple);
}
.hf-title { font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 2px; letter-spacing: -0.01em; }
.hf-sub   { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* Hero right (devices + graph) */
.hero-stage {
  position: relative;
  height: 480px;
  width: 100%;
}
.hero-devices {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(11,16,32,0.18));
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}
.blob-1 { width: 360px; height: 360px; background: radial-gradient(circle, #7C3AED, transparent 70%); top: -40px; right: -40px; }
.blob-2 { width: 320px; height: 320px; background: radial-gradient(circle, #2563EB, transparent 70%); bottom: -20px; left: 40px; }
.blob-3 { width: 220px; height: 220px; background: radial-gradient(circle, #C4B5FD, transparent 70%); top: 200px; right: 200px; opacity: .45; }

.network-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.7;
}

/* Laptop */
.laptop {
  position: absolute;
  left: 0; top: 40px;
  width: 440px;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(11,16,32,0.18));
}
.laptop-screen {
  background: #0B1020;
  border-radius: 14px 14px 4px 4px;
  padding: 10px 10px 8px;
  border: 1px solid #1A2036;
}
.laptop-bezel-cam {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2A3148;
  margin: 0 auto 6px;
}
.laptop-display {
  background: #fff;
  border-radius: 6px;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.laptop-base {
  height: 14px;
  background: linear-gradient(180deg, #E6E9F2, #C9D1E3);
  border-radius: 0 0 14px 14px;
  margin: 0 -16px;
  position: relative;
}
.laptop-base::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 6px;
  background: #B5BED2;
  border-radius: 0 0 8px 8px;
}

/* Phone */
.phone {
  position: absolute;
  right: 10px; bottom: 10px;
  width: 200px;
  z-index: 3;
  filter: drop-shadow(0 30px 50px rgba(11,16,32,0.22));
}
.phone-frame {
  background: #0B1020;
  border-radius: 32px;
  padding: 8px;
  border: 1px solid #1A2036;
}
.phone-screen {
  background: #fff;
  border-radius: 26px;
  aspect-ratio: 9 / 19;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #0B1020;
  border-radius: 999px;
  z-index: 2;
}

/* Mock content inside devices */
.mock-row {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-2);
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: #C9D1E3; }
.mock-dot.b { background: var(--brand-blue); }
.mock-dot.p { background: var(--brand-purple); }
.mock-line { height: 6px; background: var(--line-2); border-radius: 4px; }
.mock-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--purple-50);
  color: var(--brand-purple);
  letter-spacing: 0.1em;
}
.mock-bar { height: 8px; border-radius: 4px; background: var(--brand-grad); }

/* ===== Trust strip ===== */
.trust {
  padding: 24px 0 56px;
  text-align: center;
}
.trust-caption { color: var(--muted-2); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; margin-bottom: 16px; }
.trust-logos {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.logo-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--r-md);
  border: 1px dashed var(--line);
  color: var(--muted);
  background: rgba(255,255,255,0.5);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--brand-grad-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-purple);
}

/* ===== Section header ===== */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 56px;
}
.section-head .pill { background: #fff; }
.section-head h2 { max-width: 800px; }
.section-head .lead { max-width: 640px; }

.section-head.left {
  align-items: flex-start;
  text-align: left;
}

/* ===== Cards ===== */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: #DCE1EE;
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--purple-50);
  display: grid; place-items: center;
  color: var(--brand-purple);
  margin-bottom: 22px;
}
.card h3 { margin-bottom: 10px; }
.card-body { color: var(--muted); font-size: 15.5px; line-height: 1.55; flex: 1; }
.learn-more {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14.5px;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
.learn-more-arrow {
  color: var(--brand-purple);
  transition: transform .2s ease;
  -webkit-text-fill-color: var(--brand-purple);
}
.learn-more:hover .learn-more-arrow { transform: translateX(3px); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* ===== How We Work ===== */
.how {
  background: var(--bg-2);
  padding: var(--s-9) 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-purple);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num-circle {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 11px;
  font-family: var(--font-sans);
}
.step h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.3; }
.step p { font-size: 13.5px; line-height: 1.45; color: var(--muted); }

/* connector line between steps */
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-100) 12%, var(--purple-100) 88%, transparent);
  z-index: 0;
}
.step { z-index: 1; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.about-body p {
  font-size: 17.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-top: 20px;
}
.about-body p strong { color: var(--ink); font-weight: 700; }
.headshot {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(45deg, #EEF1F7 0 12px, #F7F8FC 12px 24px);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.headshot-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.about-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.about-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-meta-item .k { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); letter-spacing: 0.08em; text-transform: uppercase; }
.about-meta-item .v { font-weight: 700; color: var(--ink); font-size: 15px; }

/* ===== Portfolio ===== */
.port-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.port-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.port-thumb {
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.10)),
    repeating-linear-gradient(45deg, #F4F6FB 0 14px, #ECEFF7 14px 28px);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: grid; place-items: center;
}
.port-thumb-label {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.port-body { padding: 24px 28px 28px; }
.port-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--purple-50);
  color: var(--brand-purple);
  margin-bottom: 12px;
}
.port-card h3 { margin-bottom: 8px; }
.port-card p  { color: var(--muted); font-size: 15px; line-height: 1.55; }
.port-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-2);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
}
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 28px;
  color: var(--ink-2);
}
.case-link:hover .arrow { transform: translateX(3px); }
.arrow { transition: transform .2s ease; }

/* ===== Packages ===== */
.pkg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--sh-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.pkg:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.pkg.featured {
  border-color: transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--brand-grad) border-box;
  border: 1.5px solid transparent;
}
.pkg-tag {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--brand-grad);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.pkg-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.pkg h3 { font-size: 24px; margin-bottom: 12px; }
.pkg-desc { color: var(--muted); font-size: 15px; line-height: 1.55; margin-bottom: 22px; }
.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pkg-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.45;
}
.pkg-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--brand-purple);
  display: grid; place-items: center;
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  margin-bottom: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.open {
  border-color: #DCE1EE;
  box-shadow: var(--sh-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--ink-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-item.open .faq-toggle {
  background: var(--brand-grad);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ===== Final CTA ===== */
.final {
  padding: 96px 0 120px;
}
.final-card {
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(124,58,237,0.18), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(37,99,235,0.18), transparent 60%),
    #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.final-card h2 {
  font-size: clamp(38px, 4.4vw, 60px);
  margin-bottom: 16px;
}
.final-card p { font-size: 18px; max-width: 520px; margin: 0 auto 36px; }
.final-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-mono);
}

/* ===== Footer ===== */
.foot {
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.foot-meta {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}
.foot-meta strong { color: var(--ink-2); font-weight: 700; }
.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-links a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color .2s ease;
}
.foot-links a:hover { color: var(--ink); }
.foot-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-stage { height: 440px; max-width: 600px; margin: 0 auto; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
}
@media (max-width: 767px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .hero { padding-top: 48px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-features { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero-stage { height: 360px; max-width: 100%; }
  .laptop { width: 78%; left: 0; top: 20px; }
  .phone { width: 36%; right: 4%; bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .final-card { padding: 48px 24px; }
}


/* ============ Kadence/WP overrides ============ */
/* Reset Kadence default content padding so our hero hugs the nav */
.entry-content > *:not(.alignfull):not(.alignwide) { max-width: none; padding-left: 0; padding-right: 0; }
.entry-content { margin-top: 0; }
.kadence-template-fullwidth.single-content article.entry { padding: 0; }
body.page-template-default .entry-content > .container { padding-left: 32px; padding-right: 32px; }

/* Make sure Kadence's container doesn't fight our 1240px container */
.content-container.site-container { max-width: 100%; padding: 0; }
