/* ═══════════════════════════════════════════════════════   Jester Studio Works — Brand Stylesheet   Generated by jse-web-builder v1.1   ═══════════════════════════════════════════════════════ *//* ─── CUSTOM PROPERTIES ─── */:root {  --navy: #0c2e4e;  --green: #09c269;  --green-hover: #07a858;  --white: #ffffff;  --off-white: #f7f8fa;  --text-dark: #111111;  --text-body: #444444;  --text-light: #666666;  --border: #e5e7eb;  --shadow: rgba(0, 0, 0, 0.08);  --radius: 10px;  --transition: all 0.3s ease;}/* ─── RESET & BASE ─── */*, *::before, *::after {  box-sizing: border-box;  margin: 0;  padding: 0;}html {  scroll-behavior: smooth;  -webkit-font-smoothing: antialiased;  -moz-osx-font-smoothing: grayscale;}body {  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;  font-size: 1rem;  font-weight: 400;  color: var(--text-body);  line-height: 1.65;  background: var(--white);}img {  max-width: 100%;  height: auto;  display: block;}a {  color: var(--green);  text-decoration: none;  transition: var(--transition);}a:hover {  color: var(--green-hover);}h1, h2, h3, h4 {  color: var(--navy);  line-height: 1.2;}h1 {  font-size: 3.2rem;  font-weight: 700;  letter-spacing: -0.6px;  line-height: 1.15;}h2 {  font-size: 2rem;  font-weight: 600;  letter-spacing: -0.3px;}h3 {  font-size: 1.25rem;  font-weight: 600;}/* ─── LAYOUT ─── */.container {  max-width: 1200px;  margin: 0 auto;  padding: 0 24px;}.section {  padding: 90px 0;}.section-header {  text-align: center;  margin-bottom: 56px;}.section-header h2 {  margin-bottom: 12px;}.section-sub {  font-size: 1.1rem;  color: var(--text-light);  max-width: 560px;  margin: 0 auto;}/* ─── NAVIGATION ─── */.site-header {  position: sticky;  top: 0;  background: var(--white);  border-bottom: 1px solid var(--border);  z-index: 100;}.nav-container {  max-width: 1200px;  margin: 0 auto;  padding: 0 24px;  height: 72px;  display: flex;  align-items: center;  justify-content: space-between;}.nav-logo img {  height: 50px;  width: auto;}.nav-links {  list-style: none;  display: flex;  align-items: center;  gap: 4px;}.nav-links a {  font-size: 0.9rem;  font-weight: 500;  color: var(--navy);  padding: 8px 20px;  border-radius: 6px;  transition: var(--transition);  position: relative;}.nav-links a:hover {  color: var(--green);}.nav-links a::after {  content: '';  position: absolute;  bottom: 2px;  left: 20px;  right: 20px;  height: 2px;  background: var(--green);  transform: scaleX(0);  transition: transform 0.3s ease;}.nav-links a:hover::after {  transform: scaleX(1);}.nav-cta {  background: var(--green) !important;  color: var(--white) !important;  border-radius: 6px !important;  padding: 10px 24px !important;}.nav-cta:hover {  background: var(--green-hover) !important;}.nav-cta::after {  display: none !important;}.nav-toggle {  display: none;  flex-direction: column;  gap: 5px;  background: none;  border: none;  cursor: pointer;  padding: 8px;}.nav-toggle span {  display: block;  width: 24px;  height: 2px;  background: var(--navy);  transition: var(--transition);}/* ─── HERO ─── */.hero {  position: relative;  padding: 140px 24px 100px;  background-image: url('../img/hero-bg.png');  background-size: cover;  background-position: center;  min-height: 540px;  display: flex;  align-items: center;  justify-content: center;}.hero-overlay {  position: absolute;  inset: 0;  background: linear-gradient(135deg, rgba(12,46,78,0.88) 0%, rgba(12,46,78,0.72) 100%);}.hero-content {  position: relative;  z-index: 1;  text-align: center;  max-width: 760px;  margin: 0 auto;}.hero-content h1 {  color: var(--white);  margin-bottom: 20px;}.hero-sub {  color: rgba(255,255,255,0.9);  font-size: 1.25rem;  line-height: 1.6;  margin-bottom: 36px;}.hero-actions {  display: flex;  gap: 16px;  justify-content: center;  flex-wrap: wrap;}/* ─── BUTTONS ─── */.btn {  display: inline-block;  font-family: inherit;  font-weight: 500;  font-size: 0.95rem;  padding: 12px 32px;  border: none;  border-radius: 6px;  cursor: pointer;  transition: var(--transition);  text-align: center;}.btn-primary {  background: var(--green);  color: var(--white);}.btn-primary:hover {  background: var(--green-hover);  color: var(--white);  transform: translateY(-1px);  box-shadow: 0 4px 12px rgba(9,194,105,0.25);}.btn-hero {  background: var(--white);  color: var(--navy);  font-weight: 600;  padding: 14px 40px;}.btn-hero:hover {  background: var(--green);  color: var(--white);  transform: translateY(-1px);}.btn-outline {  background: transparent;  color: var(--white);  border: 2px solid rgba(255,255,255,0.4);  padding: 12px 32px;}.btn-outline:hover {  border-color: var(--white);  color: var(--white);  background: rgba(255,255,255,0.1);}.btn-full {  width: 100%;}/* ─── CARDS ─── */.cards-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));  gap: 32px;}.card {  background: var(--white);  border-radius: var(--radius);  padding: 34px;  box-shadow: 0 2px 12px var(--shadow);  border: 1px solid var(--border);  transition: var(--transition);}.card:hover {  transform: translateY(-3px);  box-shadow: 0 8px 24px rgba(0,0,0,0.12);}.card-icon {  color: var(--green);  margin-bottom: 20px;}.card h3 {  margin-bottom: 12px;}.card p {  color: var(--text-body);  line-height: 1.7;}/* ─── TWO-COLUMN LAYOUT ─── */.two-col {  display: grid;  grid-template-columns: 1fr 1fr;  gap: 48px;  align-items: center;}.two-col.reverse {  direction: rtl;}.two-col.reverse > * {  direction: ltr;}.two-col-text h2 {  margin-bottom: 20px;}.two-col-text p {  margin-bottom: 24px;}.two-col-image img {  width: 100%;  border-radius: var(--radius);  box-shadow: 0 4px 20px var(--shadow);}/* ─── ABOUT ─── */.about {  background: var(--off-white);}/* ─── CHECK LIST ─── */.check-list {  list-style: none;  padding: 0;  margin: 0 0 24px 0;}.check-list li {  position: relative;  padding-left: 28px;  margin-bottom: 12px;  color: var(--text-body);}.check-list li::before {  content: '';  position: absolute;  left: 0;  top: 6px;  width: 18px;  height: 18px;  border-radius: 50%;  background: var(--green);  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");  background-repeat: no-repeat;  background-position: center;}/* ─── CONTACT ─── */.contact {  background: var(--off-white);}.contact-info {  padding-right: 24px;}.contact-details {  margin-top: 32px;}.contact-item {  display: flex;  align-items: center;  gap: 12px;  margin-bottom: 16px;  color: var(--text-body);}.contact-item svg {  color: var(--green);  flex-shrink: 0;}.contact-item a {  color: var(--text-body);}.contact-item a:hover {  color: var(--green);}/* ─── FORM ─── */.contact-form-wrap {  background: var(--white);  border-radius: var(--radius);  padding: 36px;  box-shadow: 0 2px 12px var(--shadow);  border: 1px solid var(--border);}.form-group {  margin-bottom: 20px;}.form-group label {  display: block;  font-size: 0.9rem;  font-weight: 500;  color: var(--navy);  margin-bottom: 6px;}.form-group input,.form-group textarea {  width: 100%;  padding: 14px 16px;  border: 1px solid var(--border);  border-radius: 6px;  font-size: 1rem;  font-family: inherit;  background: var(--white);  color: var(--text-dark);  transition: var(--transition);}.form-group input:focus,.form-group textarea:focus {  border-color: var(--green);  outline: none;  box-shadow: 0 0 0 3px rgba(9,194,105,0.15);}.form-group textarea {  min-height: 140px;  resize: vertical;}/* ─── FOOTER ─── */.site-footer {  background: var(--off-white);  border-top: 1px solid var(--border);  padding: 60px 0 30px;}.footer-grid {  display: grid;  grid-template-columns: 2fr 1fr 1fr;  gap: 48px;  margin-bottom: 48px;}.footer-brand p {  margin-top: 16px;  color: var(--text-light);  font-size: 0.9rem;  max-width: 280px;}.footer-nav h4,.footer-contact h4 {  font-size: 0.9rem;  font-weight: 600;  text-transform: uppercase;  letter-spacing: 0.5px;  margin-bottom: 16px;  color: var(--navy);}.footer-nav ul,.footer-contact ul {  list-style: none;}.footer-nav li,.footer-contact li {  margin-bottom: 10px;}.footer-nav a,.footer-contact a {  color: var(--text-light);  font-size: 0.9rem;}.footer-nav a:hover,.footer-contact a:hover {  color: var(--green);}.footer-contact li {  color: var(--text-light);  font-size: 0.9rem;}.footer-bottom {  border-top: 1px solid var(--border);  padding-top: 24px;  text-align: center;}.footer-bottom p {  color: var(--text-light);  font-size: 0.85rem;}/* ─── RESPONSIVE ─── */@media (max-width: 768px) {  h1 { font-size: 2.3rem; }  h2 { font-size: 1.6rem; }  .section { padding: 56px 0; }  .hero {    padding: 100px 24px 72px;    min-height: 420px;  }  .nav-toggle {    display: flex;  }  .nav-links {    display: none;    position: absolute;    top: 72px;    left: 0;    right: 0;    background: var(--white);    flex-direction: column;    padding: 16px 24px;    border-bottom: 1px solid var(--border);    box-shadow: 0 4px 12px var(--shadow);  }  .nav-links.active {    display: flex;  }  .nav-links a::after {    display: none;  }  .cards-grid {    grid-template-columns: 1fr;  }  .two-col {    grid-template-columns: 1fr;    gap: 32px;  }  .two-col.reverse {    direction: ltr;  }  .two-col-image {    order: -1;  }  .footer-grid {    grid-template-columns: 1fr;    gap: 32px;  }  .hero-actions {    flex-direction: column;    align-items: center;  }}/* ─── FOCUS STATES (Accessibility) ─── */:focus-visible {  outline: 2px solid var(--green);  outline-offset: 2px;}/* ─── ANIMATIONS ─── */@media (prefers-reduced-motion: no-preference) {  .card, .btn, .two-col-image img {    transition: var(--transition);  }}

/* ═══════════════════════════════════════════
   SUB-PAGE STYLES
   (services, about, how-it-works, start, etc.)
   ═══════════════════════════════════════════ */

/* ─── Header/Nav (sub-page variant) ─── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy); border-bottom: 1px solid rgba(9,194,105,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.header .nav {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.header .nav-logo { display: flex; align-items: center; }
.header .nav-logo img { height: 44px; width: auto; }
.header .nav-menu {
  list-style: none; display: flex; align-items: center; gap: 4px;
}
.header .nav-link {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85);
  padding: 8px 20px; border-radius: 6px; transition: var(--transition);
}
.header .nav-link:hover, .header .nav-link.active { color: var(--green); }
.header .nav-cta {
  background: var(--green) !important; color: var(--white) !important;
  border-radius: 6px !important; padding: 10px 24px !important;
}
.header .nav-cta:hover { background: var(--green-hover) !important; }
.header .nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.header .nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; }

/* ─── Page Hero ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1a3e 100%);
  color: var(--white); text-align: center; padding: 80px 24px 60px;
}
.page-hero h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ─── Buttons (sub-page) ─── */
.btn-large { padding: 14px 36px; font-size: 1.05rem; }

/* ─── Service Detail ─── */
.service-detail { padding: 80px 0; }
.service-detail.alt { background: var(--off-white); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.detail-left h2 { margin-bottom: 8px; }
.detail-price { font-size: 1.6rem; font-weight: 700; color: var(--green); margin-bottom: 20px; }
.detail-intro { font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.detail-list { list-style: none; padding: 0; margin: 0 0 24px; }
.detail-list li {
  position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--text-body);
}
.detail-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--green); font-weight: 600;
}
.detail-highlight {
  background: rgba(9,194,105,0.06); border-left: 3px solid var(--green);
  padding: 20px 24px; border-radius: 0 8px 8px 0; margin-top: 16px;
}
.detail-highlight h3 { margin-bottom: 8px; font-size: 1.1rem; }
.detail-highlight p { margin: 0; color: var(--text-body); }
.detail-right { display: flex; flex-direction: column; gap: 20px; }
.highlight-box {
  background: rgba(9,194,105,0.04); border: 1px solid rgba(9,194,105,0.15);
  border-radius: 10px; padding: 24px;
}
.highlight-box h3 { font-size: 1rem; margin-bottom: 10px; color: var(--navy); }
.highlight-box p { margin: 0; color: var(--text-body); font-size: 0.95rem; line-height: 1.6; }

