/* ============================================================
   CHARLOTTE CLARK WEB SERVICES — styles.css
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --color-bg: #1a1714;
  --color-bg-secondary: #211e1a;
  --color-accent: #c8f53b;
  --color-accent-hover: #b8e52b;
  --color-text-primary: #f0ece4;
  --color-text-secondary: #a09990;
  --color-text-muted: #6b6258;
  --color-border: #2e2a25;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --radius: 4px;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section-dark { background-color: var(--color-bg-secondary); }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: 0.75rem; }
p { color: var(--color-text-secondary); line-height: 1.75; }
em { color: var(--color-accent); font-style: italic; }

/* --- Section Header --- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* --- Buttons --- */
.btn-primary, .btn-cta {
  display: inline-block;
  background: var(--color-accent);
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover, .btn-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 245, 59, 0.25);
}
.btn-primary:active, .btn-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 245, 59, 0.15);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--color-text-secondary); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-accent);
  transition: background var(--transition), transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-outline:hover { background: var(--color-accent); color: #111; transform: translateY(-2px); }

.btn-full { width: 100%; text-align: center; display: block; }
.btn-sm { font-size: 0.8rem; padding: 0.4rem 0.9rem; }

.link-arrow { color: var(--color-accent); font-size: 0.875rem; font-weight: 500; }
.link-arrow:hover { opacity: 0.8; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-primary);
  line-height: 1;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c8f53b;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--color-text-primary); }

@media (hover: hover) {
  .nav-link:hover::after { width: 100%; }
}
.nav-link.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding-top: 4rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}
.footer-nav a:hover { color: var(--color-text-primary); }

.footer-cta-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   HERO (Homepage) — full-viewport centered hero
   ============================================================ */

/* Keyframes */
@keyframes heroBgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* Animated gradient background — very subtle warm depth */
  background: linear-gradient(
    135deg,
    #1a1714 0%,
    #201c18 25%,
    #1e1b17 50%,
    #1c1a15 75%,
    #1a1714 100%
  );
  background-size: 400% 400%;
  animation: heroBgShift 10s ease-in-out infinite;
}

/* Centered content column */
.hero-center {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 0 24px;
  box-sizing: border-box;
  z-index: 1;
}

/* Eyebrow label */
.hero-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 0.3s forwards;
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem;
}

.hero-line-1 {
  display: block;
  opacity: 0;
  animation: heroSlideUp 0.8s ease-out 0.7s forwards;
}

.hero-line-2 {
  display: block;
  color: var(--color-accent);
  opacity: 0;
  animation: heroSlideUp 0.8s ease-out 1.0s forwards;
  white-space: nowrap;
}

.hero-line-2-mobile {
  display: none;
  color: var(--color-accent);
}

/* Supporting text */
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 1.4s forwards;
}

/* Button row */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 1.8s forwards;
}

/* Hero-specific button overrides (don't touch global .btn-primary) */
.hero-btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 245, 59, 0.25);
}
.hero-btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 245, 59, 0.15);
}

.hero-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--color-text-muted);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.hero-btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
  z-index: 10;
  animation: heroScrollBounce 2s ease-in-out infinite;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll:hover svg path {
  stroke: #f0ece4;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-scroll { bottom: 100px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-btn-primary,
  .hero-btn-secondary { width: 100%; max-width: 320px; text-align: center; padding: 12px 24px; font-size: 14px; }
  .hero-center { top: calc(50% - 20px); }
}


/* --- Page Hero (inner pages) — unchanged --- */
.page-hero { padding: 5rem 0 3rem; }
.page-hero h1 { margin: 0.5rem 0 1rem; }
.page-hero-sub { font-size: 1.05rem; max-width: 560px; }

/* ============================================================
   VALUE PROPS
   ============================================================ */
.props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.prop-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.prop-card:hover { border-color: var(--color-accent); }

.prop-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.prop-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

@media (max-width: 900px) { .props-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .props-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES SNAP
   ============================================================ */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-snap-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--color-bg);
  transition: var(--transition);
}
.service-snap-card.featured {
  border-color: var(--color-accent);
  background: rgba(200, 245, 59, 0.04);
}
.service-snap-card h3 { margin: 0.5rem 0 0.75rem; }

.service-snap-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

@media (max-width: 768px) { .services-row { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner-inner h2 { margin-bottom: 1rem; }
.cta-banner-inner p { margin-bottom: 2rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  background: var(--color-bg-secondary);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--color-accent);
  background: rgba(200, 245, 59, 0.04);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

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

.pricing-name { font-size: 1.6rem; margin-bottom: 1.25rem; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-text-primary);
}

.price-note { font-size: 0.8rem; color: var(--color-text-muted); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ============================================================
   ADD-ONS
   ============================================================ */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
}

.addon-price { font-weight: 700; color: var(--color-accent); white-space: nowrap; font-size: 0.9rem; }
.addon-name { font-size: 0.9rem; color: var(--color-text-secondary); }

@media (max-width: 768px) { .addons-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .addons-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.process-step { position: relative; }

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-border);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* ============================================================
   WORK GRID
   ============================================================ */
.work-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--color-accent); color: var(--color-text-primary); }
.filter-btn.active {
  background: var(--color-accent);
  color: #111;
  font-weight: 600;
  border-color: var(--color-accent);
}

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

.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  background: var(--color-bg-secondary);
}
.work-card:hover { border-color: var(--color-accent); transform: translateY(-4px); }
.work-card.hidden { display: none; }

