/* PageCraft Landing Page Styles */

:root {
  --cream: #FDFAF4;
  --navy: #1A2744;
  --orange: #E85D04;
  --orange-light: #FEF0E6;
  --text: #2C3345;
  --text-muted: #6B7280;
  --border: #E8E4DC;
  --white: #FFFFFF;
}

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

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  padding: 0 24px;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Paper Stack Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: flex-start;
}

.paper-stack { position: relative; width: 120px; }

.paper {
  position: absolute;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--border);
}

.paper-1 {
  width: 120px;
  height: 155px;
  top: 40px;
  left: 0;
  z-index: 3;
  padding: 18px 16px;
  box-shadow: 0 4px 20px rgba(26,39,68,0.08);
}

.paper-2 {
  width: 120px;
  height: 155px;
  top: 30px;
  left: 6px;
  z-index: 2;
  opacity: 0.7;
}

.paper-3 {
  width: 120px;
  height: 155px;
  top: 20px;
  left: 12px;
  z-index: 1;
  opacity: 0.4;
}

.paper-lines { display: flex; flex-direction: column; gap: 7px; }

.paper-line {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
}

.paper-line.w-40 { width: 40%; }
.paper-line.w-60 { width: 60%; }
.paper-line.w-70 { width: 70%; }
.paper-line.w-80 { width: 80%; }
.paper-line.w-85 { width: 85%; }
.paper-line.w-90 { width: 90%; }

.paper-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 6px;
  border-radius: 3px;
  background: #FEE2E2;
  color: #991B1B;
}

.paper-badge-after {
  background: #D1FAE5;
  color: #065F46;
}

.paper-polished .paper-line { background: var(--orange); }

.paper-accent-bar {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 4px;
  height: 20px;
  background: var(--orange);
  border-radius: 2px;
}

/* Problem Section */
.problem {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 48px;
}

.problem-header { margin-bottom: 48px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}

.problem-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232,93,4,0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.problem-connector {
  text-align: center;
  padding: 28px 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.problem-solution h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--orange);
  text-align: center;
}

/* Services Section */
.services { padding: 80px 40px; }

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

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(26,39,68,0.1);
}

.service-emoji {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.service-price {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Compare Section */
.compare {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}

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

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-col {
  padding: 36px;
  border-radius: 14px;
}

.compare-col-before {
  background: var(--white);
  border: 1px solid var(--border);
}

.compare-col-after {
  background: var(--navy);
}

.compare-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.compare-col-before .compare-label { color: var(--text-muted); border-color: var(--border); }
.compare-col-after .compare-label { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.1); }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-list li {
  font-size: 0.95rem;
  line-height: 1.4;
  padding-left: 24px;
  position: relative;
}

.compare-col-before .compare-list li { color: var(--text); }
.compare-col-after .compare-list li { color: rgba(255,255,255,0.85); }

.compare-col-before .compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
}

.compare-col-after .compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* Pricing Section */
.pricing { padding: 80px 40px; }

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

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.price-card-accent {
  background: var(--navy);
  border-color: var(--navy);
}

.price-tier {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.price-card-accent .price-tier { color: var(--white); border-color: rgba(255,255,255,0.1); }

.price-items { display: flex; flex-direction: column; gap: 12px; }

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.price-item-name {
  font-size: 0.9rem;
  color: var(--text);
}

.price-item-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  white-space: nowrap;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.price-subscription { text-align: center; }

.price-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.price-sub-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.price-sub-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.price-sub-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  padding-left: 20px;
  position: relative;
}

.price-sub-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.price-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

/* Closing Section */
.closing {
  background: var(--navy);
  padding: 100px 40px;
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 48px;
}

.closing-contact { text-align: center; }

.closing-email {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 12px;
}

.closing-cta-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* Footer */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 12px;
}

.footer-links {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Shared CTA Buttons ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: #c94d00; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

/* ── Nav CTA ─────────────────────────────────────────────────────────────── */
.nav-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: #c94d00; }

/* ── Hero CTA ────────────────────────────────────────────────────────────── */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* ── Order Page ──────────────────────────────────────────────────────────── */
.order-page {
  min-height: calc(100vh - 65px);
  background: var(--cream);
}

.order-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.order-header {
  margin-bottom: 40px;
}

.order-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 12px;
}

