/* ============================================================
   UNLAD Digital — styles.css
   Clean, modern, mobile-first stylesheet.

   TABLE OF CONTENTS:
   1.  Design Tokens (CSS Variables)
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Section Helpers (labels, headers)
   7.  Navigation
   8.  Hero
   9.  Who We Help
   10. Services
   11. Pricing
   12. Monthly Plans
   13. Before & After
   14. Process / Steps
   15. About
   16. FAQ Accordion
   17. Contact Form
   18. Footer
   19. Scroll Animations
   20. Responsive — Tablet (max 900px)
   21. Responsive — Mobile (max 640px)
   22. Accessibility
============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   Edit colors, font, spacing, and shadows here.
============================================================ */
:root {
  /* Brand colors */
  --primary:        #1a3f6f;   /* deep navy blue */
  --primary-dark:   #0f2d52;
  --primary-light:  #e8f1fb;

  --accent:         #f97316;   /* warm orange — used for CTAs and highlights */
  --accent-dark:    #ea6c0a;
  --accent-light:   #fff7ed;

  /* Backgrounds */
  --bg:             #f8fafc;   /* light section bg */
  --bg-white:       #ffffff;
  --bg-dark:        #0d1b2a;   /* footer */

  /* Text */
  --text-dark:      #0f172a;
  --text-body:      #475569;
  --text-muted:     #94a3b8;

  /* UI */
  --border:         #e2e8f0;
  --success:        #16a34a;
  --success-bg:     #dcfce7;
  --error:          #dc2626;
  --error-bg:       #fee2e2;

  /* Radii */
  --radius-sm:      6px;
  --radius:         14px;
  --radius-lg:      22px;
  --radius-full:    9999px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --nav-h:       68px;
  --max-w:       1100px;
  --section-pad: 88px;
  --gap:         24px;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent); }


/* ============================================================
   3. TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.15rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.2rem); }

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


/* ============================================================
   4. LAYOUT UTILITIES
============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--bg);
}

/* Responsive grid system */
.grid {
  display: grid;
  gap: var(--gap);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }


/* ============================================================
   5. BUTTONS
   Variants: btn-primary, btn-ghost, btn-outline, btn-outline-light
   Sizes: default, btn-lg
   Width: btn-full
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(249,115,22,0.35);
}

/* White ghost button — used on dark hero background */
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  transform: translateY(-1px);
}

/* Outlined — dark border, transparent bg */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Outlined — light version for dark section backgrounds */
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-full { width: 100%; }

/* Inline text link with arrow */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s, color 0.2s;
}
.btn-link:hover {
  color: var(--accent);
  gap: 8px;
}


/* ============================================================
   6. SECTION HELPERS
============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

/* Centered section header block */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.section-header h2 {
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-body);
}
.section-header a {
  color: var(--primary);
  font-weight: 600;
}
.section-header a:hover {
  color: var(--accent);
}


/* ============================================================
   7. NAVIGATION
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Add shadow and border when user scrolls down */
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.logo { display: inline-flex; align-items: baseline; gap: 2px; }
.logo-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-body);
}
.logo:hover .logo-main { color: var(--accent); }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
  background: var(--bg);
}

/* CTA button in nav */
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: var(--radius-full) !important;
  margin-left: 6px;
  padding: 8px 18px !important;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   8. HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(155deg, #1a3f6f 0%, #1e4a82 45%, #0a2540 100%);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.hero-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
  line-height: 1.13;
}

.hero-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 38px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

/* Decorative background shapes */
.hero-bg-shapes { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.shape-1 { width: 700px; height: 700px; top: -250px; right: -200px; }
.shape-2 { width: 500px; height: 500px; bottom: -200px; left: -180px; }


/* ============================================================
   9. WHO WE HELP
============================================================ */
.who-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.who-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.who-icon { font-size: 2rem; margin-bottom: 12px; }
.who-card h3 { font-size: 0.97rem; margin-bottom: 7px; }
.who-card p  { font-size: 0.88rem; color: var(--text-body); }


/* ============================================================
   10. SERVICES
============================================================ */
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.service-icon { font-size: 2.2rem; margin-bottom: 16px; }

.service-card h3 { margin-bottom: 12px; }
.service-card > p { font-size: 0.95rem; margin-bottom: 20px; }

.service-features {
  flex: 1;
  margin-bottom: 24px;
}
.service-features li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 7px 0 7px 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}