.work-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.work-thumb--1 { background: linear-gradient(135deg, #2d1f3d 0%, #1a2d1f 100%); }
.work-thumb--2 { background: linear-gradient(135deg, #3d2d1f 0%, #1f3d2d 100%); }
.work-thumb--3 { background: linear-gradient(135deg, #1f2d3d 0%, #3d1f2d 100%); }
.work-thumb--4 { background: linear-gradient(135deg, #2d3d1f 0%, #1f2d3d 100%); }
.work-thumb--5 { background: linear-gradient(135deg, #3d1f1f 0%, #1f3d3d 100%); }
.work-thumb--6 { background: linear-gradient(135deg, #1f1f3d 0%, #3d3d1f 100%); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
}
.work-card:hover .work-overlay { opacity: 1; }

.work-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-accent);
  color: #111;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.work-info { padding: 1.5rem; }
.work-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.work-meta { font-size: 0.75rem; color: var(--color-text-muted); display: block; margin-top: 0.75rem; }

@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .work-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

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

.stat {
  text-align: center;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label { font-size: 0.7rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; display: block; }

.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.25rem; }
.about-content .btn-primary { margin-top: 0.5rem; }

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

.skill-group ul { display: flex; flex-direction: column; gap: 0.5rem; }
.skill-group li { font-size: 0.9rem; color: var(--color-text-secondary); padding-left: 1rem; position: relative; }
.skill-group li::before { content: '—'; position: absolute; left: 0; color: var(--color-accent); }

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

.value-mark {
  display: block;
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.value-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .skills-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
}

.contact-info h2 { margin-bottom: 2rem; }

.contact-steps { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-steps strong { display: block; color: var(--color-text-primary); margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact-steps p { font-size: 0.875rem; margin: 0; }

.contact-direct { margin-top: 2.5rem; }
.contact-direct p { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 0.25rem; }
.contact-email { color: var(--color-accent); font-size: 0.9rem; font-weight: 500; }
.contact-email:hover { opacity: 0.8; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ============================================================
   FORMS
   ============================================================ */
.contact-form-wrap {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.required { color: var(--color-accent); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--color-text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-muted); }

.form-group select option { background: var(--color-bg-secondary); }

.form-check { display: flex; align-items: flex-start; }
.checkbox-label { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: auto; margin-top: 3px; accent-color: var(--color-accent); }
.checkbox-label span { font-size: 0.85rem; color: var(--color-text-secondary); }

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  display: none;
}
.form-status.success { display: block; background: rgba(200, 245, 59, 0.1); color: var(--color-accent); border: 1px solid var(--color-accent); }
.form-status.error { display: block; background: rgba(255, 80, 80, 0.1); color: #ff8080; border: 1px solid #ff5050; }

/* ============================================================
   AGREEMENT
   ============================================================ */
.agreement-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.agreement-doc {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 3rem;
}

.doc-header { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--color-border); }
.doc-header h2 { font-size: 1.75rem; margin-bottom: 0.25rem; }
.doc-date { font-size: 0.8rem; color: var(--color-text-muted); }

.doc-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 1.75rem 0 0.5rem;
  font-family: var(--font-body);
}
.doc-body p { font-size: 0.9rem; line-height: 1.7; }

.signature-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.signature-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.signature-card > p { margin-bottom: 1.5rem; font-size: 0.875rem; }

#signatureCanvas {
  width: 100%;
  height: 120px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  cursor: crosshair;
  display: block;
  margin-bottom: 0.5rem;
  touch-action: none;
}

@media (max-width: 900px) { .agreement-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.checkout-summary h2 { margin-bottom: 1.5rem; }

.summary-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}
.summary-line:last-child { border-bottom: none; }
.summary-line--highlight { color: var(--color-text-primary); font-weight: 600; }
.summary-line--highlight .summary-value { color: var(--color-accent); font-size: 1.1rem; }

.checkout-packages h3 { font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }

.pkg-options { display: flex; flex-direction: column; gap: 0.75rem; }

.pkg-option { cursor: pointer; }
.pkg-option input[type="radio"] { display: none; }

.pkg-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.pkg-option input:checked + .pkg-label {
  border-color: var(--color-accent);
  background: rgba(200, 245, 59, 0.05);
}
.pkg-label strong { font-size: 0.9rem; color: var(--color-text-primary); }
.pkg-label span { font-size: 0.9rem; color: var(--color-accent); font-weight: 600; }

.trust-badges { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.trust-badge { font-size: 0.8rem; color: var(--color-text-muted); }

.checkout-notice {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.checkout-notice p { margin-bottom: 1.25rem; font-size: 0.9rem; }

.checkout-next { display: flex; flex-direction: column; gap: 0.75rem; padding-left: 1.25rem; list-style: decimal; }
.checkout-next li { color: var(--color-text-secondary); font-size: 0.9rem; }

@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL REVEAL — shared utility
   ============================================================ */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.js-reveal.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ZERO EFFORT SECTION
   ============================================================ */
.ze-section {
  background: var(--color-bg-secondary);
}

/* --- Part A: Promise --- */
.ze-promise {
  padding: 100px 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ze-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 2.5rem;
}

.ze-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  /* override global p color */
  color: var(--color-text-primary);
}

.ze-line-light { color: var(--color-text-primary); }
.ze-line-lime  { color: var(--color-accent); }

.ze-support {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Part B: Checklist --- */
.ze-checklist-wrap {
  padding: 0 2rem 100px;
  max-width: 900px;
  margin: 0 auto;
}

.ze-checklist-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 3rem;
}

.ze-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 3rem;
}

.ze-col { list-style: none; }

.ze-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-primary);
}

.ze-check {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
  display: inline-block;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ze-item.check-visible .ze-check {
  transform: scale(1);
}

/* Tablet */
@media (max-width: 768px) {
  .ze-checklist-grid { grid-template-columns: repeat(2, 1fr); gap: 0 2rem; }
}

/* Mobile */
@media (max-width: 480px) {
  .ze-checklist-grid { grid-template-columns: 1fr; }
  .ze-promise { padding: 64px 2rem; }
  .ze-checklist-wrap { padding: 0 2rem 64px; }
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.hiw-section {
  background: var(--color-bg);
  padding: 120px 0;
}

.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header --- */
.hiw-header { text-align: center; margin-bottom: 80px; }

.hiw-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.hiw-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hiw-support {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- Timeline track --- */
.hiw-timeline { position: relative; }

.hiw-timeline-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 0;
  padding: 0 calc(100% / 6);
}

/* The horizontal line — animates width from 0 → 100% */
.hiw-timeline-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--color-border);
  transform: translateY(-50%);
  width: 0;
  transition: width 1s ease-out;
}
.hiw-timeline-track.animate-in::before { width: calc(100% - (100% / 3)); }

.hiw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* --- Steps row --- */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: -5px;
}

/* --- Individual step --- */
.hiw-step { position: relative; }

.hiw-step-inner {
  padding-left: 20px;
  border-left: 3px solid var(--color-accent);
  padding-top: 2rem;
}

.hiw-step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
}

.hiw-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hiw-step-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Closing CTA --- */
.hiw-cta {
  text-align: center;
  margin-top: 100px;
}

.hiw-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.hiw-cta-btn {
  font-size: 15px;
  padding: 16px 40px;
}
.hiw-cta-btn:hover { transform: translateY(-2px); }

/* --- Mobile --- */
@media (max-width: 768px) {
  .hiw-timeline-track { display: none; }
  .hiw-steps { grid-template-columns: 1fr; gap: 3rem; }
  .hiw-section { padding: 80px 0; }
  .hiw-header { margin-bottom: 48px; }
  .hiw-cta { margin-top: 64px; }
}

/* Line reveal — use js-reveal-line class + animate-in */
.js-reveal-line::before { width: 0; }
.js-reveal-line.animate-in::before { width: calc(100% - (100% / 3)); }

/* ============================================================
   SERVICES & PRICING SECTION
   ============================================================ */
.sp-section {
  background: var(--color-bg-secondary);
  padding: 120px 0;
}

.sp-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header --- */
.sp-header { text-align: center; margin-bottom: 72px; }

.sp-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.sp-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.sp-support {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
}

/* ── PART A: Tiers ── */
.sp-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.sp-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-card--featured {
  border-color: var(--color-accent);
  transform: translateY(-16px);
}

@media (hover: hover) {
  .sp-card:not(.sp-card--featured):hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  }
  .sp-card--featured:hover {
    transform: translateY(-22px);
    box-shadow: 0 16px 40px rgba(200, 245, 59, 0.15);
  }
}

.sp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.sp-tier-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.sp-price-row {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 6px;
}

.sp-dollar {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--color-text-primary);
  margin-top: 8px;
}

.sp-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  color: var(--color-text-primary);
  line-height: 1;
}

.sp-price-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.sp-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--color-text-secondary);
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.6;
}

.sp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  margin-bottom: 32px;
}

.sp-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-primary);
  padding: 8px 0;
}

.sp-check {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
  display: inline-block;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sp-check.check-visible {
  transform: scale(1);
}

/* Buttons */
.sp-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  margin-top: auto;
}

