/*
🏥 First Wellness Design System
Version: 2.0
Last updated: 2026-02-06

MASTER STYLESHEET - Controls typography, widths, and core styles across ALL pages.
Load AFTER design-system.css and components.css
*/

/* ===== CSS CUSTOM PROPERTIES (TOKENS) ===== */
:root {
  /* ─── Brand Colors ─── */
  --fw-primary: #2E73F7;
  --fw-primary-hover: #2d4fd4;
  --fw-primary-light: #e8ecff;
  --fw-secondary: #202223;
  --fw-accent: #10b981;
  
  /* ─── Text Colors ─── */
  --fw-text: #202223;
  --fw-text-muted: #6b7280;
  --fw-text-light: #9ca3af;
  
  /* ─── Backgrounds ─── */
  --fw-bg: #ffffff;
  --fw-bg-subtle: #f9fafb;
  --fw-bg-muted: #f3f4f6;
  
  /* ─── Typography ─── */
  --fw-font-primary: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* ─── Font Sizes ─── */
  --fw-text-xs: 0.75rem;      /* 12px */
  --fw-text-sm: 0.875rem;     /* 14px */
  --fw-text-base: 1rem;       /* 16px */
  --fw-text-lg: 1.0625rem;    /* 17px */
  --fw-text-xl: 1.125rem;     /* 18px */
  --fw-text-2xl: 1.25rem;     /* 20px */
  
  /* ─── Heading Sizes ─── */
  --fw-h1-size: 2.75rem;      /* 44px */
  --fw-h2-size: 2.25rem;      /* 36px */
  --fw-h3-size: 1.75rem;      /* 28px */
  --fw-h4-size: 1.5rem;       /* 24px */
  --fw-h5-size: 1.25rem;      /* 20px */
  --fw-h6-size: 1.125rem;     /* 18px */
  
  /* ─── Line Heights ─── */
  --fw-leading-none: 1;
  --fw-leading-tight: 1.2;
  --fw-leading-snug: 1.35;
  --fw-leading-normal: 1.5;
  --fw-leading-relaxed: 1.65;
  
  /* ─── Letter Spacing ─── */
  --fw-tracking-tight: -0.02em;
  --fw-tracking-normal: 0;
  --fw-tracking-wide: 0.01em;
  
  /* ─── Layout Widths ─── */
  --fw-max-width: var(--layout-max-width);
  --fw-max-width-narrow: 900px;
  --fw-max-width-content: 800px;
  --fw-max-width-text: 680px;
  
  /* ─── Spacing ─── */
  --fw-space-xs: 0.5rem;      /* 8px */
  --fw-space-sm: 1rem;        /* 16px */
  --fw-space-md: 1.5rem;      /* 24px */
  --fw-space-lg: 2rem;        /* 32px */
  --fw-space-xl: 3rem;        /* 48px */
  --fw-space-2xl: 5rem;       /* 80px */
  
  /* ─── Border Radius ─── */
  --fw-radius-sm: 8px;
  --fw-radius-md: 12px;
  --fw-radius-lg: 16px;
  --fw-radius-xl: 24px;
  --fw-radius-full: 9999px;
}

/* ===== GLOBAL RESETS & BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--fw-font-body);
  font-size: var(--fw-text-base);
  line-height: var(--fw-leading-relaxed);
  color: var(--fw-text);
  background-color: var(--fw-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== UNIVERSAL TYPOGRAPHY (HTML ELEMENTS) ===== */

/* Headings - Manrope, bold */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fw-font-primary);
  font-weight: 700;
  line-height: var(--fw-leading-tight);
  color: var(--fw-text);
  letter-spacing: var(--fw-tracking-tight);
  margin-top: 0;
  margin-bottom: var(--fw-space-sm);
}

h1 {
  font-size: var(--fw-h1-size);
  margin-bottom: var(--fw-space-md);
}

h2 {
  font-size: var(--fw-h2-size);
  margin-bottom: var(--fw-space-md);
}