.order-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Form elements */
.order-form { display: flex; flex-direction: column; gap: 28px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.form-label-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-input {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  -webkit-appearance: none;
}

.form-input:focus { border-color: var(--orange); }
.form-input.input-error { border-color: #dc2626; }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

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

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

.form-error {
  font-size: 0.8rem;
  color: #dc2626;
  display: none;
}

/* Input with prefix (+27) */
.input-prefix-wrap {
  display: flex;
  align-items: stretch;
}

.input-prefix {
  background: var(--border);
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.form-input-prefixed {
  border-radius: 0 8px 8px 0;
}

/* Service option buttons */
.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.service-opt:hover { border-color: var(--orange); background: var(--orange-light); }
.service-opt.selected { border-color: var(--orange); background: var(--orange-light); }

.service-opt-icon {
  color: var(--orange);
  flex-shrink: 0;
}

.service-opt-label {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.service-opt-price {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* File drop zone */
.file-drop {
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.file-drop.dragging { border-color: var(--orange); background: var(--orange-light); }

.file-drop-inner {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.file-drop-icon { color: var(--text-muted); }
.file-drop-text { font-size: 0.9rem; color: var(--text); }
.file-drop-hint { font-size: 0.78rem; color: var(--text-muted); }

.file-browse-btn {
  background: none;
  border: none;
  color: var(--orange);
  font-weight: 600;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
}

.file-input-hidden {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.file-list { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }

.file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid rgba(232,93,4,0.2);
  border-radius: 6px;
  padding: 8px 12px;
}

.file-item-name {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-item-size {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.file-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 2px 4px;
  line-height: 1;
}

.file-item-remove:hover { color: #dc2626; }

.file-upload-note { margin-top: 6px; }

/* Submit button */
.order-submit { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }

.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;  /* WhatsApp green — instantly recognisable */
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  width: 100%;
  justify-content: center;
}

.btn-order:hover { background: #1ebe5c; transform: translateY(-1px); }
.btn-order:active { transform: translateY(0); }

.order-submit-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
}

/* Trust strip */
.order-trust {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px 24px;
}

.trust-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trust-icon { font-size: 1rem; }

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ── Hero Additions ──────────────────────────────────────────────────────── */
.hero-headline-accent { color: var(--orange); }

.hero-cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── How It Works ─────────────────────────────────────────────────────────── */
.howitworks {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 80px 40px;
}

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

.hiw-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 48px 0 48px;
}

.hiw-step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.hiw-step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.hiw-step-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.hiw-step-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.hiw-connector {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.hiw-connector-line {
  width: 24px;
  height: 1px;
  background: var(--border);
}

.hiw-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hiw-cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Pricing Free Banner ──────────────────────────────────────────────────── */
.pricing-free-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFF7ED;
  border: 1.5px solid #FED7AA;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pricing-free-icon { font-size: 1.4rem; flex-shrink: 0; }

.pricing-free-banner div {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.pricing-free-banner strong { color: var(--navy); }

.pricing-free-cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
}

.pricing-free-cta:hover { text-decoration: underline; }

.price-item-free {
  background: #FFF7ED;
  border-radius: 6px;
  padding: 6px 8px;
  margin: -6px -8px 4px;
}

.price-item-val-free {
  color: var(--orange) !important;
  font-weight: 700 !important;
}

/* ── Social Proof / Testimonials ─────────────────────────────────────────── */
.social-proof {
  background: var(--navy);
  padding: 80px 40px;
}

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

.sp-headline { color: var(--white); margin-bottom: 48px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.testimonial-text::before { content: '\201C'; }
.testimonial-text::after { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.testimonial-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-meta {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* Social proof bar */
.sp-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 40px;
  flex-wrap: wrap;
}

.sp-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
}

.sp-proof-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}

.sp-proof-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.sp-proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq {
  background: var(--cream);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}

.faq-inner { max-width: 760px; margin: 0 auto; }

.faq-headline { color: var(--navy); margin-bottom: 40px; }

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

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

.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s;
}

.faq-q:hover { background: var(--cream); }

.faq-chevron {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Floating WhatsApp Button ─────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  background: #1ebe5c;
}

.wa-float:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .wa-float span {
    display: none;
  }
}

/* ── Campus Social Proof Section ─────────────────────────────────────────── */
.campuses {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 60px 40px;
}

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

.campuses-heading {
  text-align: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.campuses-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.campus-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin: 8px;
  letter-spacing: -0.01em;
}

.campus-chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.campuses-tagline {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 24px;
  line-height: 1.6;
}

/* ── Reviews CTA Section ─────────────────────────────────────────────────── */
.reviews-cta {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 60px 40px;
}

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

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF3CD;
  border: 1px solid #FFE69C;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #9A6700;
  margin-bottom: 24px;
}

.reviews-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.reviews-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.reviews-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-google-review:hover { background: #253459; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.btn-secondary:hover { border-color: var(--text-muted); color: var(--text); }

@media (max-width: 768px) {
  .campuses { padding: 48px 24px; }
  .reviews-cta { padding: 48px 24px; }
  .campuses-logos { gap: 8px; }
  .campus-chip { margin: 6px; padding: 8px 14px; font-size: 0.85rem; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-tagline { margin-left: 0; }
  .hero-stats { flex-wrap: wrap; }
  .stat { padding: 0 12px; }
  .nav { padding: 16px 24px; }
  .section-headline br { display: none; }
  /* Order page */
  .service-options { grid-template-columns: 1fr; }
  .order-container { padding: 40px 20px 60px; }
  .trust-item { padding: 8px 12px; }
  .trust-divider { display: none; }
  .nav-cta { display: none; }
  /* How it works */
  .hiw-steps { flex-direction: column; }
  .hiw-connector { flex-direction: column; padding: 8px 0; }
  .hiw-connector-line { width: 1px; height: 24px; }
  .hiw-step { width: 100%; }
  .hiw-cta { flex-direction: column; align-items: flex-start; }
  /* Pricing banner */
  .pricing-free-banner { flex-direction: column; align-items: flex-start; }
  /* Social proof */
  .testimonials-grid { grid-template-columns: 1fr; }
  .sp-proof-bar { padding: 20px 24px; gap: 0; }
  .sp-proof-item { padding: 12px 20px; }
  .sp-proof-divider { display: none; }
  /* FAQ */
  .faq { padding: 60px 24px; }
  .faq-q { padding: 16px 20px; font-size: 0.9rem; }
  .faq-a p { padding: 0 20px 16px; }
}