.sp-btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
  border: 1px solid var(--color-accent);
  transition: background var(--transition), transform 0.2s ease, box-shadow 0.2s ease, border-color var(--transition);
}
.sp-btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 245, 59, 0.25);
}
.sp-btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 245, 59, 0.15);
}

.sp-btn--outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.sp-btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* ── PART B: Included bar ── */
.sp-included {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px 40px;
  margin-top: 48px;
}

.sp-included-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  max-width: 220px;
  line-height: 1.5;
}

.sp-included-items {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-primary);
  line-height: 1.7;
}

/* ── PART C: Nonprofit ── */
.sp-nonprofit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px 40px;
  margin-top: 24px;
  align-items: start;
}

.sp-np-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.sp-np-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.sp-np-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.sp-np-fine {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.sp-np-prices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.sp-np-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.sp-np-tier {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  width: 64px;
}

.sp-np-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-accent);
  line-height: 1;
}

.sp-np-community {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ── PART D: Build Only ── */
.sp-buildonly {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  margin-top: 24px;
}

.sp-bo-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.sp-bo-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.sp-bo-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 520px;
}

.sp-bo-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sp-bo-bullets li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  padding-left: 1.25rem;
  position: relative;
}
.sp-bo-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.sp-bo-right {
  text-align: right;
  flex-shrink: 0;
}

.sp-bo-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.sp-bo-scope {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.sp-bo-btn {
  display: inline-block;
  width: auto;
  font-size: 14px;
  padding: 12px 28px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sp-tiers { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .sp-card--featured { transform: translateY(0); }
  .sp-nonprofit { grid-template-columns: 1fr; gap: 2rem; }
  .sp-buildonly { grid-template-columns: 1fr; gap: 1.5rem; }
  .sp-bo-right { text-align: left; }
}

@media (max-width: 768px) {
  .sp-included { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .sp-included-label { max-width: 100%; }
  .sp-section { padding: 80px 0; }
}

/* ============================================================
   CARE PLANS SECTION
   ============================================================ */
.cp-section {
  background: var(--color-bg);
  padding: 120px 0;
}

.cp-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header --- */
.cp-header {
  text-align: center;
  margin-bottom: 64px;
}

.cp-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.cp-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cp-support {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

.cp-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* --- Four-card grid --- */
.cp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* --- Card base --- */
.cp-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}
.cp-card:hover { border-color: var(--color-accent); }

/* Featured card */
.cp-card--featured { border-color: var(--color-accent); }

.cp-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Plan name */
.cp-plan-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 0.875rem;
}

/* Price */
.cp-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.cp-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  color: var(--color-text-primary);
  line-height: 1;
}

.cp-per {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.cp-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 20px 0;
}

/* Feature list */
.cp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 16px;
}

.cp-features li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-primary);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
  text-align: left;
}

.cp-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Bottom note */
.cp-card-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: auto;
  padding-top: 16px;
  line-height: 1.5;
}

/* --- Note box --- */
.cp-notebox {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px 32px;
  margin-top: 40px;
}

.cp-notebox-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.cp-notebox-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.cp-notebox-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.cp-policy-notice {
  text-align: left;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: #6b6258;
  font-style: italic;
  margin-top: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .cp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .cp-grid { grid-template-columns: 1fr; }
  .cp-section { padding: 80px 0; }
  .cp-notebox { flex-direction: column; gap: 1rem; }
}

/* ============================================================
   PORTFOLIO SHOWCASE SECTION
   ============================================================ */
.pf-section {
  background: #1a1714;
  padding: 120px 0;
}

.pf-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header --- */
.pf-header {
  text-align: center;
  margin-bottom: 64px;
}

.pf-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.pf-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.1;
}

/* --- Card grid: 6-column base ---
   Row 1: 3 cards × 2 cols each
   Row 2: 2 cards × 3 cols each (fills full row, each card wider than top row)
*/
.pf-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.pf-card:nth-child(1) { grid-column: 1 / 3; }
.pf-card:nth-child(2) { grid-column: 3 / 5; }
.pf-card:nth-child(3) { grid-column: 5 / 7; }
.pf-card--r2l         { grid-column: 1 / 4; }
.pf-card--r2r         { grid-column: 4 / 7; }

/* --- Card shell --- */
.pf-card {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  will-change: transform;
  /* Default transition for mouse-leave reset */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* --- Background image layer (JS translates this for parallax) --- */
.pf-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Start slightly scaled so parallax shift has no white-edge bleed */
  transform: scale(1.08);
  transform-origin: center;
  will-change: transform;
  transition: transform 0.4s ease;
}

/* --- Hover overlay (fades in dark tint) --- */
.pf-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.3s ease;
}

/* --- Project name (animates up from below) --- */
.pf-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 1.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Hover states — pointer devices only */
@media (hover: hover) {
  .pf-card:hover .pf-card-overlay { background: rgba(0, 0, 0, 0.55); }
  .pf-card:hover .pf-card-name    { opacity: 1; transform: translateY(0); }
}

/* Touch devices: show on tap via :active */
@media (hover: none) {
  .pf-card:active .pf-card-overlay { background: rgba(0, 0, 0, 0.55); }
  .pf-card:active .pf-card-name    { opacity: 1; transform: translateY(0); }
}

/* --- Modal overlay backdrop --- */
.pf-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.pf-modal-overlay.pf-modal--open {
  opacity: 1;
  pointer-events: auto;
}

/* --- Modal box --- */
.pf-modal {
  position: relative;
  width: 92vw;
  height: 88vh;
  background: #1a1714;
  border: 1px solid #2e2a25;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* --- Close button --- */
.pf-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #f0ece4;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease;
  line-height: 1;
}
.pf-modal-close:hover { color: var(--color-accent); }

/* --- Iframe pane --- */
.pf-modal-iframe-pane {
  flex: 1;
  position: relative;
  display: none;
}
.pf-modal-iframe-pane.pf-pane--active { display: block; }

/* Dynamically injected iframe fills pane */
.pf-modal-iframe-pane iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Loading spinner */
.pf-modal-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1714;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.pf-modal-spinner::after {
  content: '';
  width: 36px;
  height: 36px;
  border: 3px solid #2e2a25;
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: pfSpin 0.8s linear infinite;
}
.pf-modal-spinner.pf-spinner--hidden { opacity: 0; pointer-events: none; }

@keyframes pfSpin {
  to { transform: rotate(360deg); }
}

/* --- Gallery pane --- */
.pf-modal-gallery-pane {
  flex: 1;
  display: none;
  flex-direction: column;
  padding: 48px 32px 24px;
  overflow: hidden;
}
.pf-modal-gallery-pane.pf-pane--active { display: flex; }

.pf-gallery-header {
  text-align: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.pf-gallery-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 32px);
  color: #f0ece4;
  margin-bottom: 6px;
  line-height: 1.2;
}

.pf-gallery-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: #a09990;
  font-style: italic;
}

.pf-gallery-stage {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 0;
}

.pf-gallery-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #f0ece4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #2e2a25;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
  padding-bottom: 3px;
}
.pf-gallery-arrow:hover  { background: rgba(255, 255, 255, 0.15); color: var(--color-accent); }
.pf-gallery-arrow:disabled { opacity: 0.25; cursor: not-allowed; }

.pf-gallery-img-wrap {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.pf-gallery-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}

.pf-gallery-counter {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: #6b6258;
  margin-top: 12px;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1023px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-card:nth-child(1),
  .pf-card:nth-child(2),
  .pf-card:nth-child(3),
  .pf-card--r2l,
  .pf-card--r2r { grid-column: auto; }
}

