/* =============================================================
   GelatineFit™ — Main Stylesheet
   Mobile-first, pure CSS Grid/Flexbox, no frameworks
   ============================================================= */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:       #2d7a4f;
  --primary-dark:  #1f5a39;
  --primary-light: #e8f5ee;
  --accent:        #5aaa76;
  --accent2:       #f4a83a;
  --text:          #1a2e23;
  --text-light:    #5a6e62;
  --bg:            #ffffff;
  --bg-alt:        #f4faf6;
  --bg-dark:       #162a1e;
  --border:        #d4e8db;
  --radius:        10px;
  --radius-lg:     18px;
  --shadow:        0 2px 16px rgba(45,122,79,0.10);
  --shadow-hover:  0 8px 32px rgba(45,122,79,0.18);
  --transition:    0.25s ease;
  --font-body:     'Nunito', sans-serif;
  --font-serif:    'Lora', serif;
}

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

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

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-full { width: 100%; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}
.logo-text sup { font-size: 0.55rem; }

.main-nav ul {
  display: none;
  gap: 0.25rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-header-cta { display: none; }

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 38px;
  height: 38px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav open */
.nav-open .main-nav {
  display: flex;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: #fff;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-open .main-nav ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.nav-open .main-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.05rem;
}
.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .main-nav ul { display: flex; }
  .btn-header-cta { display: inline-block; }
  .burger { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1f5a39 0%, #2d7a4f 55%, #3a9966 100%);
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: #a8e6c0;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mockup {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  max-width: 320px;
  width: 100%;
  backdrop-filter: blur(6px);
}
.hero-mockup-emoji { font-size: 4.5rem; margin-bottom: 1rem; }
.hero-mockup h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.1rem; }
.hero-mockup p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.hero-mockup-tag {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero { padding: 6rem 0 5rem; }
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ── SECTION LAYOUT ───────────────────────────────────────── */
section { padding: 4.5rem 0; }
section:nth-child(even) {
    /* background: var(--bg-alt); */

}

.section-center { text-align: center; }

/* ── PRODUCTS ─────────────────────────────────────────────── */
.products-grid {
  display: grid;
  gap: 1.75rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-card.featured {
  border-color: var(--primary);
  position: relative;
}
.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--accent2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.product-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-body { padding: 1.5rem; }
.product-name { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; }
.product-desc { color: var(--text-light); font-size: 0.93rem; margin-bottom: 1rem; line-height: 1.6; }
.product-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.product-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── FEATURES ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-hover); }
.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 10px;
}
.feature-text h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.feature-text p { color: var(--text-light); font-size: 0.9rem; }

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials { background: var(--primary); }
.testimonials .section-heading { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,0.75); }
.testimonials .section-label { background: rgba(255,255,255,0.15); color: #fff; }

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(4px);
}
.testimonial-stars { color: #ffd166; font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.testimonial-location { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── WHY US / SERVICE ─────────────────────────────────────── */
.service-grid {
  display: grid;
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-emoji { font-size: 2.2rem; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--text-light); font-size: 0.88rem; }

@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── DISCLAIMER BLOCK ─────────────────────────────────────── */
.disclaimer-block {
  background: #f5f5f5;
  border-left: 4px solid var(--border);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.disclaimer-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.75rem;
}
.disclaimer-block p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.75;
}

/* ── ORDER PAGE ───────────────────────────────────────────── */
.order-page { padding: 3rem 0; }
.order-grid {
  display: grid;
  gap: 2.5rem;
}

.order-product-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.order-product-image {
  height: 160px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 1.25rem;
}
.order-product-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.35rem; }
.order-product-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.order-includes h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}
.order-includes ul { display: flex; flex-direction: column; gap: 0.45rem; }
.order-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.93rem;
  color: var(--text);
}
.order-includes li::before {
  content: '✅';
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.order-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.order-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ── FORM STYLES ──────────────────────────────────────────── */
.order-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
label .req { color: var(--primary); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
textarea {
  height: 120px;
  padding: 0.85rem 1rem;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,122,79,0.12);
}

input.error, select.error { border-color: #e53e3e; }
.error-msg {
  display: none;
  color: #e53e3e;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}
.error-msg.visible { display: block; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
}
.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
}
.checkbox-group label a { font-weight: 600; color: var(--primary); }

.submit-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.submit-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
}

.server-error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .order-grid { grid-template-columns: 1fr 1.5fr; }
}

/* ── THANK YOU PAGE ───────────────────────────────────────── */
.thankyou-page {
  padding: 5rem 0;
  text-align: center;
}
.thankyou-icon {
  font-size: 4.5rem;
  margin-bottom: 1.25rem;
}
.thankyou-page h1 { margin-bottom: 0.5rem; }
.thankyou-order {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  margin: 1rem 0 2rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  text-align: left;
}
.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.step-content h4 { font-size: 0.98rem; margin-bottom: 0.25rem; }
.step-content p { font-size: 0.88rem; color: var(--text-light); }

.support-box {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.support-box h3 { margin-bottom: 0.3rem; }
.support-box p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.25rem; }
.support-phone {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 0.5rem;
}
.support-email {
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}
.support-hours { font-size: 0.88rem; color: var(--text-light); }