/* ─── Comparison Table ─── */
.comparison { padding: 80px 0; background: var(--off-white); }
.comparison h2 { text-align: center; margin-bottom: 40px; }
.comparison-table { max-width: 900px; margin: 0 auto; }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 1px; }
.comparison-row.header { background: var(--navy); border-radius: 8px 8px 0 0; }
.comparison-row.header .comparison-cell { color: var(--white); font-weight: 600; font-size: 0.9rem; background: var(--navy); }
.comparison-cell { padding: 16px; background: var(--white); text-align: center; font-size: 0.9rem; }
.comparison-cell.label { text-align: left; font-weight: 500; }

/* ─── CTA Final (sub-page) ─── */
.cta-final {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  color: var(--white); text-align: center; padding: 80px 24px;
}
.cta-final h2 { color: var(--white); margin-bottom: 12px; }
.cta-final p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 24px; }
.cta-final .btn-primary { background: var(--white); color: var(--navy); font-weight: 600; }
.cta-final .btn-primary:hover { background: var(--navy); color: var(--white); }

/* ─── About Page ─── */
.about-section { padding: 80px 0; }
.about-section.alt { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { line-height: 1.7; margin-bottom: 16px; }
.about-list { list-style: none; padding: 0; }
.about-list li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.about-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.about-highlight {
  background: rgba(9,194,105,0.06); border-left: 3px solid var(--green);
  padding: 20px 24px; border-radius: 0 8px 8px 0;
}
.philosophy-text { max-width: 800px; margin: 0 auto; }
.philosophy-text h2 { text-align: center; margin-bottom: 24px; }
.philosophy-text p { text-align: center; line-height: 1.7; }
.philosophy-list { list-style: none; padding: 0; max-width: 600px; margin: 24px auto 0; }
.philosophy-list li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.philosophy-list li::before { content: '→'; position: absolute; left: 0; color: var(--green); }
.philosophy-quote {
  text-align: center; font-style: italic; font-size: 1.15rem;
  color: var(--text-light); max-width: 600px; margin: 40px auto 0;
  padding: 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

/* ─── How It Works ─── */
.process { padding: 80px 0; }
.steps-grid { max-width: 800px; margin: 40px auto 0; }
.step {
  display: grid; grid-template-columns: 60px 1fr; gap: 12px 24px;
  margin-bottom: 48px; align-items: start;
}
.step > *:not(.step-number) { grid-column: 2; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
  grid-column: 1; grid-row: 1 / span 3;
}
.step-icon { display: none; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-body); line-height: 1.7; }
.step-details { margin-top: 12px; }
.step-details li { margin-bottom: 6px; color: var(--text-body); }
.section-intro { text-align: center; max-width: 700px; margin: 0 auto 40px; color: var(--text-light); font-size: 1.05rem; }
.differences-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.difference-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 24px; transition: var(--transition);
}
.difference-item:hover { box-shadow: 0 4px 16px var(--shadow); }
.difference-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.difference-item p { color: var(--text-body); margin: 0; }
.dont-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.dont-item { background: var(--off-white); border-radius: 10px; padding: 24px; }
.dont-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.dont-item p { color: var(--text-body); margin: 0; }
.faq { padding: 80px 0; background: var(--off-white); }
.faq h2 { text-align: center; margin-bottom: 40px; }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { color: var(--text-body); margin: 0; }