@media (max-width: 480px) {
  .pf-grid { grid-template-columns: 1fr; }
  .pf-section { padding: 80px 0; }
  .pf-modal { width: 96vw; height: 94vh; }
  .pf-modal-close { width: 56px; height: 56px; font-size: 1.75rem; }
  .pf-gallery-arrow { width: 44px; height: 44px; }
  .pf-modal-gallery-pane { padding: 48px 8px 8px; gap: 4px; }
  .pf-gallery-header { margin-bottom: 6px; }
  .pf-gallery-title { font-size: 18px; }
  .pf-gallery-subtitle { font-size: 12px; }
  .pf-gallery-stage { gap: 6px; }
  .pf-gallery-img-wrap img { width: 100%; height: auto; max-height: 100%; object-fit: contain; }
  .pf-gallery-counter { margin-top: 6px; }
}

/* ============================================================
   CLOSING CTA SECTION
   ============================================================ */
.fc-section {
  background: var(--color-accent);
  padding: 120px 0;
}

.fc-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

/* Override js-reveal transition length for this section */
.fc-section .js-reveal {
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fc-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #3a3a2a;
  margin-bottom: 1.75rem;
}

.fc-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  color: #1a1714;
  line-height: 1.1;
  margin-bottom: 0;
}

.fc-line {
  display: block;
}

.fc-support {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: #3a3a2a;
  max-width: 600px;
  margin: 24px auto 0;
  line-height: 1.7;
}

.fc-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.fc-btn-primary {
  display: inline-block;
  background: #1a1714;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 18px 40px;
  border-radius: var(--radius);
  transition: background 0.3s ease, transform 0.3s ease;
}
.fc-btn-primary:hover {
  background: #2e2a25;
  transform: translateY(-2px);
}

.fc-btn-secondary {
  display: inline-block;
  background: transparent;
  color: #1a1714;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 18px 40px;
  border-radius: var(--radius);
  border: 1.5px solid #1a1714;
  transition: background 0.3s ease;
}
.fc-btn-secondary:hover {
  background: rgba(26, 23, 20, 0.08);
}

.fc-reassurance {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: #3a3a2a;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .fc-section { padding: 80px 0; }
  .fc-actions { flex-direction: column; align-items: center; }
  .fc-btn-primary,
  .fc-btn-secondary { width: 100%; max-width: 320px; text-align: center; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ct-page { background: var(--color-bg); min-height: 100vh; }

.ct-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

/* --- Hero --- */
.ct-hero {
  padding: 80px 2rem 40px;
}

.ct-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ct-hero-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.ct-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* --- Body container --- */
.ct-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 120px;
}

/* ── Quote Generator ── */
.qg-wrap {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 48px;
  margin-bottom: 80px;
}

.qg-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.qg-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
}

.qg-question { margin-bottom: 28px; }

.qg-q-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.qg-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qg-pill {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 40px;
  padding: 9px 20px;
  cursor: pointer;
  transition: var(--transition);
}
.qg-pill:hover { border-color: var(--color-accent); color: var(--color-text-primary); }

.qg-pill--active {
  background: var(--color-accent);
  color: #1a1714;
  font-weight: 700;
  border-color: var(--color-accent);
}
.qg-pill--active:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); }

.qg-rush-note,
.qg-np-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-accent);
  margin-top: 10px;
}

/* Live quote result box */
.qg-result {
  background: var(--color-bg);
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  padding: 32px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.qg-result-left,
.qg-result-right {
  flex: 1;
}

.qg-result-divider {
  width: 1px;
  height: 64px;
  background: var(--color-border);
  flex-shrink: 0;
}

.qg-result-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.qg-price-wrap {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 4px;
}

.qg-price-dollar {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--color-accent);
  margin-top: 10px;
}

.qg-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  color: var(--color-accent);
  line-height: 1;
}

.qg-price-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.qg-modifier-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-accent);
  margin-top: 8px;
  line-height: 1.5;
}

.qg-care-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.qg-care-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text-primary);
  line-height: 1;
}

.qg-care-per {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.qg-care-note {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.qg-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--color-accent);
  color: #1a1714;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 24px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.qg-cta-btn:hover { background: var(--color-accent-hover); transform: translateY(-2px); }

/* ── Contact Form ── */
.cf-wrap { scroll-margin-top: 100px; }

.cf-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.cf-form { display: flex; flex-direction: column; gap: 20px; }

.cf-row { display: flex; gap: 20px; }
.cf-row--two > .cf-group { flex: 1; }

.cf-group { display: flex; flex-direction: column; }

.cf-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.cf-opt {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

.cf-req { color: var(--color-accent); }

.cf-input {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s ease;
  appearance: none;
}
.cf-input::placeholder { color: var(--color-text-muted); }
.cf-input:focus { outline: none; border-color: var(--color-accent); }
.cf-input--error { border-color: #e05555; }

.cf-select { cursor: pointer; }
.cf-select option { background: var(--color-bg-secondary); }

.cf-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.cf-error {
  font-family: var(--font-body);
  font-size: 13px;
  color: #e05555;
  margin-top: 6px;
  display: none;
}

.cf-submit {
  display: block;
  width: 100%;
  background: var(--color-accent);
  color: #1a1714;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 8px;
}
.cf-submit:hover { background: var(--color-accent-hover); transform: translateY(-2px); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.cf-status { margin-top: 1rem; font-size: 14px; font-family: var(--font-body); }
.cf-status--error { color: #e05555; }

/* Success state */
.cf-success {
  text-align: center;
  padding: 64px 0;
}

.cf-success-check {
  display: block;
  font-size: 64px;
  color: var(--color-accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.cf-success-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.cf-success-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .cf-row--two { flex-direction: column; }
  .qg-wrap { padding: 28px 20px; }
  .qg-result { flex-direction: column; gap: 20px; }
  .qg-result-divider { width: 100%; height: 1px; }
  .ct-hero { padding: 48px 2rem 24px; }
}

/* ============================================================
   WORK PAGE
   ============================================================ */
.wk-page { background: var(--color-bg); }

/* Load-in animation — driven by CSS custom property --d (delay) */
@keyframes wkFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wk-anim {
  opacity: 0;
  animation: wkFadeUp 0.7s ease-out forwards;
  animation-delay: var(--d, 0ms);
}

/* Shared label */
.wk-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

/* ── Hero ── */
.wk-hero {
  padding: 100px 2rem 60px;
}

.wk-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.wk-hero-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
}

.wk-hero-line { display: block; }
.wk-hero-line--lime { color: var(--color-accent); }

.wk-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ── Filter Bar ── */
.wk-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.wk-pill {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 40px;
  padding: 9px 20px;
  cursor: pointer;
  transition: var(--transition);
}
.wk-pill:hover { border-color: var(--color-accent); color: var(--color-text-primary); transform: translateY(-2px); }
.wk-pill--active {
  background: var(--color-accent);
  color: #1a1714;
  font-weight: 700;
  border-color: var(--color-accent);
}
.wk-pill--active:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); }

/* ── Grid ── */
.wk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 0 2rem;
}

/* ── Card ── */
.wk-card {
  cursor: pointer;
  background: var(--color-bg-secondary);
}

/* pf-card inside wk-card: fill the column width, no grid-column overrides */
.wk-card .pf-card {
  width: 100%;
}

/* ── Thumb ── */
.wk-thumb {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wk-thumb-name {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 1;
  transition: opacity 0.35s ease;
  text-align: center;
  padding: 0 1rem;
  user-select: none;
}
.wk-card:hover .wk-thumb-name { opacity: 0; }

/* Zoom pseudo-element */
.wk-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transition: transform 0.45s ease;
  z-index: 0;
}
.wk-card:hover .wk-thumb::after { transform: scale(1.06); }

/* ── Hover overlay ── */
.wk-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0.9);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.wk-card:hover .wk-overlay { opacity: 1; }

.wk-ov-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

.wk-ov-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.wk-ov-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.wk-ov-link:hover { opacity: 0.8; text-decoration: underline; }

.wk-ov-link--soon {
  font-style: italic;
  color: var(--color-text-muted);
  font-weight: 400;
  pointer-events: none;
}

/* ── Below-image info ── */
.wk-info {
  padding: 20px;
  background: var(--color-bg-secondary);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wk-info-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-primary);
}

