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

:root {
  --white: #ffffff;
  --off-white: #f9f8f6;
  --stone: #f2f0ec;
  --ink: #111110;
  --ink-2: #3a3935;
  --ink-3: #7a7870;
  --border: #e5e3de;
  --accent: #1a56db;
  --accent-light: #eff4ff;
  --blue-mid: #2563eb;
  --teal: #0d9488;
  --teal-light: #f0fdfa;
  --amber: #d97706;
  --amber-light: #fffbeb;
  --violet: #7c3aed;
  --violet-light: #f5f3ff;
  --rose: #e11d48;
  --rose-light: #fff1f2;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", sans-serif;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(17, 17, 16, 0.04);
  --shadow-md: 0 12px 40px rgba(17, 17, 16, 0.08);
  --shadow-lg: 0 24px 64px rgba(17, 17, 16, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 8px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

nav ul a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-3);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

nav ul a:hover {
  color: var(--ink);
  background: var(--stone);
}

nav ul a.active {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-btn {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  border-radius: 9px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 5% 72px;
  background: linear-gradient(165deg, #eef4ff 0%, #faf9f7 45%, #f0fdf9 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.12) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  max-width: 720px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--ink-2);
}

.page-hero-lead {
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 560px;
  line-height: 1.75;
}

/* ── HERO (home) ── */
.hero-wrap {
  background: linear-gradient(165deg, #e8f0ff 0%, #faf9f7 42%, #ecfdf8 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.08) 0%, transparent 65%);
  top: -200px;
  right: 10%;
  pointer-events: none;
}

.hero {
  padding: 168px 5% 108px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
  border: 1px solid #bfdbfe;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3.85rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-3);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-dark {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-dark:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.85rem;
  background: var(--white);
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  display: inline-flex;
  align-items: center;
}

.btn-outline:hover {
  border-color: #c5c3be;
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--blue-mid);
}

/* Hero visual */
.hero-right {
  position: relative;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hero-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag-green {
  font-size: 0.72rem;
  font-weight: 600;
  color: #166534;
  background: #dcfce7;
  padding: 4px 11px;
  border-radius: 999px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-box {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--stone) 100%);
  border-radius: 12px;
  padding: 1.15rem 1.3rem;
  border: 1px solid var(--border);
}

.metric-val {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-val.good {
  color: #166534;
}

.metric-label {
  font-size: 0.76rem;
  color: var(--ink-3);
  font-weight: 500;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--border);
}

.score-name {
  font-size: 0.82rem;
  color: var(--ink-2);
  font-weight: 500;
  width: 110px;
  flex-shrink: 0;
}

.score-track {
  flex: 1;
  height: 6px;
  background: var(--stone);
  border-radius: 99px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 99px;
  animation: grow 1.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes grow {
  from { width: 0 !important; }
}

.score-num {
  font-size: 0.82rem;
  font-weight: 600;
  color: #166534;
  width: 28px;
  text-align: right;
}

.floating-pill {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: floatIn 0.8s ease both;
}

.pill-1 { top: -18px; right: 24px; animation-delay: 0.5s; }
.pill-2 { bottom: -18px; left: 24px; animation-delay: 0.7s; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── TRUST ── */
.trust {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 5%;
  text-align: center;
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-pill {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 0.5rem 1.1rem;
  background: var(--stone);
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* ── SECTIONS ── */
.section-wrap {
  padding: 7rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}

.section-sub {
  font-size: 1rem;
  color: var(--ink-3);
  font-weight: 400;
  max-width: 480px;
  line-height: 1.8;
}

.section-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-header-row .section-sub {
  justify-self: end;
  text-align: left;
}

/* ── SERVICES GRID (home) ── */
.services {
  padding: 8rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #d4d2cc;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.si-blue { background: #eff4ff; border: 1px solid #bfdbfe; }
.si-blue svg { stroke: var(--blue-mid); }
.si-amber { background: var(--amber-light); border: 1px solid #fde68a; }
.si-amber svg { stroke: var(--amber); }
.si-teal { background: var(--teal-light); border: 1px solid #99f6e4; }
.si-teal svg { stroke: var(--teal); }
.si-violet { background: var(--violet-light); border: 1px solid #ddd6fe; }
.si-violet svg { stroke: var(--violet); }
.si-rose { background: var(--rose-light); border: 1px solid #fecdd3; }
.si-rose svg { stroke: var(--rose); }
.si-green { background: #f0fdf4; border: 1px solid #bbf7d0; }
.si-green svg { stroke: #16a34a; }

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ── SHOWCASE STRIP (home) ── */
.showcase {
  background: var(--stone);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 5%;
}

.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.showcase-card {
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.showcase-preview {
  aspect-ratio: 1200 / 640;
  position: relative;
  overflow: hidden;
  background: var(--ink-4);
}

.showcase-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.showcase-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 16, 0.35) 0%, transparent 50%);
}

.showcase-body {
  padding: 1.25rem 1.35rem;
}

.showcase-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.showcase-body p {
  font-size: 0.8rem;
  color: var(--ink-3);
}

.showcase-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

/* gradient presets for previews */
.grad-roof { background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 50%, #0ea5e9 100%); }
.grad-restoration { background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 50%, #f97316 100%); }
.grad-hvac { background: linear-gradient(135deg, #064e3b 0%, #0d9488 50%, #34d399 100%); }
.grad-pool { background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 50%, #38bdf8 100%); }
.grad-pressure { background: linear-gradient(135deg, #312e81 0%, #6366f1 50%, #a78bfa 100%); }
.grad-contractor { background: linear-gradient(135deg, #422006 0%, #b45309 50%, #fbbf24 100%); }

/* ── STATS BAND ── */
.results-band {
  background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 55%, #0e7490 100%);
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
}

.results-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.results-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.results-left .section-heading { color: var(--white); }
.results-left .section-eyebrow { color: #93c5fd; }
.results-left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.result-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.result-num {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.5;
}

/* ── PROCESS (home preview) ── */
.process {
  padding: 8rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.step-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.step-row:last-child { border-bottom: none; }
.step-row:hover { background: var(--off-white); }

.step-num-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--accent);
  padding: 2rem 0;
  background: linear-gradient(180deg, #f7f9ff 0%, #eff4ff 100%);
}

.step-content { padding: 2rem; }
.step-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.step-content p {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ── PRICING TEASER ── */
.pricing-teaser {
  padding: 6rem 5%;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-top: 1px solid var(--border);
}

.pricing-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-teaser-inner .section-sub {
  margin: 0 auto 2.5rem;
  max-width: 520px;
}

.pricing-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}

.pricing-mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-mini-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pricing-mini-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.pricing-mini-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-mini-price {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.pricing-mini-price span {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-3);
  font-weight: 500;
}

.pricing-mini-card p {
  font-size: 0.78rem;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ── FULL PRICING PAGE ── */
.pricing-section {
  padding: 3rem 5% 8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section.page-below-hero {
  padding-top: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 999px;
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.pricing-card h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-amount sup {
  font-size: 1.25rem;
  vertical-align: super;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--ink-2);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-top: 1px solid var(--border);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.8rem;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: var(--stone);
  color: var(--ink);
  transition: background 0.15s;
}

.pricing-card.popular .pricing-cta {
  background: var(--accent);
  color: var(--white);
}

.pricing-card.popular .pricing-cta:hover {
  background: var(--blue-mid);
}

.pricing-cta:hover {
  background: var(--border);
}

.build-card-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 4rem;
}

.build-card-wrap.page-below-hero {
  padding-top: 3.5rem;
  margin-top: 0;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

.services-callout {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.build-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--ink) 0%, #1e3a5f 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.build-card .section-eyebrow {
  color: #93c5fd;
}

.build-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.build-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.build-price {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
}

.build-price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.35rem;
}

.build-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.build-features li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.25rem;
  position: relative;
}

.build-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

/* ── PORTFOLIO PAGE ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3rem 5% 8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-grid.page-below-hero {
  padding-top: 3rem;
}

.portfolio-card {
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.portfolio-preview {
  height: 200px;
  position: relative;
}

.portfolio-preview .browser-bar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  z-index: 2;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.portfolio-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.portfolio-industry {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.portfolio-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.portfolio-body p {
  font-size: 0.82rem;
  color: var(--ink-3);
  line-height: 1.55;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.75rem;
}

.portfolio-card {
  cursor: default;
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-card.is-link {
  cursor: pointer;
}

.portfolio-card.is-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-preview.portfolio-preview-live {
  height: auto;
  min-height: 160px;
}

.portfolio-preview-live {
  position: relative;
  overflow: hidden;
  background: #e8e6e1;
  border-bottom: 1px solid var(--border);
}

.portfolio-preview-live::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.portfolio-preview-live::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 16px 0 0 #febc2e, 32px 0 0 #28c840;
  z-index: 3;
  pointer-events: none;
}

.portfolio-preview-live iframe {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 1200px;
  height: 640px;
  border: none;
  transform: translateX(-50%) scale(var(--preview-scale, 0.32));
  transform-origin: top center;
  pointer-events: none;
}

.portfolio-card .portfolio-industry {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  margin-bottom: 0.5rem;
}

.showcase-card {
  cursor: default;
  pointer-events: none;
}

.showcase-inner .showcase-top .btn-outline {
  pointer-events: auto;
}

/* ── CONTACT PAGE ── */
.contact-page {
  padding: 0 5% 6rem;
  max-width: 720px;
  margin: 0 auto;
}

.contact-page-wrap {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-top: 1px solid var(--border);
  padding-bottom: 2rem;
}

.contact-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.contact-tab {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border: none;
  background: none;
  color: var(--ink-3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}

.contact-tab:hover {
  color: var(--ink);
}

.contact-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-panel.active {
  display: block;
}

.contact-panel h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.contact-panel > p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.contact-form .field {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.875rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  width: 100%;
  height: 50px;
  margin-top: 0.5rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.contact-form button[type="submit"]:hover {
  background: var(--blue-mid);
}

.contact-quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 3rem auto 3.5rem;
  padding: 0 5%;
}

.contact-quick-card {
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s, background 0.2s;
}

.contact-quick-card:hover,
.contact-quick-card.is-selected {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: #93c5fd;
  background: var(--accent-light);
}

.contact-quick-card.is-selected {
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.contact-quick-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.contact-quick-card span {
  font-size: 0.8rem;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ── THANK YOU PAGE ── */
.thank-you-body {
  padding: 3rem 5% 6rem;
}

.thank-you-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.thank-you-card h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.thank-you-steps {
  margin: 0 0 1.75rem;
  padding-left: 1.25rem;
  color: var(--ink-2);
  line-height: 1.65;
}

.thank-you-steps li + li {
  margin-top: 0.65rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── CHECKOUT ── */
.checkout-wrap {
  padding: 3rem 5% 8rem;
  max-width: 960px;
  margin: 0 auto;
}

.page-below-hero {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.checkout-page-below {
  padding-top: 3rem;
}

/* ── HOME PATHWAYS CTA ── */
.pathways {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.pathway {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.pathway:last-child {
  border-bottom: none;
}

.pathway-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.pathway h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.pathway p {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
}

.pathway-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  flex-shrink: 0;
}

.pathway-actions .btn-dark,
.pathway-actions .btn-outline {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .pathway {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pathway-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.checkout-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.checkout-summary h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.checkout-price-line {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--ink);
  margin: 1rem 0;
}

.checkout-price-line span {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink-3);
  font-weight: 500;
}

.checkout-features {
  list-style: none;
  margin: 1.5rem 0;
}

.checkout-features li {
  font-size: 0.875rem;
  color: var(--ink-2);
  padding: 0.45rem 0;
  padding-left: 1.35rem;
  position: relative;
  border-top: 1px solid var(--border);
}

.checkout-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.checkout-action {
  background: linear-gradient(165deg, #eef4ff 0%, var(--white) 100%);
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  padding: 2rem;
}

.checkout-action h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.checkout-action p {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.checkout-stripe-btn {
  width: 100%;
  height: 52px;
  background: #635bff;
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.15s, transform 0.15s;
}

.checkout-stripe-btn:hover:not(:disabled) {
  background: #4f46e5;
  transform: translateY(-1px);
}

.checkout-stripe-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.checkout-note {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 1rem;
  line-height: 1.55;
}

.checkout-setup-hint {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  color: #92400e;
  margin-top: 1rem;
  line-height: 1.6;
  display: none;
}

.checkout-setup-hint.visible {
  display: block;
}

.checkout-alt {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--ink-3);
}

.checkout-alt a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.home-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 1rem;
}

.home-cta-card {
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}

.home-cta-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.home-cta-card .icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.home-cta-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.home-cta-card span {
  font-size: 0.8rem;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ── PROCESS PAGE ── */
.process-detail {
  padding: 4rem 5% 8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-intro-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--teal-light) 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.process-intro-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.process-intro-card h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-intro-card p {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.7;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  position: relative;
}

.timeline-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 49px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--border) 100%);
}

.timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: var(--serif);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--accent-light);
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.timeline-content > p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.timeline-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.timeline-list li {
  font-size: 0.85rem;
  color: var(--ink-2);
  padding-left: 1.25rem;
  position: relative;
}

.timeline-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.faq-section {
  padding: 4rem 5% 8rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section.page-below-hero {
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: linear-gradient(135deg, #fefce8 0%, #fff7ed 100%);
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
  padding: 7rem 5%;
}

.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.5;
  color: #f59e0b;
  margin-bottom: 2rem;
  display: block;
}

blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--stone);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-3);
}

.author-info { text-align: left; }
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.author-role { font-size: 0.78rem; color: var(--ink-3); }

/* ── CTA ── */
.cta-wrap {
  background: linear-gradient(165deg, #eef4ff 0%, #ffffff 100%);
  border-top: 1px solid #dbeafe;
}

.cta {
  padding: 8rem 5%;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta .section-heading {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.cta p {
  color: var(--ink-3);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.cta-form-netlify {
  display: flex;
  flex-direction: column;
  max-width: 440px;
  margin: 0 auto;
  gap: 0.6rem;
}

.cta-fields {
  display: flex;
  gap: 0.6rem;
}

.cta-form-netlify input {
  flex: 1;
  height: 50px;
  padding: 0 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.cta-form-netlify input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

.cta-form-netlify input::placeholder { color: var(--ink-3); }

.cta-form-netlify button {
  height: 50px;
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.cta-form-netlify button:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}

.cta-note {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 3.5rem 5% 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-top: 0.75rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 1rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links-grid ul {
  list-style: none;
}

.footer-links-grid a {
  font-size: 0.85rem;
  color: var(--ink-2);
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  transition: color 0.15s;
}

.footer-links-grid a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--ink-3);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge { animation: fadeUp 0.5s ease both; }
.hero h1 { animation: fadeUp 0.55s 0.08s ease both; }
.hero-sub { animation: fadeUp 0.55s 0.16s ease both; }
.hero-actions { animation: fadeUp 0.55s 0.22s ease both; }
.hero-right { animation: fadeUp 0.7s 0.3s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid,
  .pricing-mini-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-mini-grid { max-width: 100%; grid-template-columns: 1fr 1fr; }
  .build-card { grid-template-columns: 1fr; }
  .portfolio-grid,
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 120px;
  }
  .hero-right { display: none; }
  .section-header-row,
  .results-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-header-row .section-sub { justify-self: start; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .timeline-step { grid-template-columns: 72px 1fr; gap: 1.5rem; }
  .timeline-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 5% 1.25rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }
  nav ul.open { display: flex; }
  nav ul a { display: block; width: 100%; }
  .nav-toggle { display: flex; }
  .portfolio-grid,
  .showcase-grid,
  .services-grid,
  .pricing-mini-grid {
    grid-template-columns: 1fr;
  }
  .build-features { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .checkout-grid,
  .contact-quick-links,
  .home-cta-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .services, .process, .section-wrap { padding: 5rem 1.25rem; }
  .hero { padding: 110px 1.25rem 4rem; }
  .page-hero { padding: 120px 1.25rem 3rem; }
  .results-band { padding: 4rem 1.25rem; }
  .showcase, .pricing-teaser { padding: 4rem 1.25rem; }
  .portfolio-grid { padding: 0 1.25rem 5rem; }
  .testimonial-section { padding: 5rem 1.25rem; }
  .cta { padding: 5rem 1.25rem; }
  .cta-fields { flex-direction: column; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .process-intro-card { grid-template-columns: 1fr; }
}
