/* ============================================
   FEWINC — Simplifying Complexity™
   Master Stylesheet
   Brand: Deep Navy · Gold · White
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy:        #0f1a2e;
  --navy-light:  #1a2a45;
  --navy-dark:   #0a1220;
  --gold:        #d4a853;
  --gold-light:  #e8c97a;
  --gold-dark:   #b8912e;
  --white:       #f0f2f5;
  --white-pure:  #ffffff;
  --gray-100:    #f7f8fa;
  --gray-200:    #e8eaef;
  --gray-300:    #d1d5dc;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --text-dark:   #1a1a2e;
  --text-body:   #3a3a4a;
  --shadow-sm:   0 1px 3px rgba(15,26,46,0.08);
  --shadow-md:   0 4px 12px rgba(15,26,46,0.10);
  --shadow-lg:   0 8px 30px rgba(15,26,46,0.12);
  --shadow-xl:   0 16px 48px rgba(15,26,46,0.15);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Constantia', 'Palatino Linotype', 'Georgia', serif;
  --font-body:    'Calibri', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --max-width:   1200px;
  --header-h:    80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white-pure);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

/* --- Layout --- */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.section { padding: 6rem 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--gold); }
.section--navy p { color: var(--gray-200); }
.section--light { background: var(--gray-100); }
.section--gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy); }

.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.flex { display: flex; gap: 2rem; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* --- Section Headers --- */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-header .label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; color: var(--gray-500); }
.section--navy .section-header p { color: var(--gray-300); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,83,0.35);
  color: var(--navy);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: all var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(15, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  height: 68px;
}
.header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  display: block;
  margin-top: -2px;
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(212,168,83,0.1);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta {
  margin-left: 1rem;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Hero Sections --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(15,26,46,0.4), transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-content .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 50px;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 1.2rem;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Page Hero (non-home) */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.05) 0%, transparent 70%);
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: var(--gray-300); font-size: 1.15rem; max-width: 600px; }
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--gold); }

/* --- Geometric Pattern Overlay --- */
.geo-pattern {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  opacity: 0.04;
  pointer-events: none;
}
.geo-pattern svg { width: 100%; height: 100%; }

/* --- Cards --- */
.card {
  background: var(--white-pure);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,168,83,0.3);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212,168,83,0.1), rgba(212,168,83,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--gold);
}
.card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.card p { color: var(--gray-500); font-size: 0.95rem; }

.card--dark {
  background: var(--navy-light);
  border-color: rgba(255,255,255,0.06);
}
.card--dark:hover { border-color: rgba(212,168,83,0.3); }
.card--dark h3 { color: var(--gold); }
.card--dark p { color: var(--gray-300); }

.card--featured {
  border: 2px solid var(--gold);
  position: relative;
}
.card--featured::before {
  content: 'Signature';
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* --- Process / Timeline --- */
.process-steps { counter-reset: step; }
.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.step-number {
  counter-increment: step;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.step-content h3 { margin-bottom: 0.5rem; }
.step-content p { color: var(--gray-500); }

/* --- Testimonial --- */
.testimonial {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}
.testimonial-name { font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 0.85rem; color: var(--gray-500); }

/* --- Blog Cards --- */
.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white-pure);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img .category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.blog-card-img-icon {
  font-size: 3rem;
  opacity: 0.15;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card-body h3 a { color: var(--navy); }
.blog-card-body h3 a:hover { color: var(--gold-dark); }
.blog-card-body p { font-size: 0.9rem; color: var(--gray-500); }
.blog-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.read-more:hover { gap: 0.6rem; }

/* --- Contact Form --- */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white-pure);
  color: var(--text-body);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  text-align: left;
}
.comparison-table thead th:last-child { color: var(--gold); }
.comparison-table tbody td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem;
}
.comparison-table tbody tr:nth-child(even) { background: var(--gray-100); }
.comparison-table tbody tr:hover { background: rgba(212,168,83,0.04); }
.check { color: var(--gold); font-weight: 700; font-size: 1.2rem; }
.cross { color: var(--gray-400); }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 60%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p { color: var(--gray-300); margin-bottom: 2rem; position: relative; z-index: 1; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
  color: var(--gray-400);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.7; }
.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}
.footer-links a {
  display: block;
  color: var(--gray-400);
  padding: 0.3rem 0;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--gold); transform: translateX(3px); }
.footer-newsletter p { font-size: 0.9rem; margin-bottom: 1rem; }
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.newsletter-form input::placeholder { color: var(--gray-500); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
}
.footer-legal a { margin-left: 1.5rem; color: var(--gray-500); }
.footer-legal a:hover { color: var(--gold); }

/* --- Accordion --- */
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white-pure);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}
.accordion-header:hover { background: var(--gray-100); }
.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.accordion-item.active .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,83,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(212,168,83,0); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .page-hero { padding: 8rem 0 3rem; }

  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    transition: right var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 0.75rem 1rem; font-size: 1rem; }
  .nav-cta { margin-left: 0; margin-top: 1rem; }

  .hero { min-height: 85vh; }
  .hero-content { max-width: 100%; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .process-step { flex-direction: column; gap: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .cta-banner { padding: 3rem 1.5rem; border-radius: var(--radius-lg); }

  .comparison-table { font-size: 0.85rem; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 0.75rem 1rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 80vh; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .stats-bar { grid-template-columns: 1fr; }
}