.wk-info-tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-accent);
}

.wk-info-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-top: 6px;
}

/* ── Bottom CTA ── */
.wk-cta {
  text-align: center;
  padding: 80px 2rem;
  margin-top: 80px;
  border-top: 1px solid var(--color-border);
}

.wk-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.wk-cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #1a1714;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: var(--radius);
  transition: background 0.3s ease, transform 0.3s ease;
}
.wk-cta-btn:hover { background: var(--color-accent-hover); transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .wk-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .wk-grid { grid-template-columns: 1fr; }
  .wk-hero { padding: 64px 2rem 40px; }
  .wk-cta-text { font-size: 24px; }
}
@media (max-width: 480px) {
  .wk-filters { display: none; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ab-page { background: var(--color-bg); }

/* Shared label */
.ab-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

/* ── Hero ── */
.ab-hero {
  padding: 100px 2rem 60px;
}

.ab-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 80px;
  align-items: start;
}

.ab-hero-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.ab-hero-line { display: block; }
.ab-hero-line--lime { color: var(--color-accent); }

.ab-hero-p1 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.ab-hero-p2 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 500px;
}

.ab-photo-placeholder {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  height: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-photo-placeholder span {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-muted);
}

/* ── Philosophy ── */
.ab-philosophy {
  background: var(--color-bg-secondary);
  padding: 100px 2rem;
}

.ab-philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ab-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--color-text-primary);
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 0;
}

.ab-quote-attr {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-top: 24px;
}

/* ── Values ── */
.ab-values {
  background: var(--color-bg-secondary);
  padding: 100px 2rem;
}

.ab-values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ab-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.ab-values-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--color-text-primary);
  line-height: 1.15;
}

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.ab-val-card { position: relative; }

.ab-val-inner {
  padding-left: 20px;
  border-left: 3px solid var(--color-accent);
  padding-top: 1.5rem;
}

.ab-val-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: -18px;
  user-select: none;
}

.ab-val-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ab-val-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── Credentials ── */
.ab-creds {
  background: var(--color-bg-secondary);
  padding: 80px 2rem;
}

.ab-creds-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ab-creds-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text-primary);
  margin-bottom: 32px;
  line-height: 1.2;
}

.ab-creds-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab-cred-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-text-secondary);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.ab-cred-item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.ab-creds-p1 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ab-creds-p2 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ── Closing CTA ── */
.ab-cta {
  background: var(--color-bg);
  padding: 80px 2rem;
  border-top: 1px solid var(--color-border);
}

.ab-cta-inner {
  text-align: center;
}

.ab-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.ab-cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #1a1714;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: var(--radius);
  transition: background 0.3s ease, transform 0.3s ease;
}
.ab-cta-btn:hover { background: var(--color-accent-hover); transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ab-hero-inner  { grid-template-columns: 1fr; gap: 48px; }
  .ab-hero-right  { order: -1; }
  .ab-photo-placeholder { height: 300px; }
  .ab-values-grid { grid-template-columns: 1fr; gap: 40px; }
  .ab-creds-inner { grid-template-columns: 1fr; gap: 48px; }
  .ab-hero { padding: 64px 2rem 48px; }
}

@media (max-width: 540px) {
  .ab-cta-text { font-size: 26px; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.sv-page { background: var(--color-bg); }

/* Shared label */
.sv-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.sv-label--center { text-align: center; }

/* ── Hero ── */
.sv-hero {
  padding: 100px 2rem 60px;
  text-align: center;
}
.sv-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.sv-hero-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}
.sv-hero-line { display: block; }
.sv-hero-line--lime { color: var(--color-accent); }

@keyframes svBlurIn {
  from { opacity: 0; filter: blur(12px); }
  to   { opacity: 1; filter: blur(0);    }
}
.sv-hero-line.sv-animate {
  opacity: 0;
  animation: svBlurIn 500ms ease-out forwards;
}
.sv-hero-line.sv-animate:nth-child(2) {
  animation-delay: 150ms;
}
.sv-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── Tier sections ── */
.sv-tier--dark { background: var(--color-bg); }
.sv-tier--mid  { background: var(--color-bg-secondary); }

.sv-tier-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 2rem;
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 80px;
  align-items: start;
}

.sv-tier-name {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.sv-tier-price-wrap {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.sv-tier-dollar {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--color-text-primary);
  margin-top: 14px;
  margin-right: 4px;
}
.sv-tier-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: var(--color-text-primary);
}
.sv-tier-invest {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}
.sv-tier-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 300px;
  margin-top: 24px;
  margin-bottom: 1.5rem;
}
.sv-timeline-badge {
  display: inline-block;
  background: var(--color-border);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 2rem;
}
.sv-tier-btn {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  margin-top: 32px;
}
.sv-tier-btn--lime {
  background: var(--color-accent);
  color: #1a1714;
  border: 2px solid var(--color-accent);
}
.sv-tier-btn--lime:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); transform: translateY(-2px); }
.sv-tier-btn--outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-border);
}
.sv-tier-btn--outline:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }

/* ── Tier card borders ── */
.sv-tier-card-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 2rem;
  position: relative;
}
.sv-tier-card {
  border: 1px solid #2e2a25;
  border-radius: 8px;
  background: #211e1a;
  transition: all 0.3s ease;
}
.sv-tier-card:hover {
  border-color: #c8f53b;
  transform: translateY(-4px);
}
.sv-tier-card--featured {
  border-color: #c8f53b;
}
/* Inner padding lives on the card now, not the section */
.sv-tier-card .sv-tier-inner {
  max-width: none;
  margin: 0;
  padding: 48px;
}
/* Most Popular badge */
.sv-most-popular {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 1;
}

/* Feature list */
.sv-tier-right { padding-top: 8px; }
.sv-features-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}
.sv-features { list-style: none; }
.sv-feat {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-text-primary);
  padding: 10px 0 10px 1.6rem;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.4;
  position: relative;
}
.sv-feat:first-child { border-top: 1px solid var(--color-border); }
.sv-feat::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 13px;
}