/* ============================================================
   11. PRICING
============================================================ */
.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Highlighted pricing card */
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-icon { font-size: 2rem; margin-bottom: 12px; }
.pricing-card h3 { font-size: 1.05rem; margin-bottom: 14px; }

.price-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.price-from {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}
.price-amount {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.price-desc {
  font-size: 0.87rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.6;
}

.price-features {
  flex: 1;
  margin-bottom: 26px;
}
.price-features li {
  font-size: 0.87rem;
  color: var(--text-body);
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-top: 38px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-note a { color: var(--primary); font-weight: 600; }


/* ============================================================
   12. MONTHLY PLANS
============================================================ */
.plans {
  background: var(--primary);
}

/* Override section-label color for dark background */
.plans .section-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}
.plans-header h2 { color: #fff; }
.plans-header p  { color: rgba(255,255,255,0.72); }

.plan-card {
  position: relative;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, background 0.2s;
}
.plan-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

/* Featured plan — white background on dark section */
.plan-card.plan-featured {
  background: #fff;
  border-color: #fff;
}
.plan-card.plan-featured h3,
.plan-card.plan-featured .plan-amount { color: var(--text-dark); }
.plan-card.plan-featured .plan-period,
.plan-card.plan-featured .plan-desc   { color: var(--text-body); }
.plan-card.plan-featured .plan-features li {
  color: var(--text-body);
  border-color: var(--border);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.plan-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.plan-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.plan-period {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
}

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

.plan-features {
  flex: 1;
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.plan-features li:last-child { border-bottom: none; }

.plans-note {
  text-align: center;
  margin-top: 38px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
}


/* ============================================================
   13. BEFORE & AFTER
============================================================ */
.ba-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-business-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.ba-before, .ba-after {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.ba-before {
  background: var(--error-bg);
  border: 1px solid #fca5a5;
}
.ba-after {
  background: var(--success-bg);
  border: 1px solid #86efac;
}

.ba-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.before-label { color: var(--error); }
.after-label  { color: var(--success); }

.ba-before ul li,
.ba-after  ul li {
  font-size: 0.87rem;
  color: var(--text-body);
  padding: 3px 0 3px 18px;
  position: relative;
}
.ba-before ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--error);
  font-weight: 700;
}
.ba-after ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.ba-arrow {
  text-align: center;
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1;
}

.ba-result {
  text-align: center;
}
.ba-result span,
.ba-result {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.ba-disclaimer {
  text-align: center;
  margin-top: 38px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}


/* ============================================================
   14. PROCESS / STEPS
============================================================ */
.steps-wrapper {
  max-width: 680px;
  margin: 0 auto 52px;
}

.step {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
}

.step-content {
  padding-top: 6px;
  padding-bottom: 28px;
}
.step-content h3 { margin-bottom: 8px; }
.step-content p  { font-size: 0.95rem; }

/* Vertical line connecting steps */
.step-connector {
  width: 2px;
  height: 28px;
  background: var(--border);
  margin-left: 26px;
}

.process-cta { text-align: center; }


/* ============================================================
   15. ABOUT
============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo-placeholder {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--border) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.about-content .section-label { display: inline-block; margin-bottom: 14px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 16px; font-size: 0.97rem; line-height: 1.78; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}
.value-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}


/* ============================================================
   16. FAQ ACCORDION
============================================================ */
.faq-container {
  max-width: 740px;
}

.faq-list { margin-top: 44px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: var(--bg-white);
  border: none;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg); }
.faq-question:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--bg);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 700;
  transition: transform 0.3s, background 0.2s, color 0.2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

/* Answer: hidden by default, revealed by JS adding .open */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-answer.open {
  max-height: 400px;
}
.faq-answer p {
  padding: 2px 24px 20px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.72;
}
.faq-answer a {
  color: var(--primary);
  font-weight: 500;
}


/* ============================================================
   17. CONTACT FORM
============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-label { display: inline-block; margin-bottom: 14px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 0.97rem; margin-bottom: 38px; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 22px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-detail a,
.contact-detail span {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-dark);
}
.contact-detail a:hover { color: var(--accent); }

/* Form card */
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  box-shadow: var(--shadow);
}

/* Hide honeypot from real users */
.form-honeypot { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.required { color: var(--accent); margin-left: 2px; }
.optional  { color: var(--text-muted); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Custom select arrow */
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

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

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
}


/* ============================================================
   18. FOOTER
============================================================ */
.footer { background: var(--bg-dark); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-logo .logo-main { color: #fff; }
.footer-logo .logo-sub  { color: rgba(255,255,255,0.5); }
.footer-brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
  line-height: 1.65;
}

.footer-col h4,
.footer-contact-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-contact-col {
  display: flex;
  flex-direction: column;
}
.footer-contact-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-contact-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}


/* ============================================================
   19. SCROLL ANIMATIONS
   Elements with .animate-up start invisible and slide up into view.
   JavaScript adds .is-visible via IntersectionObserver.
============================================================ */
.animate-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .animate-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}


/* ============================================================
   20. RESPONSIVE — TABLET (max-width: 900px)
============================================================ */
@media (max-width: 900px) {
  :root { --section-pad: 64px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo-placeholder {
    max-width: 300px;
    margin: 0 auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   21. RESPONSIVE — MOBILE (max-width: 640px)
============================================================ */
@media (max-width: 640px) {
  :root { --section-pad: 52px; }

  /* --- Mobile Nav --- */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.28s, transform 0.28s;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 28px;
  }
  .nav-cta { margin-left: 0; margin-top: 8px; }

  /* --- Grids collapse to 1 column --- */
  .grid-2,
  .grid-3,
  .grid-4,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* --- Hero --- */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* --- Steps --- */
  .step {
    flex-direction: column;
    gap: 12px;
  }
  .step-connector { display: none; }

  /* --- About --- */
  .about-values { grid-template-columns: 1fr; }

  /* --- Contact form --- */
  .contact-form {
    padding: 28px 20px;
  }
  .form-row { grid-template-columns: 1fr; }

  /* --- Footer --- */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 32px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ============================================================
   22. ACCESSIBILITY
============================================================ */

/* Visible focus ring for keyboard navigation */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip-to-content link (add to HTML if desired) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }


/* ============================================================
   DEMOS PAGE
   All styles below are scoped to the /demos page.
   Nothing above this line is changed.

   Sections:
   A.  Demos Hero
   B.  Demo Cards
   C.  Why They Work cards
   D.  Comparison Table
   E.  Final CTA (dark)
   F.  Nav active state
   G.  Demos responsive overrides
============================================================ */


/* ── A. DEMOS HERO ────────────────────────────────────────── */
.demos-hero {
  position: relative;
  padding: 130px 0 88px;
  background: linear-gradient(155deg, #1a3f6f 0%, #1e4a82 45%, #0a2540 100%);
  overflow: hidden;
  text-align: center;
}

/* Decorative background circles */
.demos-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.demos-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.demos-shape-1 { width: 680px; height: 680px; top: -260px; right: -180px; }
.demos-shape-2 { width: 480px; height: 480px; bottom: -200px; left: -160px; }

.demos-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

/* Override section-label color for dark background */
.demos-label {
  background: rgba(255,255,255,0.13) !important;
  color: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 20px;
}

.demos-hero-inner h1 {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.demos-hero-inner > p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
}

.demos-hero-disclaimer {
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  font-style: italic;
}


/* ── B. DEMO CARDS ────────────────────────────────────────── */

/* 2-column grid — wide enough for content-rich cards */
.demo-cards-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.demo-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Coloured header strip with icon */
.demo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 24px;
}

/* Industry colour themes */
.demo-header-home       { background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%); }
.demo-header-restaurant { background: linear-gradient(135deg, #b91c1c 0%, #f97316 100%); }
.demo-header-tech       { background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%); }
.demo-header-salon      { background: linear-gradient(135deg, #9d174d 0%, #ec4899 100%); }

.demo-card-icon {
  font-size: 2.8rem;
  line-height: 1;
}

/* "Demo Website" pill inside the header */
.demo-sample-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Card body */
.demo-card-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.demo-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.demo-card-body > p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Metadata rows (Best for / Main CTA / Focus) */
.demo-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.demo-meta-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.demo-meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Tag cloud */
.demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.demo-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-body);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* CTA type badge — colour-coded per industry */
.demo-cta-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  width: fit-content;
}
.demo-cta-home       { background: #e0f2fe; color: #0369a1; }
.demo-cta-restaurant { background: #fef3c7; color: #b45309; }
.demo-cta-tech       { background: #ede9fe; color: #6d28d9; }
.demo-cta-salon      { background: #fce7f3; color: #be185d; }

/* Focus line (short description of what the site is built to drive) */
.demo-focus {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.6;
}


/* ── C. WHY THEY WORK CARDS ───────────────────────────────── */
.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}


/* ── D. COMPARISON TABLE ──────────────────────────────────── */
.comparison-table {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Two-column header */
.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.comparison-col-label {
  padding: 16px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}
.col-bad  { background: var(--error-bg);   color: var(--error);   }
.col-good { background: var(--success-bg); color: var(--success); }

/* Each comparison row */
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.comparison-cell {
  padding: 17px 24px 17px 44px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
  position: relative;
}

/* Icon in the left gutter */
.comparison-cell::before {
  position: absolute;
  left: 18px;
  top: 18px;
  font-weight: 700;
  font-size: 0.88rem;
}

.cell-bad {
  background: #fffafa;
  border-right: 1px solid var(--border);
}
.cell-bad::before  { content: '✗'; color: var(--error); }

.cell-good { background: #f0fdf4; }
.cell-good::before { content: '✓'; color: var(--success); }


/* ── E. FINAL CTA (DARK) ──────────────────────────────────── */
.demos-final-cta {
  background: linear-gradient(155deg, #1a3f6f 0%, #0a2540 100%);
  padding: var(--section-pad) 0;
  text-align: center;
}
.demos-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.demos-cta-inner h2 {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.demos-cta-inner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 36px;
}


/* ── F. ACTIVE NAV LINK ───────────────────────────────────── */
/* Applied to the current page's nav link */
.nav-active {
  color: var(--accent) !important;
  font-weight: 600 !important;
}


/* ── G. DEMOS RESPONSIVE OVERRIDES ───────────────────────── */
@media (max-width: 900px) {
  .demo-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .demos-hero {
    padding: 100px 0 64px;
  }

  /* Stack comparison table to single column on small screens */
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }
  .col-bad {
    border-bottom: 1px solid rgba(220,38,38,0.2);
  }
  .cell-bad {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}


/* ============================================================
   PRICING PAGE  (pricing.html)
   Appended — nothing above this line is changed.

   Sections:
   A.  Pricing Page Hero
   B.  Package Cards (2×2 grid)
   C.  Mini Package Cards (condensed preview on index.html)
   D.  Comparison Table
   E.  Monthly Care Plan Cards
   F.  Add-on Groups & Items
   G.  Pricing Disclaimer
   H.  Pricing-page responsive overrides
============================================================ */


/* ── A. PRICING PAGE HERO ────────────────────────────────── */
.pricing-hero {
  position: relative;
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 110px 0 72px;
  text-align: center;
  overflow: hidden;
}
.pricing-hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.pricing-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.pricing-hero-shape-1 { width: 600px; height: 600px; top: -220px; right: -180px; }
.pricing-hero-shape-2 { width: 420px; height: 420px; bottom: -160px; left: -140px; }

.pricing-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-hero-inner h1 {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.pricing-hero-inner > p {
  color: rgba(255,255,255,0.76);
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 34px;
}
.pricing-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── B. PACKAGE CARDS ────────────────────────────────────── */
.pkg-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pkg-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
/* Recommended card gets orange ring */
.pkg-card.pkg-recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}

/* "Recommended" tab hanging from the top */
.pkg-rec-badge {
  position: absolute;
  top: -1px;
  right: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 2;
}

/* Coloured header strip — each package has its own palette */
.pkg-top {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
}
.pkg-top-starter  { background: linear-gradient(135deg, #e8f1fb 0%, #dbeafe 100%); }
.pkg-top-local    { background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%); }
.pkg-top-growth   { background: linear-gradient(135deg, #e8f1fb 0%, #bfdbfe 100%); }
.pkg-top-pro      { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }

.pkg-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.pkg-top-pro .pkg-name { color: #fff; }

.pkg-best-for {
  font-size: 0.82rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 10px;
}
.pkg-top-pro .pkg-best-for { color: rgba(255,255,255,0.65); }

.pkg-pages-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.55);
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.08);
}
.pkg-top-pro .pkg-pages-badge {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.2);
}

/* Card body */
.pkg-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Price area */
.pkg-price-section {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pkg-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.pkg-price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.pkg-price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
/* Monthly care plan pill */
.pkg-monthly {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
  color: var(--text-body);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.pkg-monthly strong { color: var(--accent); font-weight: 700; }

/* Feature checklist */
.pkg-features {
  list-style: none;
  flex: 1;
  margin-bottom: 16px;
}
.pkg-features li {
  font-size: 0.87rem;
  color: var(--text-body);
  padding: 6px 0 6px 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.45;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Tagline / main selling point */
.pkg-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}


/* ── C. MINI PACKAGE CARDS (index.html preview) ──────────── */
.pkg-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pkg-mini-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pkg-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pkg-mini-card.mini-recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}
.mini-rec-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pkg-mini-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pkg-mini-price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-mini-care {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pkg-mini-pages {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}


/* ── D. COMPARISON TABLE ─────────────────────────────────── */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  background: var(--bg-white);
}
.compare-table th {
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.compare-table th.th-feature {
  text-align: left;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.compare-table th.th-pkg { background: var(--bg); color: var(--text-dark); }
.compare-table th.th-rec {
  background: var(--accent-light);
  color: var(--accent-dark);
  border-top: 3px solid var(--accent);
}
.compare-table td {
  padding: 12px 18px;
  font-size: 0.87rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.td-feature {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg);
  font-size: 0.85rem;
}
.compare-table td.td-rec {
  background: var(--accent-light);
  font-weight: 500;
}
.compare-check { color: var(--success); font-weight: 700; font-size: 1rem; }
.compare-dash  { color: var(--text-muted); }
.compare-table tr:nth-child(even) td { filter: brightness(0.984); }


/* ── E. MONTHLY CARE PLAN CARDS ──────────────────────────── */
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.care-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.care-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.care-icon { font-size: 2rem; margin-bottom: 12px; }
.care-card h3 { font-size: 1rem; margin-bottom: 8px; }
.care-card p  { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }

/* Care plan callout box (the simple explanation) */
.care-callout {
  background: var(--primary-light);
  border: 1px solid #c7d8f0;
  border-radius: var(--radius);
  padding: 26px 32px;
  text-align: center;
  margin-bottom: 44px;
}
.care-callout p {
  font-size: 1.05rem;
  color: var(--primary-dark);
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
}
.care-callout strong { color: var(--primary); }


/* ── F. ADD-ON GROUPS & ITEMS ────────────────────────────── */
.addon-group { margin-bottom: 40px; }
.addon-group:last-child { margin-bottom: 0; }

.addon-group-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.addon-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  gap: 12px;
  transition: background 0.18s, border-color 0.18s;
}
.addon-item:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}
.addon-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
}
.addon-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.addon-rush-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}


/* ── G. PRICING DISCLAIMER ───────────────────────────────── */
.pricing-disclaimer {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.65;
}


/* ── H. PRICING PAGE RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .pkg-card-grid  { grid-template-columns: 1fr; }
  .pkg-mini-grid  { grid-template-columns: repeat(2, 1fr); }
  .care-grid      { grid-template-columns: repeat(2, 1fr); }
  .addon-list     { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pricing-hero           { padding: 88px 0 52px; }
  .pricing-hero-btns      { flex-direction: column; align-items: center; }
  .pricing-hero-inner h1  { font-size: 1.85rem; }
  .pkg-mini-grid          { grid-template-columns: 1fr; }
  .care-grid              { grid-template-columns: 1fr; }
  .care-callout           { padding: 20px 18px; }
  .care-callout p         { font-size: 0.97rem; }
}