h3 {
  font-size: var(--fw-h3-size);
}

h4 {
  font-size: var(--fw-h4-size);
}

h5 {
  font-size: var(--fw-h5-size);
}

h6 {
  font-size: var(--fw-h6-size);
}

/* Paragraphs - Inter, muted color */
p {
  font-family: var(--fw-font-body);
  font-size: var(--fw-text-lg);
  line-height: var(--fw-leading-relaxed);
  color: var(--fw-text-muted);
  margin-top: 0;
  margin-bottom: var(--fw-space-sm);
}

/* Lead paragraph - larger intro text */
p.lead,
.lead p {
  font-size: var(--fw-text-lg);
}

/* Small text */
small,
.small {
  font-size: var(--fw-text-sm);
  line-height: var(--fw-leading-normal);
}

/* Links */
a {
  color: var(--fw-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--fw-primary-hover);
}

/* Lists */
ul, ol {
  margin-top: 0;
  margin-bottom: var(--fw-space-sm);
  padding-left: var(--fw-space-md);
  color: var(--fw-text-muted);
}

li {
  margin-bottom: 0.5em;
  line-height: var(--fw-leading-relaxed);
}

/* Blockquote */
blockquote {
  margin: var(--fw-space-md) 0;
  padding: var(--fw-space-sm) var(--fw-space-md);
  border-left: 4px solid var(--fw-primary);
  background: var(--fw-bg-subtle);
  font-style: italic;
  color: var(--fw-text-muted);
}

/* ===== LAYOUT CONTAINERS ===== */
.fw-container,
.container {
  width: 100%;
  max-width: var(--fw-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--fw-space-md);
  padding-right: var(--fw-space-md);
}

.fw-container-narrow {
  max-width: var(--fw-max-width-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--fw-space-md);
  padding-right: var(--fw-space-md);
}

.fw-container-content {
  max-width: var(--fw-max-width-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--fw-space-md);
  padding-right: var(--fw-space-md);
}

.fw-container-text {
  max-width: var(--fw-max-width-text);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--fw-space-md);
  padding-right: var(--fw-space-md);
}

/* ===== SECTION SPACING ===== */
.fw-section {
  padding-top: var(--fw-space-2xl);
  padding-bottom: var(--fw-space-2xl);
}

.fw-section-sm {
  padding-top: var(--fw-space-xl);
  padding-bottom: var(--fw-space-xl);
}