/* ── Revision policy ── */
.sv-revision-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 80px;
}
.sv-revision-box {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px 40px;
  align-items: start;
}
.sv-revision-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-primary);
}
.sv-revision-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── Care plans summary ── */
.sv-care {
  background: var(--color-bg-secondary);
  padding: 80px 2rem;
}
.sv-care-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.sv-care-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
}
.sv-care-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  text-align: left;
  max-width: 640px;
  margin: 0 auto 48px;
}
.sv-care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.sv-care-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s ease;
}
.sv-care-card:hover { border-color: var(--color-accent); }
.sv-care-plan {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}
.sv-care-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--color-text-primary);
  line-height: 1;
}
.sv-care-mo {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--color-text-secondary);
}
.sv-care-feature {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}
.sv-care-cta { text-align: center; }

/* Shared outline button */
.sv-outline-btn {
  display: inline-block;
  background: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 32px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.sv-outline-btn:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }
.sv-outline-btn--full { display: block; text-align: center; }

/* ── Nonprofit & Build Only ── */
.sv-alt {
  background: var(--color-bg);
  padding: 80px 2rem;
}
.sv-alt-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.sv-alt-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.sv-alt-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}
.sv-alt-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.sv-np-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.sv-np-price {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
}
.sv-np-price strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-accent);
  margin-left: 6px;
}
.sv-alt-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 28px;
}
.sv-build-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 24px;
}
.sv-build-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.sv-build-list li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-secondary);
  padding-left: 1.25rem;
  position: relative;
}
.sv-build-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ── Closing CTA — lime ── */
.sv-cta {
  background: var(--color-accent);
  padding: 100px 2rem;
}
.sv-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.sv-cta-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 60px);
  color: #1a1714;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.sv-cta-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: #3a3a2a;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.sv-cta-btn {
  display: inline-block;
  background: #1a1714;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: var(--radius);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sv-cta-btn:hover { opacity: 0.85; transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sv-tier-inner   { grid-template-columns: 1fr; gap: 40px; }
  .sv-tier-desc    { max-width: 100%; }
  .sv-care-grid    { grid-template-columns: repeat(2, 1fr); }
  .sv-alt-inner    { grid-template-columns: 1fr; }
  .sv-revision-box { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 540px) {
  .sv-care-grid  { grid-template-columns: 1fr 1fr; }
  .sv-tier-price { font-size: 60px; }
  .sv-alt-box    { padding: 28px 20px; }
  .sv-revision-box { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .sv-tier-card-wrap { padding: 24px 1rem; }
  .sv-tier-card .sv-tier-inner { padding: 28px 24px; }
  .sv-feat::before {
    content: '✓';
    color: #c8f53b;
    display: block;
  }
}

/* ============================================================
   AGREEMENT PAGE
   ============================================================ */
.ag-page { background: var(--color-bg); }

.ag-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

/* Hero */
.ag-hero { padding: 60px 2rem 40px; }
.ag-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.ag-hero-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.ag-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Body wrapper */
.ag-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 80px;
}

/* Package display */
.ag-package-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  padding: 24px 32px;
  margin-bottom: 40px;
}
.ag-package-box--empty { border-color: var(--color-border); }
.ag-package-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 0 0 auto;
}
.ag-package-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text-primary);
  text-align: center;
  flex: 1;
}
.ag-package-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--color-accent);
  flex: 0 0 auto;
}

/* Agreement document */
.ag-doc-box {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  max-height: 500px;
  overflow-y: scroll;
  margin-bottom: 16px;
  scroll-behavior: smooth;
}
.ag-doc-box::-webkit-scrollbar { width: 6px; }
.ag-doc-box::-webkit-scrollbar-track { background: var(--color-bg); }
.ag-doc-box::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }

.ag-disclaimer {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.ag-section-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-top: 24px;
  margin-bottom: 8px;
}
.ag-section-heading:first-of-type { margin-top: 0; }
.ag-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.ag-strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Scroll indicator */
.ag-scroll-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}
.ag-scroll-note--done {
  font-style: normal;
  color: var(--color-accent);
  font-weight: 600;
}

/* Signature box */
.ag-sig-box {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  margin-top: 32px;
}
.ag-sig-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}
.ag-sig-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Form */
.ag-form { display: flex; flex-direction: column; gap: 20px; }
.ag-field-group { display: flex; flex-direction: column; gap: 6px; }
.ag-field-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-secondary);
}
.ag-req { color: var(--color-accent); }
.ag-input {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--color-text-primary);
  width: 100%;
  transition: border-color 0.2s ease;
  appearance: none;
}
.ag-input:focus { outline: none; border-color: var(--color-accent); }
.ag-input::placeholder { color: var(--color-text-muted); }
.ag-select { cursor: pointer; }
.ag-field-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #e05c5c;
  display: none;
}

/* Checkboxes */
.ag-checks { display: flex; flex-direction: column; gap: 16px; }
.ag-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.ag-checkbox { position: absolute; opacity: 0; width: 0; height: 0; }
.ag-check-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  background: transparent;
  margin-top: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.ag-checkbox:checked + .ag-check-custom {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.ag-checkbox:checked + .ag-check-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #1a1714;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.ag-check-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Date */
.ag-date-display {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Submit */
.ag-submit {
  display: block;
  width: 100%;
  background: var(--color-accent);
  color: #1a1714;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 24px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.ag-submit:hover:not(:disabled) { background: var(--color-accent-hover); transform: translateY(-2px); }
.ag-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.ag-status {
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}
.ag-status--error { color: #e05c5c; }

/* Responsive */
@media (max-width: 600px) {
  .ag-package-box { flex-direction: column; text-align: center; gap: 8px; }
  .ag-doc-box { padding: 24px 20px; }
  .ag-sig-box { padding: 28px 20px; }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.ck-page { background: var(--color-bg); }

.ck-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

/* Hero */
.ck-hero { padding: 60px 2rem 40px; }
.ck-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.ck-hero-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.ck-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Body */
.ck-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Shared box */
.ck-summary-box,
.ck-payment-box {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px;
}

.ck-box-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

/* Summary */
.ck-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.ck-summary-pkg {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-primary);
}
.ck-summary-full {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-primary);
}
.ck-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 16px;
}
.ck-deposit-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}
.ck-deposit-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 8px;
}
.ck-remaining-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Payment box */
.ck-security-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.ck-pay-btn {
  display: block;
  width: 100%;
  background: var(--color-accent);
  color: #1a1714;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-bottom: 32px;
}
.ck-pay-btn:hover { background: var(--color-accent-hover); transform: translateY(-2px); }

/* Trust row */
.ck-trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}
.ck-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.ck-trust-icon {
  font-size: 18px;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.ck-trust-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text-primary);
}
.ck-trust-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* What happens next */
.ck-next-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ck-next-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ck-next-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-accent);
}
.ck-next-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
.ck-next-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 540px) {
  .ck-trust-row { gap: 20px; }
  .ck-deposit-amount { font-size: 36px; }
  .ag-package-name { font-size: 20px; }
  .ag-package-price { font-size: 20px; }
}

/* ============================================================
   NAV — ACTIVE STATE UNDERLINE
   ============================================================ */
.nav-link.active {
  color: var(--color-accent);
  position: relative;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-accent);
}

/* ============================================================
   FOOTER — EMAIL LINK
   ============================================================ */
.footer-email {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 12px;
  transition: color 0.2s ease;
}
.footer-email:hover { color: var(--color-accent); }

/* ============================================================
   404 PAGE
   ============================================================ */
