/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(248,247,244,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
#nav.scrolled { border-bottom-color: var(--stone); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-svg { width: 28px; height: 36px; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--slate);
  letter-spacing: -0.5px;
}
.nav-sub {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 10px;
  color: var(--smoke);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: var(--sz-small);
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--slate);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px var(--gutter) 28px;
  border-top: 1px solid var(--stone);
  background: var(--offwhite);
}
.nav-mobile.open { display: flex; }
.nav-mobile li + li { margin-top: 4px; }
.nav-mobile a { font-size: 17px; font-weight: 500; color: var(--slate); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
#hero {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--stone);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-headline { margin-top: 6px; }
.hero-headline em { font-style: normal; color: var(--green); }
.hero-sub {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--smoke);
  line-height: 1.7;
  max-width: 460px;
}
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual { display: flex; justify-content: flex-end; }
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
}
.mockup-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #eceae6 0%, #e4e2de 100%);
  border-radius: 10px;
}
/* Browser chrome illusion */
.mockup-chrome {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: #dddbd7;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.mockup-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #F87171; }
.mockup-dot:nth-child(2) { background: #FBBF24; }
.mockup-dot:nth-child(3) { background: #34D399; }
.mockup-urlbar {
  flex: 1;
  height: 14px;
  background: rgba(255,255,255,0.5);
  border-radius: 3px;
  margin-left: 8px;
}
.mockup-content {
  position: absolute;
  top: 28px; left: 0; right: 0; bottom: 0;
  padding: 16px;
  overflow: hidden;
}
/* Mini nav */
.m-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.m-nav-logo { width: 40px; height: 8px; background: var(--green); border-radius: 2px; }
.m-nav-links { display: flex; gap: 6px; }
.m-nav-link { width: 22px; height: 5px; background: var(--stone); border-radius: 2px; }
/* Mini hero */
.m-hero { margin-bottom: 10px; }
.m-hero-h1 { width: 75%; height: 9px; background: var(--slate); border-radius: 3px; margin-bottom: 5px; opacity: 0.7; }
.m-hero-h1b { width: 55%; height: 9px; background: var(--slate); border-radius: 3px; margin-bottom: 8px; opacity: 0.7; }
.m-hero-sub { width: 90%; height: 5px; background: var(--stone); border-radius: 2px; margin-bottom: 4px; }
.m-hero-sub2 { width: 70%; height: 5px; background: var(--stone); border-radius: 2px; margin-bottom: 10px; }
.m-hero-cta { width: 52px; height: 16px; background: var(--green); border-radius: 3px; }
/* Mini cards row */
.m-cards { display: flex; gap: 6px; }
.m-card {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  padding: 8px;
  border: 1px solid var(--stone);
}
.m-card-bar { height: 4px; background: var(--green); border-radius: 2px; margin-bottom: 6px; opacity: 0.7; }
.m-card-line { height: 4px; background: var(--stone); border-radius: 2px; margin-bottom: 4px; }
.m-card-line.short { width: 65%; }
/* Decorative chevron overlay */
.mockup-chevron {
  position: absolute;
  bottom: 12%;
  right: -5%;
  width: 70px;
  opacity: 0.08;
  transform: rotate(-10deg);
}

/* ─────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────── */
.trust-bar {
  padding-block: 40px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.trust-kw {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 800;
  color: var(--slate);
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: var(--sz-caption);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}
.trust-divider { width: 1px; height: 36px; background: var(--stone); flex-shrink: 0; }

/* ─────────────────────────────────────────────
   TAGLINE STRIP
───────────────────────────────────────────── */
.tagline-strip {
  padding-block: 48px clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--stone);
  text-align: center;
}
.tagline-text {
  font-family: var(--font-display);
  font-size: var(--sz-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}
.tagline-text em {
  font-style: normal;
  color: var(--green);
}

/* ─────────────────────────────────────────────
   PROBLEM / POSITIONING
───────────────────────────────────────────── */
#problem { border-bottom: 1px solid var(--stone); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-pull {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.problem-pull em { font-style: normal; color: var(--green); }
.problem-right { display: flex; flex-direction: column; gap: 28px; padding-top: 4px; }
.problem-body { color: var(--smoke); line-height: 1.75; }
.problem-options { display: flex; flex-direction: column; gap: 0; }
.problem-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--stone);
}
.problem-option:last-child { border-bottom: none; }
.option-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.option-icon.no { background: #FEE2E2; color: #DC2626; }
.option-icon.yes { background: #D1FAE5; color: var(--green); }
.option-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 2px;
}
.option-desc { font-size: var(--sz-small); color: var(--smoke); line-height: 1.55; }

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
#services { border-bottom: 1px solid var(--stone); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.services-list { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--stone);
}
.service-item:last-child { border-bottom: 1px solid var(--stone); }
.service-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--green);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -0.04em;
}
.service-content {}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.service-desc { color: var(--smoke); line-height: 1.7; max-width: 520px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag {
  font-size: var(--sz-caption);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green);
  background: rgba(45,125,82,0.08);
  padding: 4px 10px;
  border-radius: 2px;
}
.service-arrow {
  width: 32px; height: 32px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--smoke);
  font-size: 16px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
  margin-top: 4px;
}
.service-item:hover .service-arrow { border-color: var(--green); color: var(--green); transform: rotate(45deg); }

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
#process {
  background: #F2F0EC;
  border-bottom: 1px solid var(--stone);
}
.process-header { text-align: center; margin-bottom: 72px; }
.process-header .h2 { margin-top: 12px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}
/* Connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--stone) 0%, var(--green) 50%, var(--stone) 100%);
  z-index: 0;
}
.step {
  background: var(--offwhite);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.step:first-child { border-radius: 8px 0 0 8px; }
.step:last-child { border-radius: 0 8px 8px 0; }
.step-num-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: #fff;
  position: relative;
  z-index: 1;
}
.step-ghost-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 800;
  color: var(--green);
  opacity: 0.07;
  line-height: 1;
  letter-spacing: -0.05em;
  position: absolute;
  top: 12px; right: 20px;
  pointer-events: none;
}
.step-title {
  font-family: var(--font-display);
  font-size: var(--sz-h3);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.step-desc { color: var(--smoke); line-height: 1.65; font-size: 15px; }

/* ─────────────────────────────────────────────
   COMPARISON TABLE
───────────────────────────────────────────── */
#comparison { border-bottom: 1px solid var(--stone); }
.comparison-header { margin-bottom: 52px; }
.comparison-header .h2 { margin-top: 12px; }
.comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: var(--sz-small);
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--slate);
}
.ct-head-row th {
  font-family: var(--font-display);
  font-size: var(--sz-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--stone);
  color: var(--smoke);
}
.ct-head-row th.ct-highlight {
  color: var(--green);
  border-bottom-color: var(--green);
  position: relative;
}
.ct-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(45,125,82,0.08);
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: 6px;
}
.comparison-table tbody tr { border-bottom: 1px solid var(--stone); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody td { color: var(--smoke); }
.comparison-table tbody td.ct-highlight { color: var(--slate); font-weight: 500; background: rgba(45,125,82,0.03); }
.check { color: var(--green); font-size: 16px; }
.cross { color: var(--stone); font-size: 16px; }
.neutral { color: var(--smoke); }

/* ─────────────────────────────────────────────
   SAMPLE WORK
───────────────────────────────────────────── */
#work { border-bottom: 1px solid var(--stone); }
.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}
.work-header .h2 { margin-top: 10px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--stone);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  cursor: pointer;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.wc-header {
  height: 10px;
}
.wc-header.green { background: var(--green); }
.wc-header.sky   { background: var(--sky); }
.wc-header.slate { background: var(--slate); }
.wc-body { background: #fff; padding: 20px; }
/* Mini website layout inside card */
.wc-chrome {
  background: #F0EEEb;
  border-radius: 4px 4px 0 0;
  height: 20px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
  margin-bottom: 0;
}
.wcd { width: 6px; height: 6px; border-radius: 50%; }
.wcd:nth-child(1) { background: #F87171; }
.wcd:nth-child(2) { background: #FBBF24; }
.wcd:nth-child(3) { background: #34D399; }
.wc-screen {
  background: #FAFAF9;
  border: 1px solid #E8E6E2;
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 12px;
  margin-bottom: 16px;
}
.ws-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.ws-logo { width: 32px; height: 7px; border-radius: 2px; }
.ws-links { display: flex; gap: 5px; }
.ws-link { width: 18px; height: 4px; background: #D9D7D3; border-radius: 1px; }
.ws-hero-img { width: 100%; height: 40px; border-radius: 3px; margin-bottom: 8px; position: relative; overflow: hidden; }
.ws-hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.05) 100%); }
.ws-h { height: 6px; background: #C8C5C0; border-radius: 2px; margin-bottom: 4px; }
.ws-h.short { width: 60%; }
.ws-p { height: 4px; background: #DCD9D4; border-radius: 2px; margin-bottom: 3px; }
.ws-p.shorter { width: 75%; }
.wc-meta {}
.wc-type { font-size: var(--sz-caption); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); margin-bottom: 4px; }
.wc-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); }

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
#testimonials { border-bottom: 1px solid var(--stone); }
.testimonials-header { margin-bottom: 52px; }
.testimonials-header .h2 { margin-top: 12px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 8px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 24px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}
.testimonial-text {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 28px;
  position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.av-green { background: var(--green); }
.av-slate { background: var(--slate); }
.testimonial-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial-role { font-size: var(--sz-caption); color: var(--smoke); letter-spacing: 0.03em; }

/* ─────────────────────────────────────────────
   PRICING / CTA  (dark section)
───────────────────────────────────────────── */
#pricing {
  background: var(--ink);
  color: #fff;
}
#pricing .label-caps { color: rgba(255,255,255,0.35); letter-spacing: 0.2em; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pricing-left { display: flex; flex-direction: column; gap: 28px; }
.pricing-headline {
  font-family: var(--font-display);
  font-size: var(--sz-h1);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.pricing-sub { color: rgba(255,255,255,0.55); line-height: 1.7; font-size: 15px; }
.pricing-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.pricing-note { font-size: var(--sz-small); color: rgba(255,255,255,0.35); }

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 40px;
}
.pricing-card-label {
  font-size: var(--sz-caption);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price-note { font-size: var(--sz-small); color: rgba(255,255,255,0.4); margin-bottom: 28px; }
.pricing-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 24px; }
.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--sz-small);
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.pricing-feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─────────────────────────────────────────────
   SERVICES — add-on variant