/* ─── Timeline ─── */
.timeline { padding: 80px 0; }
.timeline h2 { text-align: center; margin-bottom: 40px; }
.timeline-visual { max-width: 700px; margin: 0 auto; }
.timeline-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  margin-bottom: 32px; align-items: start;
}
.timeline-marker {
  font-size: 0.9rem; font-weight: 600; color: var(--green);
  padding-left: 24px; position: relative;
}
.timeline-marker::before {
  content: ''; position: absolute; left: 0; top: 5px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--green);
}
.timeline-marker::after {
  content: ''; position: absolute; top: 22px; left: 5px;
  width: 2px; height: 40px; background: rgba(9,194,105,0.2);
}
.timeline-item:last-child .timeline-marker::after { display: none; }
.timeline-desc strong { font-size: 1rem; color: var(--navy); }
.timeline-desc p { color: var(--text-body); margin: 4px 0 0; font-size: 0.95rem; }
.timeline-note { text-align: center; color: var(--text-light); font-style: italic; margin-top: 32px; }

/* ─── Trust Signals ─── */
.trust-signals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.signal {
  text-align: center; padding: 24px; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
}
.signal h4 { margin-bottom: 6px; }
.signal p { color: var(--text-body); margin: 0; font-size: 0.9rem; }

/* ─── Points Grid ─── */
.points-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.point { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.point h3 { font-size: 1.05rem; margin-bottom: 8px; }
.point p { color: var(--text-body); margin: 0; }
.key-points { list-style: none; padding: 0; margin-top: 24px; }
.key-points li { padding-left: 24px; position: relative; margin-bottom: 8px; }
.key-points li::before { content: '→'; position: absolute; left: 0; color: var(--green); }

/* ─── Start / Intake Form ─── */
.intake-form-section { padding: 80px 0; }
.intake-wrapper { max-width: 700px; margin: 0 auto; }
.form-intro { text-align: center; margin-bottom: 40px; }
.form-intro h2 { margin-bottom: 12px; }
.form-intro p { color: var(--text-light); }
.intake-form .form-group { margin-bottom: 20px; }
.intake-form label { display: block; font-weight: 500; color: var(--navy); margin-bottom: 6px; font-size: 0.9rem; }
.intake-form input, .intake-form textarea, .intake-form select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 1rem; font-family: inherit; background: var(--white); color: var(--text-dark);
  transition: var(--transition);
}
.intake-form input:focus, .intake-form textarea:focus, .intake-form select:focus {
  border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(9,194,105,0.15);
}
.intake-form textarea { min-height: 140px; resize: vertical; }
.required { color: #e53e3e; }
.form-note { text-align: center; color: var(--text-light); font-size: 0.85rem; margin-top: 16px; }
.form-alt { text-align: center; padding: 40px 0; }
.form-alt h3 { margin-bottom: 8px; }
.contact-info { text-align: center; margin-top: 16px; }
.contact-info a { color: var(--green); }
.counter-wrapper { position: relative; }
.char-counter { position: absolute; bottom: 8px; right: 12px; }
.char-count { font-size: 0.8rem; color: var(--text-light); }
.hp-field { display: none; }
.next-steps { padding: 60px 0; background: var(--off-white); }
.next-steps h2 { text-align: center; margin-bottom: 32px; }
.no-bullets { list-style: none; padding: 0; max-width: 600px; margin: 0 auto; }
.no-bullets li { padding-left: 28px; position: relative; margin-bottom: 12px; }
.no-bullets li::before { content: '→'; position: absolute; left: 0; color: var(--green); }
.intro-note { text-align: center; padding: 16px; background: rgba(9,194,105,0.06); border-radius: 8px; margin-bottom: 32px; }

/* ─── Privacy / Terms ─── */
.privacy-content { padding: 60px 0; }
.policy-document { max-width: 800px; margin: 0 auto; }
.policy-document h2 { margin-top: 40px; margin-bottom: 16px; }
.policy-document h3 { margin-top: 24px; margin-bottom: 12px; }
.policy-document p { line-height: 1.7; margin-bottom: 16px; }
.policy-list { padding-left: 24px; margin-bottom: 16px; }
.policy-list li { margin-bottom: 8px; line-height: 1.6; }

/* ─── Thanks Page ─── */
.thanks-hero { padding: 80px 0; text-align: center; }
.thanks-content h1 { margin-bottom: 12px; }
.thanks-subtitle { font-size: 1.15rem; color: var(--text-light); margin-bottom: 32px; }
.thanks-card {
  max-width: 600px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px; padding: 32px;
}
.thanks-grid { margin-top: 24px; }
.thanks-next h3 { margin-bottom: 12px; }
.thanks-next p { color: var(--text-body); }
.thanks-cta { margin-top: 32px; }
.cta-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }

/* ─── 404 Page ─── */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
.error-content { text-align: center; }
.error-message { font-size: 6rem; font-weight: 700; color: var(--green); margin-bottom: 16px; }
.error-actions { display: flex; gap: 16px; justify-content: center; margin-top: 24px; }

/* ─── Footer (sub-page variant) ─── */
.footer {
  background: var(--navy); color: var(--white);
  padding: 48px 0 24px; border-top: 1px solid rgba(9,194,105,0.15);
}
.footer .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-content {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px; margin-bottom: 24px;
}
.footer-brand p { color: rgba(255,255,255,0.6); margin: 4px 0 0; font-size: 0.9rem; }
.footer-brand img { margin-bottom: 4px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--green); }
.footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; text-align: center;
}
.footer .footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin: 0; }

/* ─── Sub-page responsive ─── */
@media (max-width: 768px) {
  .header .nav-toggle { display: flex; }
  .header .nav-menu {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; padding: 16px 24px;
    border-bottom: 1px solid rgba(9,194,105,0.15);
  }
  .header .nav-menu.open { display: flex; }
  .page-hero h1 { font-size: 2rem; }
  .detail-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
  .step > *:not(.step-number) { grid-column: 2; }
  .step-number { grid-row: 1; }
  .step-details ul { padding-left: 20px; }
  .timeline-item { grid-template-columns: 90px 1fr; gap: 16px; }
  .timeline-marker { font-size: 0.8rem; }
  .comparison-row { grid-template-columns: 1fr 1fr; }
  .comparison-row.header .comparison-cell:first-child { border-radius: 8px 0 0 0; }
  .footer-content { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 8px; }
  .hero-stats { flex-direction: row; gap: 20px; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.7rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .two-col.reverse { direction: ltr; }
  .two-col-image { order: -1; }
  .points-grid { grid-template-columns: 1fr; }
  .differences-grid { grid-template-columns: 1fr; }
  .dont-grid { grid-template-columns: 1fr; }
  .trust-signals-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 100px 24px 72px; min-height: auto; }
  .hero-content h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .section { padding: 56px 0; }
}

/* ═══════════════════════════════════════════
   HOMEPAGE-SPECIFIC STYLES
   ═══════════════════════════════════════════ */

/* ─── Hero Stats ─── */
.hero-stats {
  display: flex; justify-content: center; gap: 40px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.stat-number {
  display: block; font-size: 2.4rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.stat-label {
  display: block; font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.7); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ─── Card Price ─── */
.card-price {
  font-size: 1.4rem; font-weight: 700; color: var(--green);
  margin-bottom: 12px;
}

/* ─── Button Outline Small ─── */
.btn-outline-sm {
  display: inline-block; font-size: 0.85rem; font-weight: 600;
  color: var(--green); padding: 8px 0; border: none; background: none;
  transition: var(--transition); margin-top: 12px;
}
.btn-outline-sm:hover { color: var(--green-hover); }

/* ─── Trust Grid (homepage) ─── */
.trust-section { background: var(--off-white); }
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.trust-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition);
}
.trust-item:hover { box-shadow: 0 4px 16px var(--shadow); }
.trust-item h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.trust-item p { color: var(--text-body); margin: 0; line-height: 1.6; }