.fw-section-lg {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* ===== BUTTONS ===== */
.fw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--fw-radius-full);
  font-family: var(--fw-font-primary);
  font-size: var(--fw-text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.fw-btn-primary {
  background: var(--fw-primary);
  color: white;
}

.fw-btn-primary:hover {
  background: var(--fw-primary-hover);
  color: white;
}

.fw-btn-secondary {
  background: var(--fw-bg-muted);
  color: var(--fw-text);
}

.fw-btn-secondary:hover {
  background: #e5e7eb;
}

.fw-btn-outline {
  background: transparent;
  border: 2px solid var(--fw-primary);
  color: var(--fw-primary);
}

.fw-btn-outline:hover {
  background: var(--fw-primary);
  color: white;
}

/* ===== CARDS ===== */
.fw-card {
  background: white;
  border-radius: var(--fw-radius-lg);
  padding: var(--fw-space-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.fw-card-bordered {
  border: 1px solid #e5e7eb;
  box-shadow: none;
}

/* ===== UTILITY CLASSES ===== */

/* Text colors */
.fw-text-primary { color: var(--fw-primary) !important; }
.fw-text-muted { color: var(--fw-text-muted) !important; }
.fw-text-light { color: var(--fw-text-light) !important; }
.fw-text-dark { color: var(--fw-text) !important; }
.fw-text-white { color: #ffffff !important; }

/* Background colors */
.fw-bg-primary { background-color: var(--fw-primary) !important; }
.fw-bg-primary-light { background-color: var(--fw-primary-light) !important; }
.fw-bg-subtle { background-color: var(--fw-bg-subtle) !important; }
.fw-bg-muted { background-color: var(--fw-bg-muted) !important; }
.fw-bg-white { background-color: #ffffff !important; }

/* Text alignment */
.fw-text-center { text-align: center !important; }
.fw-text-left { text-align: left !important; }
.fw-text-right { text-align: right !important; }

/* Font weights */
.fw-font-normal { font-weight: 400 !important; }
.fw-font-medium { font-weight: 500 !important; }
.fw-font-semibold { font-weight: 600 !important; }
.fw-font-bold { font-weight: 700 !important; }

/* Spacing utilities */
.fw-mt-0 { margin-top: 0 !important; }
.fw-mb-0 { margin-bottom: 0 !important; }
.fw-mt-sm { margin-top: var(--fw-space-sm) !important; }
.fw-mb-sm { margin-bottom: var(--fw-space-sm) !important; }
.fw-mt-md { margin-top: var(--fw-space-md) !important; }
.fw-mb-md { margin-bottom: var(--fw-space-md) !important; }
.fw-mt-lg { margin-top: var(--fw-space-lg) !important; }
.fw-mb-lg { margin-bottom: var(--fw-space-lg) !important; }
.fw-mt-xl { margin-top: var(--fw-space-xl) !important; }
.fw-mb-xl { margin-bottom: var(--fw-space-xl) !important; }

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 768px) {
  :root {
    --fw-h1-size: 2rem;       /* 32px on mobile */
    --fw-h2-size: 1.75rem;    /* 28px on mobile */
    --fw-h3-size: 1.5rem;     /* 24px on mobile */
    --fw-h4-size: 1.25rem;    /* 20px on mobile */
    --fw-text-xl: 1rem;
    --fw-text-lg: 0.9375rem;
  }
  
  .fw-section {
    padding-top: var(--fw-space-xl);
    padding-bottom: var(--fw-space-xl);
  }
  
  .fw-section-lg {
    padding-top: var(--fw-space-2xl);
    padding-bottom: var(--fw-space-2xl);
  }
  
  .fw-container,
  .fw-container-narrow,
  .fw-container-content,
  .fw-container-text,
  .container {
    padding-left: var(--fw-space-sm);
    padding-right: var(--fw-space-sm);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }
  
  a { color: #000; text-decoration: underline; }
  
  .fw-btn, button { display: none; }
}

/* Newsletter form - dominant input, smaller button */
.newsletter-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.newsletter-form .newsletter-input {
  flex: 3;
  min-width: 0;
  padding: 12px 14px;
  font-size: 15px;
  border: 2px solid #e5e5e7;
  border-radius: 8px;
  height: auto;
}

.newsletter-form .newsletter-input:focus {
  border-color: var(--fw-color-primary, #000);
  outline: none;
}

.newsletter-form .newsletter-submit {
  flex: 1;
  max-width: 120px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  background: #2E73F7;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-form .newsletter-submit:hover {
  background: #1a5fd4;
}

/* Footer newsletter column - wider */
.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 2fr !important;
}



/* Footer contact links - blue and inline */
.footer-contact-item {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 4px 12px !important;
  align-items: center !important;
}

.footer-contact-item strong {
  width: 100% !important;
  margin-bottom: 4px;
}

.footer-contact-item a {
  color: #2563eb !important;
  text-decoration: none !important;
  display: inline !important;
}

.footer-contact-item a:hover {
  text-decoration: underline !important;
}
/* ===== IMAGE UTILITIES ===== */
/* Use these classes instead of hardcoding width/height in HTML */

/* Aspect ratios - prevents CLS by reserving space */
.fw-aspect-square { aspect-ratio: 1 / 1; }
.fw-aspect-video { aspect-ratio: 16 / 9; }
.fw-aspect-4-3 { aspect-ratio: 4 / 3; }
.fw-aspect-3-2 { aspect-ratio: 3 / 2; }
.fw-aspect-2-1 { aspect-ratio: 2 / 1; }

/* Object fit - controls how images fill their container */
.fw-object-cover { object-fit: cover; }
.fw-object-contain { object-fit: contain; }
.fw-object-fill { object-fit: fill; }
.fw-object-none { object-fit: none; }

/* Object position */
.fw-object-center { object-position: center; }
.fw-object-top { object-position: top; }
.fw-object-bottom { object-position: bottom; }

/* Responsive image - fills container width, maintains aspect */
.fw-img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

/* Image in grid/flex - fills cell with cover */
.fw-img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero/banner image container - use with child img.fw-img-fill */
.fw-img-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.fw-img-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card image - fixed aspect, rounded top */
.fw-img-card {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--fw-radius-md) var(--fw-radius-md) 0 0;
}

.fw-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Icon/logo sizing */
.fw-icon-sm { width: 16px; height: 16px; }
.fw-icon-md { width: 24px; height: 24px; }
.fw-icon-lg { width: 32px; height: 32px; }
.fw-icon-xl { width: 48px; height: 48px; }
/* ===== BENEFITS SECTION COMPONENTS ===== */
/* Used on: our-solution.php */

.benefits-section {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.benefits-container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8ebf2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(63, 102, 255, 0.12);
  border-color: var(--fw-primary);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--fw-primary) 0%, #5b7fff 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--fw-text);
}

.benefit-card p {
  color: var(--fw-text-muted);
  line-height: 1.55;
  font-size: 0.9375rem;
  margin: 0;
}

/* ===== KIT CONTENTS SECTION ===== */

.kit-section {
  background: transparent;
  padding: 3rem 2rem;
}

.kit-container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.kit-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--fw-text);
}

.kit-section .kit-subtitle {
  font-size: 1.0625rem;
  color: var(--fw-text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.kit-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #f8f9ff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.kit-item:hover {
  background: #eef2ff;
  transform: translateY(-2px);
}

.kit-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}

.kit-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fw-text);
}

