/* SWIQ Design System — Amplifycare-inspired, blue accent */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0A325E;
  --blue: #224CAE;
  --blue-light: #3B82F6;
  --blue-dark: #0F4C8A;
  --teal: #20C997;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1400px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 48px; }
.nav-logo span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-600); font-family: 'Inter', sans-serif; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white !important;
  padding: 10px 24px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-mobile { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); }
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 999; opacity: 0; transition: opacity 0.3s ease;
}
.mobile-overlay.active { display: block; opacity: 1; }
.mobile-menu {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: white; z-index: 1001; padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 24px; color: var(--gray-500); padding: 8px;
}
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 16px; font-weight: 500;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .mobile-cta {
  display: block; margin-top: 24px; text-align: center;
  background: var(--blue); color: white !important;
  padding: 14px 24px; border-radius: 8px;
  font-weight: 600; border-bottom: none;
}
.mobile-menu .mobile-cta:hover { background: var(--blue-dark); }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 30%, #E0E7FF 60%, #F0F4FF 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,0.08) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(32,201,151,0.06) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text { position: relative; z-index: 1; }
.hero h1 { font-size: 48px; margin-bottom: 20px; color: var(--navy); line-height: 1.15; }
.hero p { font-size: 17px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.7; max-width: 500px; }
.hero-search {
  display: flex; align-items: center; gap: 12px;
  background: white; border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 8px 8px 8px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 28px; max-width: 480px;
}
.hero-search i { color: var(--gray-400); font-size: 16px; }
.hero-search input {
  flex: 1; border: none; outline: none; font-size: 15px;
  font-family: 'Inter', sans-serif; color: var(--gray-700);
  background: transparent;
}
.hero-search input::placeholder { color: var(--gray-400); }
.hero-search-btn {
  background: var(--navy); color: white; border: none;
  padding: 12px 24px; border-radius: 8px; font-weight: 600;
  font-size: 14px; cursor: pointer; font-family: 'Inter', sans-serif;
}
.hero-search-btn:hover { background: var(--blue); }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.hero-avatars { display: flex; }
.hero-avatars img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid white; object-fit: cover;
  margin-left: -10px;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-trust-text { display: flex; flex-direction: column; }
.trust-stars { color: #F59E0B; font-size: 14px; letter-spacing: 1px; }
.hero-trust-text span { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.hero-app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--blue); color: white;
  padding: 12px 24px; border-radius: 10px;
  transition: var(--transition);
}
.app-badge:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,50,94,0.3); }
.app-badge i { font-size: 28px; }
.app-badge-text span { font-size: 11px; display: block; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }
.app-badge-text strong { font-size: 16px; font-weight: 600; display: block; }

/* Hero Visual */
.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-photo-frame {
  position: relative; width: 100%; max-width: 480px;
}
.hero-main-photo {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(10,50,94,0.15);
}
.hero-float {
  position: absolute; background: white;
  border-radius: 12px; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
}
.hero-float img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.hero-float strong { display: block; font-size: 13px; color: var(--navy); font-weight: 600; }
.hero-float span { font-size: 11px; color: var(--gray-400); }
.hero-float-1 { top: 40px; left: -40px; animation-delay: 0s; }
.hero-float-2 { bottom: 100px; right: -30px; animation-delay: 1s; }
.hero-float-3 { bottom: 30px; left: 20px; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Stats Bar */
.stats-bar {
  background: var(--blue); padding: 40px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-item strong {
  font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800;
  color: white; display: block;
}
.stat-item span { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ===== SECTION DEFAULTS ===== */
.section { padding: 100px 0; }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--navy); color: white; }
.section-dark h2 { color: white; }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: var(--blue); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 { font-size: 40px; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--gray-500); line-height: 1.7; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(26,86,219,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 24px; color: var(--blue);
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy); }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 80px; right: 80px;
  height: 2px; background: var(--gray-200);
}
.step-item { text-align: center; position: relative; }
.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 4px 14px rgba(26,86,219,0.3);
}
.step-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--navy); }
.step-item p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ===== BUSINESS TYPES ===== */
.business-tabs {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap;
}
.business-tab {
  padding: 10px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  background: white; border: 1px solid var(--gray-200);
  cursor: pointer; transition: var(--transition);
}
.business-tab:hover, .business-tab.active {
  background: var(--blue); color: white; border-color: var(--blue);
}
.business-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.business-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.business-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.business-card img {
  width: 100%; height: 220px; object-fit: cover;
}
.business-card-body { padding: 24px; }
.business-card-body .tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--blue); background: rgba(26,86,219,0.08);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 12px;
}
.business-card-body h3 { font-size: 18px; margin-bottom: 8px; color: var(--navy); }
.business-card-body p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.business-card-body a { font-size: 14px; font-weight: 600; color: var(--blue); }
.business-card-body a:hover { color: var(--blue-dark); }