/* ── UPSELL NUDGE ─────────────────────────────────────────── */
.upsell-nudge {
  max-width: 520px;
  margin: 2rem auto;
  background: linear-gradient(135deg, #fffbf0, #fff8e6);
  border: 2px solid #f4a83a;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.upsell-badge {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.upsell-nudge h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.upsell-nudge p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.upsell-nudge .btn-outline {
  border-color: var(--accent2);
  color: var(--accent2);
}

.upsell-nudge .btn-outline:hover {
  background: var(--accent2);
  color: #fff;
}

/* ── SHARE BLOCK ──────────────────────────────────────────── */
.share-block {
  max-width: 520px;
  margin: 2rem auto 0;
  text-align: center;
}

.share-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid;
  transition: all var(--transition);
}

.share-fb {
  border-color: #1877f2;
  color: #1877f2;
}
.share-fb:hover {
  background: #1877f2;
  color: #fff;
}

.share-tw {
  border-color: #000;
  color: #000;
}
.share-tw:hover {
  background: #000;
  color: #fff;
}

/* ── PRINT STYLESHEET ─────────────────────────────────────── */
@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .mobile-cta,
  .upsell-nudge,
  .share-block,
  .btn-outline,
  .btn-primary {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .thankyou-page {
    padding: 1rem 0;
  }

  .support-box {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }

  .step-item {
    page-break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    color: #555;
  }
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--primary-dark);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number span {
  font-size: 0.65em;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── TIMELINE ─────────────────────────────────────────────── */
.timeline {
  max-width: 720px;
  margin: 2rem auto 0;
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
  z-index: 1;
}

.timeline-year {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}

.timeline-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ── TEAM SECTION ─────────────────────────────────────────── */
.team-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(45,122,79,0.25);
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.team-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-page { padding: 4rem 0; }
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3.5rem;
}
.about-hero h1 { color: #fff; }
.about-hero p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 1rem auto 0; }

.about-story { max-width: 780px; margin: 0 auto 3.5rem; }
.about-story p { color: var(--text-light); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1.03rem; }

.mission-block {
  background: var(--primary-light);
  border-left: 5px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2.5rem;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}
.mission-block h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  color: var(--primary-dark);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.45;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.value-emoji { font-size: 2.5rem; margin-bottom: 0.85rem; }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { color: var(--text-light); font-size: 0.93rem; }

@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-page { padding: 4rem 0; }
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { margin-bottom: 1.5rem; font-size: 1.3rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-content h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-info-content p, .contact-info-content a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1.5fr 1fr; }
}

/* ── POLICY PAGES ─────────────────────────────────────────── */
.policy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.policy-page h1 {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
}
.policy-page .policy-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.policy-page h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}
.policy-page p, .policy-page li {
  line-height: 1.85;
  color: #333;
  margin-bottom: 0.75rem;
  font-size: 0.97rem;
}
.policy-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.88rem;
}
.policy-page table th,
.policy-page table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  text-align: left;
}
.policy-page table th { background: var(--bg-alt); font-weight: 700; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}
.footer-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.footer-mission { font-size: 0.88rem; line-height: 1.7; }

.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-contact li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--accent); }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-disclaimer { font-size: 0.78rem !important; }

@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 9999;
  padding: 1rem 1.25rem;
}
.cookie-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.cookie-inner p { font-size: 0.88rem; color: rgba(255,255,255,0.8); flex: 1; min-width: 220px; }
.cookie-inner p a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ── FADE-IN ANIMATION ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.faq-question[aria-expanded="true"] {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform var(--transition);
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}

.faq-answer.open { display: block; }

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-top: 1rem;
}

.faq-answer p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* ── PLAN COMPARISON TABLE ────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 1rem;
}

.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.93rem;
}

.compare-table thead th {
  background: var(--primary-dark);
  color: #fff;
  padding: 1.1rem 1.25rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.4;
}

.compare-table thead th.compare-feature-col {
  text-align: left;
  background: var(--bg-dark);
}

.compare-table thead th.compare-featured {
  background: var(--primary);
  position: relative;
}

.compare-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #a8e6c0;
  margin-top: 0.2rem;
}

.compare-table tbody tr:nth-child(even) td {
  background: var(--bg-alt);
}
.compare-table tbody tr:nth-child(even) td.compare-featured {
  background: #e0f5eb;
}

.compare-table tbody td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text-light);
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
}

.compare-table tbody td.compare-featured {
  background: #f0fbf4;
  font-weight: 700;
  color: var(--primary-dark);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.compare-table tbody tr:last-child td.compare-featured {
  border-bottom: 2px solid var(--primary);
}

.compare-cta-row td {
  padding: 1.25rem !important;
  border-bottom: none !important;
  background: #fff !important;
}
.compare-cta-row td.compare-featured {
  background: #f0fbf4 !important;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem 0;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.cta-banner-text h2 {
  color: #fff;
  margin-bottom: 0.6rem;
}

.cta-banner-text p {
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  font-size: 1.05rem;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.cta-banner-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .cta-banner-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .cta-banner-actions { align-items: flex-end; }
}

/* ── FLOATING MOBILE CTA ──────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
  .mobile-cta { display: block; }
  /* Give footer room so it's not hidden behind the floating CTA */
  .site-footer { padding-bottom: 5rem; }
  /* Hide if cookie banner is visible — handled by JS */
}

/* ── UTILITIES ────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }
.text-green { color: var(--primary); }