.nf-page {
  background: var(--color-bg);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 2rem;
}
.nf-inner {
  text-align: center;
  position: relative;
}
.nf-ghost {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 180px;
  color: var(--color-border);
  line-height: 1;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  z-index: 0;
}
.nf-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: var(--color-text-primary);
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  margin-top: 80px;
}
.nf-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.nf-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #1a1714;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: var(--radius);
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.nf-btn:hover { background: var(--color-accent-hover); transform: translateY(-2px); }

/* ============================================================
   MOBILE AUDIT FIXES
   ============================================================ */

/* Touch target minimum — all buttons/links at 44px */
@media (max-width: 768px) {
  .btn-primary,
  .btn-cta,
  .qg-pill,
  .qg-cta-btn,
  .cf-submit,
  .ag-submit,
  .ck-pay-btn,
  .sv-tier-btn,
  .sv-outline-btn,
  .wk-pill,
  .ab-cta-btn,
  .fc-btn,
  .nf-btn { min-height: 44px; }

  /* No horizontal overflow on any page */
  body, main { overflow-x: hidden; }

  /* Quote generator pills wrap cleanly */
  .qg-pills { flex-wrap: wrap; }

  /* Contact form fields full width */
  .cf-row--two { flex-direction: column; }
  .cf-group    { width: 100%; }

  /* Footer stacks vertically */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Care plan cards: 2-col on mobile */
  .cp-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing tiers stack */
  .sp-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  /* Care plan cards: 1-col on very small screens */
  .cp-grid { grid-template-columns: 1fr; }
  .sv-care-grid { grid-template-columns: 1fr; }

  /* Readable minimum font sizes */
  body { font-size: 15px; }
  .ag-text,
  .sv-tier-desc,
  .ck-next-desc { font-size: 14px !important; }
}


@media (max-width: 480px) {
  .hero-line-2        { display: none; }
  .hero-line-2-mobile {
    display: block;
    opacity: 0;
    animation: heroSlideUp 0.8s ease-out 1.0s forwards;
  }
  .hero-center {
    padding: 0 20px !important;
    text-align: center !important;
  }
}

/* Mobile-only line break utility */
.mobile-break { display: none; }
@media (max-width: 480px) { .mobile-break { display: block; } }

