/* --- Variables --- */
:root {
  --bg: #08090D;
  --surface: #0F1219;
  --surface-2: #161B24;
  --teal: #0D9488;
  --teal-light: #14B8A6;
  --amber: #F59E0B;
  --amber-dim: #B45309;
  --cream: #F5F0E8;
  --text-primary: #E8E2D9;
  --text-secondary: #8A8499;
  --text-muted: #5A5570;
  --border: rgba(255,255,255,0.07);
}

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

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

/* --- Nav --- */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1280px; margin: 0 auto; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: -0.02em;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 80px 48px 100px;
  overflow: hidden;
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(13,148,136,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(245,158,11,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 68px);
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.08;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-prices {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.price-pill {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
}
.price-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.price-value { font-size: 20px; font-weight: 600; color: var(--teal-light); font-family: 'DM Sans', sans-serif; }

/* --- Mockup Stack --- */
.mockup-stack { display: flex; flex-direction: column; gap: 20px; }
.mockup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}
.mockup-bad { border-color: rgba(239,68,68,0.3); }
.mockup-good { border-color: rgba(13,148,136,0.4); box-shadow: 0 0 40px rgba(13,148,136,0.08); }
.mockup-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}
.bad-label { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.good-label { background: rgba(13,148,136,0.15); color: var(--teal-light); }
.mockup-site { background: #1a1a2e; border-radius: 8px; overflow: hidden; }
.site-header { height: 24px; background: #2d2d4a; }
.bar-fake { background: repeating-linear-gradient(90deg, #2d2d4a 0, #2d2d4a 60px, #8B0000 60px, #8B0000 62px); opacity: 0.5; }
.site-content { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.content-block { height: 8px; background: #2a2a40; border-radius: 2px; }
.wide { width: 80%; }
.narrow { width: 45%; }
.mt { margin-top: 4px; }

.good-site { background: #0f1a14; }
.good-header { height: 28px; background: #0D9488; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; }
.good-logo { width: 14px; height: 14px; background: rgba(255,255,255,0.3); border-radius: 50%; }
.good-nav { display: flex; gap: 4px; }
.good-nav::before, .good-nav::after { content: ''; display: block; width: 20px; height: 6px; background: rgba(255,255,255,0.25); border-radius: 2px; }
.good-hero-block { height: 24px; background: rgba(13,148,136,0.2); border-radius: 4px; margin: 6px; }
.good-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; padding: 0 6px 6px; }
.good-card { height: 18px; background: rgba(13,148,136,0.15); border-radius: 3px; }
.mockup-arrow { display: flex; justify-content: center; }
.mockup-caption { font-size: 11px; color: var(--text-muted); margin-top: 10px; text-align: center; font-style: italic; }

/* --- Proof Bar --- */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 40px 48px;
}
.proof-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat { flex: 1; min-width: 200px; }
.proof-number { display: block; font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; color: var(--teal-light); line-height: 1; margin-bottom: 8px; }
.proof-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }
.proof-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* --- Problem --- */
.problem { padding: 100px 48px; }
.problem-inner { max-width: 1280px; margin: 0 auto; }
.problem-header { max-width: 680px; margin-bottom: 64px; }
.problem-headline { font-size: clamp(32px, 4vw, 52px); color: var(--cream); }
.problem-body { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.problem-copy { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }
.problem-right { display: flex; flex-direction: column; gap: 20px; }
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.problem-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245,158,11,0.12);
  margin-bottom: 16px;
}
.problem-card-title { font-size: 17px; font-weight: 600; color: var(--cream); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.problem-card-body { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* --- Solutions --- */
.solutions { padding: 100px 48px; background: var(--surface); }
.solutions-inner { max-width: 1280px; margin: 0 auto; }
.solutions-header { text-align: center; margin-bottom: 64px; }
.solutions-headline { font-size: clamp(36px, 4vw, 56px); color: var(--cream); margin-bottom: 16px; }
.solutions-sub { font-size: 18px; color: var(--text-secondary); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.2s;
}
.solution-card:hover { border-color: rgba(13,148,136,0.35); }
.solution-number { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; color: rgba(13,148,136,0.2); margin-bottom: 16px; line-height: 1; }
.solution-title { font-size: 19px; font-weight: 600; color: var(--cream); margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.solution-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.solution-price { font-size: 15px; font-weight: 600; color: var(--teal-light); background: rgba(13,148,136,0.1); padding: 6px 14px; border-radius: 8px; display: inline-block; }

/* --- Manifesto --- */
.manifesto { padding: 100px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--cream);
  line-height: 1.4;
  font-style: normal;
  margin-bottom: 20px;
}
.manifesto-attribution { font-size: 14px; color: var(--text-muted); margin-bottom: 48px; }
.manifesto-divider { width: 48px; height: 2px; background: var(--teal); margin: 0 auto 48px; }
.manifesto-examples-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.manifesto-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.manifesto-tag {
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
}

/* --- Closing --- */
.closing { padding: 100px 48px; }
.closing-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4vw, 60px); color: var(--cream); margin-bottom: 24px; line-height: 1.1; }
.closing-body { font-size: 18px; color: var(--text-secondary); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* --- Footer --- */
.footer { padding: 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { margin-bottom: 32px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--cream); display: block; margin-bottom: 8px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* --- Portfolio --- */
.portfolio { padding: 100px 48px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.portfolio-inner { max-width: 1280px; margin: 0 auto; }
.portfolio-headline { font-size: clamp(32px, 4vw, 52px); color: var(--cream); margin-bottom: 12px; }
.portfolio-sub { font-size: 18px; color: var(--text-secondary); margin-bottom: 56px; max-width: 580px; line-height: 1.6; }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.portfolio-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.25s, transform 0.25s; text-decoration: none; }
.portfolio-card:hover { border-color: rgba(13,148,136,0.35); transform: translateY(-4px); }
.pc-barber .pc-mock-header { background: #0D9488; height: 32px; }
.pc-barber .pc-mock-hero { background: linear-gradient(135deg, #1a2e28 0%, #0D9488 100%); height: 80px; }
.pc-barber .pc-mock-cell { background: rgba(13,148,136,0.25); }
.pc-landscape .pc-mock-header { background: #22c55e; height: 32px; }
.pc-landscape .pc-mock-hero { background: linear-gradient(135deg, #14532d 0%, #22c55e 100%); height: 80px; }
.pc-landscape .pc-mock-cell { background: rgba(34,197,94,0.25); }
.pc-restaurant .pc-mock-header { background: #ef4444; height: 32px; }
.pc-restaurant .pc-mock-hero { background: linear-gradient(135deg, #7f1d1d 0%, #ef4444 100%); height: 80px; }
.pc-restaurant .pc-mock-cell { background: rgba(239,68,68,0.25); }
.pc-cleaning .pc-mock-header { background: #3B82F6; height: 32px; }
.pc-cleaning .pc-mock-hero { background: linear-gradient(135deg, #0F1A24 0%, #3B82F6 100%); height: 80px; }
.pc-cleaning .pc-mock-cell { background: rgba(59,130,246,0.25); }
.pc-tutor .pc-mock-header { background: #F59E0B; height: 32px; }
.pc-tutor .pc-mock-hero { background: linear-gradient(135deg, #1a1a2e 0%, #F59E0B 100%); height: 80px; }
.pc-tutor .pc-mock-cell { background: rgba(245,158,11,0.25); }
.pc-mockup { padding: 0; }
.pc-mock-header { display: flex; align-items: center; padding: 8px 12px; }
.pc-mock-header::after { content: ''; flex: 1; height: 6px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.pc-mock-hero { }
.pc-mock-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; padding: 8px; }
.pc-mock-cell { height: 36px; border-radius: 4px; }
.pc-info { padding: 20px 24px; flex: 1; }
.pc-type { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.pc-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.pc-city { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pc-tags span { background: rgba(13,148,136,0.1); color: var(--teal-light); font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 6px; }
.pc-view { padding: 14px 24px; border-top: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--teal); text-align: center; }
.portfolio-cta { text-align: center; }
.portfolio-cta p { font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; }
.portfolio-cta-btn { display: inline-block; background: var(--teal); color: white; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; transition: background 0.2s; }
.portfolio-cta-btn:hover { background: var(--teal-light); }

/* --- Mobile --- */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: -1; }
  .problem-body { grid-template-columns: 1fr; gap: 40px; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .proof-inner { gap: 32px; }
  .proof-divider { display: none; }
  .proof { padding: 40px 24px; }
  .portfolio { padding: 60px 24px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 60px 24px 80px; }
  .problem { padding: 60px 24px; }
  .solutions { padding: 60px 24px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .nav { padding: 20px 24px; }
  .footer { padding: 40px 24px; }
  .proof-stat { min-width: 100%; }
  .portfolio { padding: 60px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* --- Nav CTA --- */
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-cta {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover { background: var(--teal-light); }

/* --- Hero CTA --- */
.hero-cta-row { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.hero-cta-btn {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta-btn:hover { background: var(--teal-light); }
.hero-cta-secondary {
  font-size: 15px;
  font-weight: 500;
  color: var(--teal-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(13,148,136,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.hero-cta-secondary:hover { border-color: var(--teal-light); }

/* --- How It Works --- */
.how-it-works { padding: 100px 48px; border-top: 1px solid var(--border); }
.hiw-inner { max-width: 1280px; margin: 0 auto; }
.hiw-headline { font-size: clamp(32px, 4vw, 52px); color: var(--cream); margin-bottom: 56px; max-width: 700px; }
.hiw-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 80px; }
.hiw-step { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; }
.hiw-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(13,148,136,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.hiw-step-title { font-family: 'DM Sans', sans-serif; font-size: 19px; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
.hiw-step-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.hiw-pricing { border-top: 1px solid var(--border); padding-top: 56px; }
.hiw-pricing-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 32px; }
.hiw-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hiw-plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  position: relative;
}
.hiw-plan-featured { border-color: rgba(13,148,136,0.4); box-shadow: 0 0 40px rgba(13,148,136,0.08); }
.hiw-plan-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}
.hiw-plan-name { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
.hiw-plan-price { font-size: 36px; font-weight: 700; color: var(--teal-light); line-height: 1; margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.hiw-plan-note { font-size: 16px; font-weight: 400; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }
.hiw-plan-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.hiw-plan-features { list-style: none; }
.hiw-plan-features li { font-size: 13px; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.hiw-plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* --- Testimonial --- */
.testimonial { padding: 100px 48px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonial-inner { max-width: 1280px; margin: 0 auto; }
.testimonial-headline { font-size: clamp(32px, 4vw, 52px); color: var(--cream); margin-bottom: 48px; }
.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 48px;
  max-width: 860px;
}
.testimonial-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.testimonial-business { display: flex; align-items: center; gap: 16px; }
.testimonial-logo {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  font-family: 'DM Sans', sans-serif;
}
.testimonial-name { font-size: 18px; font-weight: 600; color: var(--cream); }
.testimonial-location { font-size: 13px; color: var(--text-muted); }
.testimonial-badge {
  background: rgba(245,158,11,0.12);
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: normal;
}
.testimonial-attr { font-size: 14px; color: var(--text-muted); }
.testimonial-results { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border); }
.testimonial-result { text-align: center; }
.tr-number { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--teal-light); line-height: 1; margin-bottom: 6px; }
.tr-label { font-size: 13px; color: var(--text-muted); }
.testimonial-cta { text-align: center; }
.testimonial-cta-text { font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; }
.testimonial-cta-btn { display: inline-block; background: var(--teal); color: white; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.testimonial-cta-btn:hover { background: var(--teal-light); }

/* --- Contact Form --- */
.contact-form-wrap { max-width: 640px; margin: 56px auto 0; text-align: left; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.cf-field label { font-size: 13px; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.04em; }
.cf-field input, .cf-field select, .cf-field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--text-muted); }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { outline: none; border-color: var(--teal); }
.cf-field textarea { resize: vertical; }
.cf-submit { width: 100%; background: var(--teal); color: white; border: none; border-radius: 10px; padding: 14px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.2s; font-family: 'DM Sans', sans-serif; }
.cf-submit:hover { background: var(--teal-light); }
.cf-note { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 16px; }
.cf-note a { color: var(--teal-light); }

/* --- Mobile for new sections --- */
@media (max-width: 900px) {
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .hiw-plans { grid-template-columns: 1fr 1fr; }
  .testimonial-results { grid-template-columns: 1fr 1fr; }
  .testimonial-card { padding: 32px; }
  .testimonial-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cf-row { grid-template-columns: 1fr; }
  .how-it-works { padding: 60px 24px; }
  .testimonial { padding: 60px 24px; }
}
@media (max-width: 640px) {
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-plans { grid-template-columns: 1fr; }
  .hiw-plan-featured { border-color: rgba(13,148,136,0.4); }
  .testimonial-results { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 24px; }
  .how-it-works { padding: 60px 24px; }
  .testimonial { padding: 60px 24px; }
}