/* ===== FULL WIDTH IMAGE ===== */
.full-image-section {
  position: relative; height: 500px; overflow: hidden;
}
.full-image-section img {
  width: 100%; height: 100%; object-fit: cover;
}
.full-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,50,94,0.85) 0%, rgba(26,86,219,0.7) 100%);
  display: flex; align-items: center;
}
.full-image-content {
  max-width: 600px; padding: 60px 80px;
}
.full-image-content h2 { font-size: 40px; color: white; margin-bottom: 16px; }
.full-image-content p { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7; }

/* ===== IMPACT NUMBERS ===== */
.impact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; text-align: center;
}
.impact-item strong {
  font-family: 'Poppins', sans-serif; font-size: 48px; font-weight: 800;
  color: var(--blue); display: block; margin-bottom: 8px;
}
.impact-item p { font-size: 16px; color: var(--gray-500); font-weight: 500; }

/* ===== PRICING ===== */
.pricing-toggle {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 48px;
}
.pricing-btn {
  padding: 10px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 500; font-family: 'Inter', sans-serif;
  background: white; border: 1px solid var(--gray-200);
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.pricing-btn:hover, .pricing-btn.active {
  background: var(--blue); color: white; border-color: var(--blue);
}
.save-badge {
  background: rgba(255,255,255,0.2); color: white;
  padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600;
}
.pricing-btn.active .save-badge { background: rgba(255,255,255,0.2); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.pricing-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-200);
  position: relative; transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--blue); box-shadow: var(--shadow-lg);
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white;
  padding: 4px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.pricing-header h3 { font-size: 20px; margin-bottom: 8px; color: var(--navy); }
.pricing-header p { font-size: 13px; color: var(--gray-500); line-height: 1.5; margin-bottom: 20px; }
.pricing-price { margin-bottom: 24px; }
.pricing-price .amount {
  font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; color: var(--navy);
}
.pricing-price .period { font-size: 14px; color: var(--gray-400); font-weight: 500; }
.pricing-price .original {
  font-size: 16px; color: var(--gray-400); text-decoration: line-through; margin-right: 8px; font-weight: 400;
}
.pricing-cta {
  display: block; width: 100%; text-align: center;
  padding: 12px 24px; border-radius: 8px;
  font-weight: 600; font-size: 14px; font-family: 'Inter', sans-serif;
  background: var(--blue); color: white; margin-bottom: 24px;
}
.pricing-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }
.pricing-card.popular .pricing-cta { background: var(--blue); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--gray-600);
}
.pricing-features li i { color: var(--blue); font-size: 12px; }
.pricing-note { text-align: center; font-size: 13px; color: var(--gray-400); margin-top: 40px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #F59E0B; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testimonial-info strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-info span { font-size: 13px; color: var(--gray-400); }

/* ===== BLOG PREVIEW ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-body .category {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--blue); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 17px; margin-bottom: 8px; color: var(--navy); line-height: 1.4; }
.blog-card-body p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.blog-card-body a { font-size: 13px; font-weight: 600; color: var(--blue); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  padding: 100px 0; text-align: center;
}
.cta-section h2 { font-size: 44px; color: white; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-primary { background: white; color: var(--blue); box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
.cta-buttons .btn-primary:hover { background: var(--gray-100); }
.cta-buttons .btn-secondary { border-color: rgba(255,255,255,0.3); color: white !important; }
.cta-buttons .btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 20px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900); color: var(--gray-400); padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 14px; font-weight: 600; color: white; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 14px; color: var(--gray-400); margin-bottom: 10px; }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid var(--gray-700); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--gray-800); display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 16px;
}
.footer-social a:hover { background: var(--blue); color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-main-photo { height: 360px; }
  .hero h1 { font-size: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .business-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile { display: block; }
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero-main-photo { height: 280px; }
  .hero-float { padding: 8px 12px; }
  .hero-float img { width: 28px; height: 28px; }
  .hero-float strong { font-size: 12px; }
  .hero-float span { font-size: 10px; }
  .hero-float-1 { top: 20px; left: -10px; }
  .hero-float-2 { bottom: 60px; right: -10px; }
  .hero-float-3 { bottom: 10px; left: 10px; }
  .hero-app-buttons { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .business-cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 30px; }
  .full-image-content { padding: 40px 24px; }
  .full-image-content h2 { font-size: 28px; }
  .cta-section h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