/* Effortless section desktop/mobile headline swap */
.desktop-headline { display: block; }
.mobile-headline  { display: none; text-align: center; }
@media (max-width: 480px) {
  .desktop-headline { display: none; }
  .mobile-headline  { display: block; }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — FULL-WIDTH HERO
   ═══════════════════════════════════════════════════════════ */
.ab-hero-full { position: relative; width: 100%; min-height: 620px; background: #0e0e0a; overflow: hidden; display: flex; align-items: center; cursor: crosshair; }
.ab-hero-full::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to bottom, transparent, #211e1a); pointer-events: none; z-index: 1; }
#ab-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.ab-hero-content { position: relative; z-index: 2; max-width: 65%; padding: 80px 6vw; }
.ab-hero-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #c8f53b; margin-bottom: 20px; display: block; }
.ab-hero-h1 { margin: 0 0 40px 0; line-height: 1; }
.ab-hero-white { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 6vw, 72px); color: #ffffff; display: block; margin: 0; padding: 0; line-height: 0.95; }
.ab-hero-lime { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 6vw, 72px); color: #c8f53b; display: block; margin: 0; padding: 0; line-height: 0.95; }
.ab-hero-bio p { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0 0 22px 0; }
.ab-hero-bio p:last-child { margin-bottom: 0; color: rgba(255,255,255,0.85); font-style: italic; }

/* Monitor */
.ab-monitor { position: absolute; top: 50%; transform: translateY(-50%); right: 4vw; z-index: 3; display: flex; flex-direction: column; align-items: center; }
.ab-mon-outer { width: 220px; background: #c8bc96; border-radius: 8px 8px 4px 4px; padding: 10px 12px 12px; box-shadow: inset -2px -3px 0 #8a7a54, inset 2px 2px 0 #e8ddb8, 0 6px 20px rgba(0,0,0,0.7); }
.ab-mon-inner { background: #0a0a0a; border-radius: 3px; padding: 12px 13px 10px; position: relative; overflow: hidden; min-height: 108px; box-shadow: inset 0 0 8px rgba(0,0,0,0.9); }
.ab-scanlines { position: absolute; inset: 0; background: repeating-linear-gradient(to bottom, transparent 0, transparent 3px, rgba(255,255,255,0.03) 3px, rgba(255,255,255,0.03) 4px); pointer-events: none; z-index: 2; }
.ab-mon-text { font-family: 'VT323', monospace; position: relative; z-index: 1; line-height: 1.5; }
.ab-mon-prompt { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
.ab-mon-q { font-size: 17px; color: #ffffff; margin-bottom: 7px; line-height: 1.3; }
.ab-mon-yn { font-size: 14px; color: rgba(255,255,255,0.55); }
.ab-mon-yn a { color: #ffffff; text-decoration: none; border-bottom: 1px solid #c8f53b; transition: color 0.2s; }
.ab-mon-yn a:hover { color: #c8f53b; }
.ab-nn { color: rgba(255,255,255,0.25); }
.ab-cur { display: inline-block; width: 7px; height: 13px; background: #fff; opacity: 0.6; vertical-align: middle; animation: ab-blink 1.1s step-end infinite; margin-left: 2px; }
@keyframes ab-blink { 0%,100%{opacity:.6} 50%{opacity:0} }
.ab-mon-bottom { width: 220px; background: #b8aa82; border-radius: 0 0 6px 6px; height: 18px; box-shadow: inset -2px -2px 0 #8a7a54, inset 1px 1px 0 #d8cc9a; display: flex; align-items: center; justify-content: flex-end; padding-right: 12px; gap: 6px; }
.ab-led { width: 6px; height: 6px; border-radius: 50%; background: #4a8a20; border: 1px solid #c8f53b; }
.ab-btn-row { width: 6px; height: 6px; border-radius: 1px; background: #a09070; }
.ab-neck { width: 32px; height: 8px; background: #b0a478; }
.ab-base { width: 100px; height: 10px; background: #c0b488; border-radius: 4px; box-shadow: inset -1px -1px 0 #8a7a54; }

@media (max-width: 768px) {
  /* Hero: stack content above monitor */
  .ab-hero-full { flex-direction: column; align-items: center; min-height: auto; }
  .ab-hero-content { max-width: 100%; padding: 40px 24px 32px; order: 1; }
  .ab-hero-bio p { font-size: 15px; }

  /* Monitor: flow below bio text */
  .ab-monitor { position: relative; top: auto; right: auto; transform: none; order: 2; margin: 0 auto 40px; }
  .ab-mon-outer { width: 200px; }
  .ab-mon-q { font-size: 14px; }

  /* The Way We Work */
  .ab-tww-section { padding: 60px 24px; }
  .ab-tww-headline { margin-bottom: 40px; }
  .ab-tww-content h3 { font-size: 17px; }

  /* Values */
  .ab-values { padding: 64px 24px; }
  .ab-section-header { margin-bottom: 40px; }

  /* CTA */
  .ab-cta-section { padding: 60px 24px; }
  .ab-cta-btn { max-width: 280px; width: 100%; display: block; margin: 0 auto; text-align: center; }

  /* Policy/bandwidth notices */
  .cp-policy-notice { max-width: 90%; }
}

@media (max-width: 480px) {
  /* Headline floor at 36px */
  .ab-hero-white { font-size: clamp(36px, 10vw, 48px); }
  .ab-hero-lime  { font-size: clamp(36px, 10vw, 48px); }

  /* TWW track/steps tighter */
  .ab-tww-section { padding: 48px 20px; }
  .ab-tww-steps-wrapper { padding-left: 36px; }
  .ab-tww-dot { left: -32px; }

  /* Values tighter */
  .ab-values { padding: 48px 20px; }

  /* CTA tighter */
  .ab-cta-section { padding: 48px 20px; }

  /* Prevent any section overflow */
  .ab-hero-full, .ab-values, .ab-tww-section, .ab-cta-section { overflow-x: hidden; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — THE WAY WE WORK (scroll progress)
   ═══════════════════════════════════════════════════════════ */
.ab-tww-section { padding: 100px 6vw; background: var(--color-bg); }
.ab-tww-inner { max-width: 760px; margin: 0 auto; }
.ab-tww-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #c8f53b; margin-bottom: 14px; display: block; }
.ab-tww-headline { font-size: clamp(32px, 5vw, 58px); color: #ffffff; font-family: var(--font-display); margin-bottom: 64px; line-height: 1.1; }
.ab-tww-steps-wrapper { position: relative; padding-left: 44px; }
.ab-tww-track { position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: rgba(255,255,255,0.08); border-radius: 2px; }
.ab-tww-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: #c8f53b; border-radius: 2px; transition: height 0.5s ease; }
.ab-tww-step { position: relative; display: flex; gap: 20px; align-items: flex-start; margin-bottom: 44px; opacity: 0.35; transform: translateX(-6px); transition: opacity 0.5s ease, transform 0.5s ease; }
.ab-tww-step.ab-active { opacity: 1; transform: translateX(0); }
.ab-tww-dot { position: absolute; left: -40px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: #1a1a1a; border: 2px solid rgba(255,255,255,0.15); transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; flex-shrink: 0; }
.ab-tww-step.ab-active .ab-tww-dot { background: #c8f53b; border-color: #c8f53b; box-shadow: 0 0 8px rgba(200,245,59,0.5); }
.ab-tww-num { font-family: 'Share Tech Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; min-width: 28px; padding-top: 5px; transition: color 0.4s ease; }
.ab-tww-step.ab-active .ab-tww-num { color: #c8f53b; }
.ab-tww-content h3 { font-size: 20px; color: #ffffff; margin: 0 0 6px 0; font-weight: 600; }
.ab-tww-content p { font-size: 15px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.ab-cta-section { padding: 80px 6vw; text-align: center; background: var(--color-bg-secondary); border-top: 1px solid rgba(255,255,255,0.08); }
.ab-cta-eyebrow { font-size: 14px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; margin-bottom: 20px; text-transform: uppercase; display: block; }
.ab-cta-btn { display: inline-block; padding: 16px 44px; background: #c8f53b; color: #000000; font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; position: relative; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.ab-cta-btn::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.12); transform: translateX(-101%); transition: transform 0.25s ease; }
.ab-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,245,59,0.3); }
.ab-cta-btn:hover::after { transform: translateX(0); }
.ab-cta-btn:active { transform: translateY(0) scale(0.98); }

/* ═══════════════════════════════════════════════════════════
   SECTION TRANSITION FADES — sitewide
   Softens hard edges between adjacent dark sections.
   Skips any section with a lime green (#c8f53b) background.
   pointer-events: none ensures no click interference.
   ═══════════════════════════════════════════════════════════ */

/* ── INDEX — Hero → ze-section (bg-secondary) ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg-secondary));
  pointer-events: none;
  z-index: 1;
}

/* ── INDEX — ze-section → hiw-section (bg) ── */
.ze-section { position: relative; }
.ze-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
  z-index: 1;
}

/* ── INDEX — hiw-section → sp-section (bg-secondary) ── */
.hiw-section { position: relative; }
.hiw-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg-secondary));
  pointer-events: none;
  z-index: 1;
}

/* ── INDEX — sp-section → cp-section (bg) ── */
.sp-section { position: relative; }
.sp-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
  z-index: 1;
}

/* ── SERVICES — sv-tier--dark before sv-tier--mid → bg-secondary ── */
.sv-tier { position: relative; }
.sv-tier--dark:has(+ .sv-tier--mid)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg-secondary));
  pointer-events: none;
  z-index: 1;
}

/* ── SERVICES — sv-tier--mid → sv-tier--dark (bg) ── */
.sv-tier--mid::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
  z-index: 1;
}

/* ── SERVICES — sv-care top edge (enters from bg context above) ── */
.sv-care { position: relative; }
.sv-care::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--color-bg), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ── SERVICES — sv-care → sv-alt (bg) ── */
.sv-care::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
  z-index: 1;
}

/* ── SERVICES — sv-alt → footer (bg-secondary) ── */
.sv-alt { position: relative; }
.sv-alt::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg-secondary));
  pointer-events: none;
  z-index: 1;
}

/* ── ABOUT — ab-values → ab-tww-section (bg) ── */
.ab-values { position: relative; }
.ab-values::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
  z-index: 1;
}

/* ── ABOUT — ab-tww-section → ab-cta-section (bg-secondary) ── */
.ab-tww-section { position: relative; }
.ab-tww-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg-secondary));
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   BUILD ONLY QUOTE MODAL
   ═══════════════════════════════════════════════════════════ */
.bq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease;
}
.bq-overlay--visible { opacity: 1; }

.bq-box {
  position: relative;
  background: #1a1a16;
  width: 65%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
}

.bq-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.bq-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .bq-box { width: 92%; padding: 32px 24px; }
}
@media (max-width: 480px) {
  .bq-box { width: 96%; padding: 24px 16px; border-radius: 6px; }
  .bq-close { font-size: 24px; }
}

/* Mobile-only line break — hidden on desktop/tablet */
.mobile-br { display: none; }

/* Mobile-only word-group breaks — inline on desktop/tablet */
.sv-hero-break { display: inline; }
.svc-break { display: inline; }

.mobile-only { display: none; }

/* ============================================================
   MOBILE-ONLY FIXES (phones, max 767px)
   ============================================================ */
@media (max-width: 767px) {

  /* ── BUG 1: Care plan cards — stack vertically on all phones ── */

  /* Outer section wrapper (index + services) */
  .cp-section,
  .sv-care {
    overflow: visible !important;
  }

  /* Inner max-width containers */
  .cp-inner,
  .sv-care-inner {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    overflow: visible !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Card grid container (.cp-grid wraps cards on both pages) */
  .cp-grid {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  /* Individual cards */
  .cp-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    overflow: visible !important;
    flex-wrap: nowrap !important;
  }

  /* ── BUG 2: "We don't disappear." text — force left-aligned, full-width ── */

  /* Parent container that sets text-align: center */
  .cp-header {
    text-align: left !important;
  }

  /* Three-line paragraph (.cp-support) */
  .cp-support {
    font-size: 15px !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Italic paragraph below (.cp-note) */
  .cp-note {
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Policy notice paragraphs (italic, bottom of section) */
  .cp-policy-notice {
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* ── BUG 3: Services hero headline — one word group per line ── */

  /* .mobile-br used on services "Keep it perfect" headline */
  .mobile-br { display: inline !important; }

  /* .svc-break spans inside #sv-line-1 and #sv-line-2 */
  .svc-break {
    display: block !important;
  }

  .mobile-only { display: inline; }

}