.kit-item p {
  color: var(--fw-text-muted);
  line-height: 1.5;
  font-size: 0.875rem;
  margin: 0;
}

/* ===== CTA SECTION ===== */

.cta-section {
  padding: 4rem 2rem;
  text-align: center;
}

/* ===== RESPONSIVE: BENEFITS & KIT ===== */

@media (max-width: 1024px) {
  .benefits-grid,
  .kit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .benefits-section,
  .kit-section {
    padding: 2.5rem 1.5rem;
  }

  .benefits-grid,
  .kit-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.75rem 1.25rem;
  }
}
/* ===== PAGE HERO COMPONENT ===== */
/* Used on: about, faq, our-solution, blog posts */

.page-hero {
  background: transparent;
  padding: 6rem 2rem 4rem;
  color: var(--fw-text, #202223);
  text-align: center;
  max-width: var(--fw-max-width-narrow);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--fw-text-muted, #6d7175);
  max-width: 750px;
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 1;
}

/* Decorative floating blobs - DISABLED, controlled by home.php inline styles
.blue-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
*/

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(10px, -15px) scale(1.02);
  }
  50% {
    transform: translate(-5px, 10px) scale(0.98);
  }
  75% {
    transform: translate(-15px, -5px) scale(1.01);
  }
}

/* Legacy alias for existing pages */
.solution-hero {
  background: transparent;
  padding: 6rem 2rem 4rem;
  color: var(--fw-text, #202223);
  text-align: center;
  max-width: var(--fw-max-width-narrow);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.solution-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.solution-hero p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--fw-text-muted, #6d7175);
  max-width: 750px;
  margin: 0 auto;
}

/* ===== RESPONSIVE: PAGE HERO ===== */

@media (max-width: 768px) {
  .page-hero,
  .solution-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .page-hero h1,
  .solution-hero h1 {
    font-size: 2rem;
  }

  .page-hero p,
  .solution-hero p {
    font-size: 1rem;
  }

  .blue-blob {
    opacity: 0.4;
  }
}
/* ===== OUR SOLUTION PAGE COMPONENTS ===== */
/* Extends info-pages.css hero; adds benefit zigzag layout */

/* Benefits Section - Zigzag Layout */
.benefits-section {
  padding: 5rem 2rem;
  max-width: var(--fw-max-width-narrow);
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.benefits-grid {
  position: relative;
  z-index: 1;
}

.benefits-left {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: var(--fw-max-width-narrow);
  margin: 0 auto;
}

.benefit-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefit-item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.benefit-item:nth-child(even) .benefit-image {
  order: 2;
}

.benefit-item:nth-child(even) .benefit-content {
  order: 1;
}

.benefit-image {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--fw-bg-subtle, #f9fafb);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-content {
  flex: 1;
  padding: 0;
}

.benefit-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--fw-text, #202223);
  font-family: var(--fw-font-primary, 'Manrope', sans-serif);
}

.benefit-content p {
  color: var(--fw-text-muted, #6b7280);
  line-height: 1.65;
  font-size: 1.0625rem;
  margin: 0;
}

/* Kit Contents Section */
.kit-section {
  background: var(--fw-bg-subtle, #f9fafb);
  padding: 6rem 2rem;
  position: relative;
}

.kit-container {
  max-width: var(--fw-max-width-narrow);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.kit-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--fw-text, #202223);
  font-family: var(--fw-font-primary, 'Manrope', sans-serif);
}

.kit-section .kit-subtitle {
  font-size: 1.0625rem;
  color: var(--fw-text-muted, #6b7280);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.kit-item {
  text-align: left;
  padding: 1.75rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.kit-icon {
  width: 48px;
  height: 48px;
  background: var(--fw-primary-light, #e8ecff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--fw-primary, #2E73F7);
}

.kit-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fw-text, #202223);
  font-family: var(--fw-font-primary, 'Manrope', sans-serif);
}

.kit-item p {
  color: var(--fw-text-muted, #6b7280);
  line-height: 1.6;
  font-size: 0.9375rem;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  text-align: center;
  max-width: var(--fw-max-width-content);
  margin: 0 auto;
  position: relative;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--fw-text, #202223);
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--fw-text-muted, #6d7175);
  margin-bottom: 2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  background: var(--fw-primary, #3f66ff);
  color: white;
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: var(--fw-primary-hover, #2d4fd4);
  color: white;
}

/* ===== RESPONSIVE: OUR SOLUTION ===== */

@media (max-width: 1024px) {
  .kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 3rem 1.5rem;
  }

  .benefits-left {
    gap: 3rem;
  }

  .benefit-item,
  .benefit-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-item:nth-child(even) .benefit-image {
    order: 0;
  }

  .benefit-item:nth-child(even) .benefit-content {
    order: 0;
  }

  .benefit-image {
    height: 250px;
  }

  .benefit-content h3 {
    font-size: 1.5rem;
  }

  .kit-section {
    padding: 4rem 1.5rem;
  }

  .kit-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 4rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

/* ===== GLOBAL DECORATIVE BLOBS ===== */
.global-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.global-blobs .blob {
    position: absolute;
    border-radius: 50% 40% 60% 50%;
    opacity: 0.2;
    pointer-events: none;
}
.global-blobs .blob-a {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    top: 5%; right: -50px;
    animation: blobFloat 20s ease-in-out infinite;
}
.global-blobs .blob-b {
    width: 350px; height: 350px;
    background: linear-gradient(225deg, #7dd3fc 0%, #bfdbfe 100%);
    top: 55%; left: -80px;
    animation: blobFloat 15s ease-in-out infinite reverse;
}
.global-blobs .blob-c {
    width: 300px; height: 300px;
    background: linear-gradient(315deg, #93c5fd 0%, #dbeafe 100%);
    top: 85%; right: 20%;
    animation: blobFloat 25s ease-in-out infinite;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}
body.checkout-page .global-blobs { display: none; }