───────────────────────────────────────────── */
.service-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.service-title-row .service-title { margin-bottom: 0; }
.addon-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
  white-space: nowrap;
  border: 1px solid var(--stone);
  border-radius: 20px;
  padding: 2px 9px;
}
.addon-badge::before {
  content: '+ ';
  color: var(--green);
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   PRICING — add-on block
───────────────────────────────────────────── */
.pricing-addon {
  margin-top: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
.pricing-addon-left { flex: 1; min-width: 260px; }
.pricing-addon-labels {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.pricing-addon-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.pricing-addon-desc {
  font-size: var(--sz-small);
  color: var(--smoke);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 52ch;
}
.pricing-addon-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.pricing-addon-features span {
  font-size: var(--sz-caption);
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pricing-addon-features span::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}
.pricing-addon-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.pricing-addon-price {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-addon-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--smoke);
  letter-spacing: 0;
}
.pricing-addon-note {
  font-size: var(--sz-caption);
  color: var(--smoke);
}

/* ─────────────────────────────────────────────
   CONTACT — Final CTA
───────────────────────────────────────────── */
.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}

.contact-label {
  display: block;
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.375rem;
}
.contact-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}
.contact-input::placeholder { color: rgba(255,255,255,0.35); }
.contact-input:focus { border-color: rgba(255,255,255,0.6); }
.contact-textarea {
  resize: vertical;
  min-height: 80px;
}
.contact-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: #fff;
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
  margin-top: 0.25rem;
}
.contact-submit:hover { background-color: #f0f0f0; }
.contact-submit:active { transform: scale(0.98); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#footer {
  padding-block: 44px;
  border-top: 1px solid var(--stone);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-svg { width: 18px; height: 22px; }
.footer-tagline { font-size: var(--sz-small); color: var(--smoke); margin-top: 6px; }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a { font-size: var(--sz-small); font-weight: 500; color: var(--smoke); transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-right { text-align: right; }
.footer-email { font-size: var(--sz-small); color: var(--smoke); margin-bottom: 6px; }
.footer-copy { font-size: var(--sz-caption); color: var(--stone); }
