/* 
========================================================================
   LUNIQ HEALTHCARE - 5X PREMIUM REDESIGNED STYLESHEET
   Aesthetics: Luxury Midnight Blue, Glowing Mint-Emerald, Champagne Gold
   Typography: Outfit (Display) & Plus Jakarta Sans (Body)
========================================================================
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Root Variables (Design Tokens) --- */
:root {
  /* Premium HSL Color Palette */
  --primary: hsl(220, 52%, 11%);         /* Deep Royal Midnight Blue */
  --primary-light: hsl(220, 30%, 18%);   /* Muted Indigo Text */
  --primary-glow: hsla(220, 52%, 11%, 0.08);
  
  --secondary: hsl(158, 82%, 34%);       /* Glowing Mint-Emerald Care */
  --secondary-hover: hsl(158, 92%, 26%);
  --secondary-light: hsl(158, 70%, 95%);
  --secondary-glow: hsla(158, 82%, 34%, 0.15);

  --accent-gold: hsl(38, 75%, 52%);      /* Luxury Champagne Gold */
  --accent-gold-light: hsl(38, 75%, 96%);
  --accent-gold-glow: hsla(38, 75%, 52%, 0.15);

  --accent-aqua: hsl(188, 85%, 42%);      /* Modern Health Aqua */
  --accent-aqua-light: hsl(188, 85%, 96%);

  /* Premium Neutrals */
  --bg-white: #ffffff;
  --bg-canvas: hsl(220, 24%, 97%);       /* Soft elegant warm-gray canvas */
  --bg-subtle: hsl(220, 20%, 98.5%);     /* Glass alternate backgrounds */
  
  --text-dark: hsl(220, 40%, 14%);       /* Sophisticated navy text */
  --text-muted: hsl(218, 16%, 42%);      /* Readable slate gray body text */
  --text-light: #ffffff;
  
  --border-light: rgba(9, 28, 48, 0.06);
  --border-glass: rgba(255, 255, 255, 0.65);
  --border-premium: rgba(158, 82, 34, 0.15);

  /* Sophisticated Soft Shadows */
  --shadow-sm: 0 4px 12px rgba(9, 28, 48, 0.02);
  --shadow-md: 0 12px 30px rgba(9, 28, 48, 0.04);
  --shadow-lg: 0 24px 60px rgba(9, 28, 48, 0.08);
  --shadow-gold: 0 10px 25px rgba(212, 140, 26, 0.15);
  --shadow-emerald: 0 10px 25px rgba(12, 147, 88, 0.18);
  --shadow-inset: inset 0 2px 4px rgba(9, 28, 48, 0.02);

  /* Precise Corner Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 9999px;

  /* Premium Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout dimensions */
  --container-width: 1200px;
  --header-height: 72px;

  /* Perfectly Balanced Curves */
  --transition-fast: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-canvas);
  /* Premium medical cross background pattern (Base64) mixed with glowing ambient HSL mesh gradients */
  background-image: 
    radial-gradient(at 10% 20%, rgba(12, 147, 88, 0.035) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(56, 189, 248, 0.03) 0px, transparent 50%),
    url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMzcgMTVoNnYyMmgyMnY2SDQzdjIyaC02VjQzSDE1di02aDIyVjE1eiIgZmlsbD0iIzBjOTM1OCIgZmlsbC1vcGFjaXR5PSIwLjA1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=");
  background-attachment: fixed;
  line-height: 1.65;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

/* --- Box-in-Box Premium Layout --- */
.boxed-wrapper {
  width: 100%;
  max-width: 1320px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border: 1px solid hsl(220, 15%, 90%);
  position: relative;
  margin: 15px auto 2.5rem auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* --- Luxury Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.01em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  position: relative;
  margin-bottom: 3.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent-aqua) 100%);
  border-radius: var(--radius-pill);
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* --- Spacing & Containers --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.container-fluid {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

section {
  padding: 4rem 0;
  position: relative;
  background-color: var(--bg-white);
  border-bottom: 1px solid hsl(220, 16%, 95%);
}

section:last-of-type {
  border-bottom: none;
}

section .container {
  background-color: transparent !important;
  border-radius: 0 !important;
  padding: 0 2.5rem !important;
  box-shadow: none !important;
  border: none !important;
  transition: none !important;
}

section .container:hover {
  box-shadow: none !important;
  border-color: transparent !important;
}

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

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

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
  color: var(--text-light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-emerald);
}

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

.btn-outline:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary);
  border: 1px solid var(--border-light);
}

.btn-white:hover {
  background-color: var(--bg-subtle);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 1.15rem 2.75rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.btn-pulse {
  position: relative;
  overflow: hidden;
}

.btn-pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.btn-pulse:hover::after {
  transform: translate(-50%, -50%) scale(2);
  opacity: 1;
  transition: 0s;
}

/* --- Header & Top Navigation --- */
header {
  width: 100%;
  background: var(--bg-white);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid hsl(220, 16%, 95%);
}

header.sticky {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1320px;
  animation: slideDownHeader 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 110;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes slideDownHeader {
  from { transform: translate(-50%, -100%); }
  to { transform: translate(-50%, 0); }
}

.header-top {
  border-bottom: 1px solid hsl(220, 16%, 95%);
  padding: 0.4rem 2.5rem;
  font-size: 0.8rem;
  background-color: hsl(220, 20%, 98.5%);
}

.header-top .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.top-info-item svg {
  color: var(--secondary);
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.badge-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--primary-light);
}

.badge-feature svg {
  color: var(--secondary);
}

.header-main {
  height: var(--header-height);
  background-color: transparent;
  padding: 0 2.5rem;
}

.header-main .container-fluid {
  height: 100%;
  padding: 0;
}

.header-main-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.05em;
}

.logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 4px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.call-nav-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--primary-glow);
  color: var(--primary);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(9, 28, 48, 0.04);
  transition: var(--transition-normal);
}

.call-nav-pill:hover {
  background-color: var(--secondary-glow);
  color: var(--secondary);
  border-color: rgba(12, 147, 88, 0.15);
}

/* --- Hero Section Redesign --- */
.hero {
  padding: 3rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(220, 24%, 97%) 0%, #ffffff 60%, hsl(158, 40%, 96%) 100%);
  position: relative;
}

/* Soft Premium Ambient Blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(12, 147, 88, 0.06) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.04) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.hero-tag {
  color: var(--secondary);
  background-color: var(--secondary-glow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(12, 147, 88, 0.1);
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-aqua) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 580px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  font-family: var(--font-display);
}

.hero-feat-icon {
  width: 44px;
  height: 44px;
  background-color: var(--secondary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  box-shadow: inset 0 2px 5px rgba(12, 147, 88, 0.05);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: nowrap; /* Forces exactly one line globally across all viewports */
}

.hero-btns .btn-large {
  padding: 0.85rem 1.85rem; /* Sleek, minimal button padding */
  font-size: 0.95rem;       /* Highly premium, refined copy size */
}

.hero-btns .btn-white {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(12, 147, 88, 0.2);
  color: var(--primary);
  box-shadow: none;
}

.hero-btns .btn-white:hover {
  background: var(--bg-white);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
  transition: transform var(--transition-slow);
}

.hero-img-card:hover {
  transform: translateY(-5px) scale(1.01);
}

.hero-img-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

/* Floating Trust Badge overlay on Hero image */
.trust-badge-float {
  position: absolute;
  bottom: 40px;
  right: -25px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glass);
  max-width: 220px;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.trust-badge-float p {
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-display);
}

.trust-badge-float .stars {
  color: var(--accent-gold);
  margin-top: 0.35rem;
  display: flex;
  gap: 3px;
}

/* --- Hero Stats / USP Section --- */
#hero-stats {
  padding: 1.5rem 0;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.stats-ribbon {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 147, 88, 0.15);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.75rem 2rem;
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.5rem 1.5rem;
  transition: all var(--transition-normal);
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(12, 147, 88, 0.15);
}

.stat-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--secondary-glow);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(12, 147, 88, 0.08);
  transition: all var(--transition-normal);
}

.stat-item:hover .stat-icon-wrapper {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-aqua) 100%);
  color: var(--bg-white);
  transform: scale(1.08);
  box-shadow: var(--shadow-emerald);
  border-color: transparent;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 30%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* --- Support & Emergency Hub Banner --- */
.support-banner-section {
  background-color: transparent;
  padding: 0 2.5rem;
  margin-top: -2rem;
  z-index: 10;
}

.support-banner {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(220, 52%, 18%) 100%);
  color: var(--text-light);
  padding: 2.75rem 3.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.banner-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.banner-title {
  color: var(--text-light);
  font-size: 1.85rem;
  font-weight: 800;
}

.banner-services {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  transition: var(--transition-fast);
}

.banner-service-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.banner-service-item svg {
  color: var(--accent-aqua);
}

.banner-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.banner-call-btn {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
  color: var(--text-light);
  font-weight: 700;
  box-shadow: var(--shadow-emerald);
}

.banner-subinfo {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.35rem;
  display: block;
}

/* --- Luniq Differentiator Section --- */
#differentiator {
  background: var(--bg-canvas);
  padding: 5.5rem 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.diff-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(12, 147, 88, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-normal);
}

.premium-diff-card {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(220, 52%, 18%) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  color: var(--text-light);
}

.diff-card-header {
  margin-bottom: 2.5rem;
}

.diff-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-aqua) 100%);
  color: var(--bg-white);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}

.premium-diff-card h3 {
  color: var(--bg-white) !important;
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.premium-diff-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
}

.grey-badge {
  background: rgba(100, 116, 139, 0.1) !important;
  color: var(--text-muted) !important;
}

.standard-diff-card h3 {
  color: var(--primary) !important;
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.standard-diff-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.diff-icon-success {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(11, 243, 229, 0.15);
  color: var(--accent-aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.diff-icon-danger {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.diff-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.premium-diff-card .diff-text strong {
  color: var(--bg-white);
  font-size: 1.05rem;
  font-weight: 700;
}

.premium-diff-card .diff-text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.5;
}

.standard-diff-card .diff-text strong {
  color: var(--primary-light);
  font-size: 1.05rem;
  font-weight: 700;
}

.standard-diff-card .diff-text span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Hover micro-interactions */
.diff-card:hover {
  transform: translateY(-5px);
}
.premium-diff-card:hover {
  box-shadow: 0 20px 40px rgba(11, 243, 229, 0.08);
}
.standard-diff-card:hover {
  box-shadow: var(--shadow-md);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 147, 88, 0.25);
  background-color: var(--bg-white);
}

.service-card-img {
  position: relative;
  height: 125px; /* Compacted height from 150px */
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(9, 28, 48, 0.82);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.service-card:hover .service-card-badge {
  background: var(--secondary);
  color: var(--bg-white);
  border-color: transparent;
  box-shadow: var(--shadow-emerald);
}

.service-card-content {
  padding: 1.15rem; /* Reduced padding from 1.5rem */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.1rem; /* Compact font size from 1.25rem */
  margin-bottom: 0.45rem;
  font-weight: 800;
  color: var(--primary);
}

.service-card-desc {
  font-size: 0.84rem; /* Compacted font size from 0.88rem */
  margin-bottom: 0.85rem; /* Reduced margin from 1.5rem */
  flex-grow: 1;
  color: var(--text-muted);
  line-height: 1.55;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.service-location-meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-link svg {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--secondary-hover);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* --- Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.why-card {
  background-color: var(--bg-white);
  padding: 1.75rem 1.5rem; /* Reduced padding from 3rem 2.25rem */
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(9, 28, 48, 0.05);
  transition: all var(--transition-normal);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 147, 88, 0.15);
  background-color: var(--bg-subtle);
}

.why-icon {
  width: 52px; /* Reduced from 68px */
  height: 52px; /* Reduced from 68px */
  background: linear-gradient(135deg, var(--secondary-light) 0%, rgba(56, 189, 248, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin: 0 auto 1rem auto; /* Reduced margin from 1.75rem */
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-card:hover .why-icon {
  transform: scale(1.08) rotate(5deg);
}

.why-title {
  font-size: 1.1rem; /* Compact title from 1.25rem */
  margin-bottom: 0.5rem; /* Reduced margin from 0.85rem */
  font-weight: 800;
  color: var(--primary);
}

.why-desc {
  font-size: 0.86rem; /* Compacted text from 0.95rem */
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- Testimonials Carousel Section --- */
#testimonials {
  padding: 4rem 0;
  background-color: transparent;
  position: relative;
}

.testimonials-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0.25rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.33, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - (3 * 1.5rem)) / 4); /* Default 4 cards visible at a time */
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 147, 88, 0.12);
  padding: 1.5rem 1.25rem; /* Compacted from 2.25rem 2rem */
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  min-height: 300px; /* Reduced height constraint from 420px */
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px; /* Adjusted from 15px */
  right: 15px; /* Adjusted from 25px */
  font-family: var(--font-display);
  font-size: 3.5rem; /* Scaled down from 5rem */
  line-height: 1;
  color: rgba(12, 147, 88, 0.05);
  font-weight: 900;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.testimonial-text {
  font-size: 0.82rem; /* Reduced font size from 0.88rem */
  line-height: 1.55; /* Reduced line-height from 1.65 */
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* Reduced from 0.85rem */
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem; /* Reduced from 1.25rem */
}

.author-avatar {
  width: 34px; /* Reduced from 44px */
  height: 34px; /* Reduced from 44px */
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.95rem; /* Reduced from 1.1rem */
  box-shadow: var(--shadow-sm);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.05em;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(12, 147, 88, 0.2);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.carousel-dots .dot.active {
  width: 24px;
  border-radius: 8px;
  background: var(--secondary);
}

/* --- Partners Section --- */
#partners {
  padding: 3rem 0;
  background-color: transparent;
  position: relative;
}

.partners-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.partner-logo-box {
  flex: 1 1 180px;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 147, 88, 0.08);
  padding: 0.85rem 1.25rem;
}

.partner-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partner-logo-box {
    flex: 1 1 140px;
    height: 70px;
    padding: 0.65rem 1rem;
  }
}

/* --- How it Works Section --- */
.steps-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 24px;
  width: 2px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, var(--secondary) 0%, var(--accent-aqua) 100%);
  opacity: 0.25;
}

.step-item {
  display: flex;
  gap: 1.75rem;
  position: relative;
}

.step-number {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--secondary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.step-item:hover .step-number {
  background: var(--secondary);
  color: var(--bg-white);
  box-shadow: var(--shadow-emerald);
  transform: scale(1.08);
}

.step-content {
  padding-top: 0.25rem;
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.steps-promo-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 3.5rem 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glass);
  text-align: center;
}

.steps-promo-title {
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.steps-promo-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.steps-promo-phone {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.steps-promo-eta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  background-color: var(--secondary-glow);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

/* --- Worry & Reassurance Section --- */
.worry-section {
  background: linear-gradient(135deg, #ffffff 0%, hsl(220, 24%, 98%) 100%);
}

.worry-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.worry-image-container {
  position: relative;
}

.worry-image-container img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg-white);
  transition: transform var(--transition-slow);
}

.worry-image-container:hover img {
  transform: scale(1.02);
}

.worry-content {
  display: flex;
  flex-direction: column;
}

.worry-header-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.worry-header-title::after {
  left: 0;
  transform: none;
}

.worry-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.worry-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.checklist-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--secondary-glow);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.checklist-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-light);
}

/* --- Serve Across Bangalore Section --- */
.locations-section {
  background: linear-gradient(135deg, hsl(220, 24%, 97%) 0%, #ffffff 100%);
  text-align: center;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
  max-width: 900px;
  margin: 0 auto 3.5rem auto;
}

.location-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-white);
  color: var(--primary-light);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(9, 28, 48, 0.04);
  transition: all var(--transition-fast);
  font-family: var(--font-display);
}

.location-tag:hover {
  background-color: var(--secondary-glow);
  color: var(--secondary);
  border-color: rgba(12, 147, 88, 0.15);
  transform: translateY(-2px);
}

.location-tag svg {
  color: var(--secondary);
}

/* --- Before / After Section --- */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
}

.ba-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.ba-divider-seal {
  width: 76px;
  height: 76px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--secondary-light);
  animation: float-seal 6s ease-in-out infinite;
}

@keyframes float-seal {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.ba-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

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

.ba-header-img {
  height: 160px; /* Compacted height from 250px */
  overflow: hidden;
}

.ba-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-card-content {
  padding: 1.35rem; /* Reduced padding from 2.5rem */
}

.ba-card-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.2rem; /* Compact title from 1.5rem */
  font-weight: 800;
  margin-bottom: 0.85rem; /* Reduced margin from 1.5rem */
}

.ba-card-title.before {
  color: hsl(0, 75%, 45%);
}

.ba-card-title.after {
  color: var(--secondary);
}

.ba-card-title svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* Reduced row gap from 1.15rem */
}

.ba-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.ba-list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ba-list-icon.before {
  background-color: hsl(0, 75%, 96%);
  color: hsl(0, 75%, 45%);
}

.ba-list-icon.after {
  background-color: var(--secondary-glow);
  color: var(--secondary);
}

.ba-list-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-light);
}

/* --- Common Reasons for Elder Care --- */
#reasons {
  background-color: var(--bg-white);
  padding: 4.5rem 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.reasons-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(9, 28, 48, 0.05);
  transition: all var(--transition-normal);
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.reasons-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: all var(--transition-normal);
}

.reasons-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(9, 28, 48, 0.08);
}

.reasons-card.physical::before {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent-aqua) 100%);
}

.reasons-card.cognitive::before {
  background: linear-gradient(90deg, var(--accent-gold) 0%, hsl(38, 85%, 42%) 100%);
}

.reasons-card.emotional::before {
  background: linear-gradient(90deg, var(--accent-aqua) 0%, var(--primary) 100%);
}

.reasons-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-normal);
}

.reasons-card.physical .reasons-icon {
  background-color: var(--secondary-glow);
  color: var(--secondary);
}

.reasons-card.cognitive .reasons-icon {
  background-color: var(--accent-gold-glow);
  color: var(--accent-gold);
}

.reasons-card.emotional .reasons-icon {
  background-color: hsla(188, 85%, 42%, 0.12);
  color: var(--accent-aqua);
}

.reasons-card:hover .reasons-icon {
  transform: scale(1.1) rotate(4deg);
}

.reasons-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
}

.reasons-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* --- Specialized Post Elder Care Plan --- */
#post-care {
  background: linear-gradient(135deg, hsl(220, 24%, 97%) 0%, #ffffff 100%);
  padding: 5rem 0;
  position: relative;
}

.post-care-header {
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.post-care-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--secondary);
  background-color: var(--secondary-glow);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.post-care-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.post-care-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.post-care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.post-care-card {
  background: var(--bg-white);
  padding: 2.5rem 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(9, 28, 48, 0.04);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.post-care-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 147, 88, 0.12);
}

.post-care-card-header {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.25rem;
}

.post-care-card-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  display: block;
}

.post-care-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.post-care-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-care-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: color var(--transition-fast);
}

.post-care-card:hover .post-care-item {
  color: var(--text-dark);
}

.post-care-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .post-care-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* --- FAQ Section --- */
.faq-layout {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(9, 28, 48, 0.05);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(12, 147, 88, 0.15);
  box-shadow: var(--shadow-md);
}

.faq-question-header {
  padding: 1.75rem 2.25rem 0.5rem 2.25rem;
}

.faq-question-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.faq-answer {
  /* Permanently visible */
}

.faq-answer-inner {
  padding: 0 2.25rem 1.75rem 2.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Call to Action Banner Section --- */
.cta-banner-section {
  padding: 4rem 2.5rem;
  background: var(--bg-canvas);
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(220, 52%, 18%) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 4rem;
}

.cta-banner-img {
  height: 100%;
  min-height: 420px;
}

.cta-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-banner-content {
  padding: 4rem 4rem 4rem 0;
}

.cta-title {
  color: var(--text-light);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-grid-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.cta-meta-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-display);
}

.cta-meta-item svg {
  color: var(--secondary);
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* --- Footer Section --- */
footer {
  background-color: hsl(220, 52%, 7%);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .container {
  padding: 0 2.5rem !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr; /* Balanced 3-column layout */
  gap: 4.5rem; /* Expanded premium gutter gap */
  margin-bottom: 4.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col-title {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link-item a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-link-item a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  color: var(--secondary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-text {
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.25rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --- Scroll reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Sticky Mobile Bottom CTA Bar --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  padding: 0.85rem 1.5rem;
  box-shadow: 0 -8px 25px rgba(9, 28, 48, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 999;
}

.mobile-sticky-cta-inner {
  display: flex;
  justify-content: center;
}

.mobile-sticky-cta .btn {
  width: 100%;
  max-width: 480px;
  justify-content: center;
}

/* ========================================================================
   MEDIA QUERIES (RESPONSIVENESS Breakpoints)
   ======================================================================== */

@media (max-width: 1200px) {
  .hero .container {
    gap: 3rem;
  }

  .hero-title {
    font-size: 3.25rem;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - (2 * 1.5rem)) / 3);
  }
}

@media (max-width: 992px) {
  section {
    padding: 3rem 0;
  }

  #differentiator {
    padding: 4rem 0;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .diff-card {
    padding: 2.25rem;
  }

  .premium-diff-card h3, .standard-diff-card h3 {
    font-size: 1.65rem;
  }

  .hero {
    padding: 2.5rem 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-img-card img {
    max-height: 320px;
  }

  .trust-badge-float {
    bottom: 20px;
    padding: 0.45rem 1rem;
  }

  .support-banner {
    padding: 2.25rem 1.5rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1.75rem;
  }

  .banner-left {
    align-items: center;
  }

  .banner-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .banner-services {
    justify-content: center;
    gap: 0.65rem;
  }

  .banner-service-item {
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
  }

  .banner-right {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .banner-call-btn {
    width: 100%;
    max-width: 420px;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .banner-subinfo {
    font-size: 0.72rem;
    margin-top: 0;
  }

  .steps-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .worry-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: left;
  }

  .worry-header-title {
    text-align: left;
    font-size: 1.85rem;
    margin-bottom: 1rem;
  }

  .worry-header-title::after {
    left: 0;
    transform: none;
  }

  .worry-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.55;
    text-align: left;
  }

  .worry-image-container {
    order: -1; /* Show warm family image at the top of the section for perfect storytelling! */
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .worry-image-container img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 3px solid var(--bg-white);
  }

  .worry-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Beautiful 2-column split on tablets! */
    gap: 1rem 1.5rem;
  }

  .worry-content div[style*="margin-top"] {
    margin-top: 1.75rem !important; /* Tighten spacer for mobile screens */
  }

  .worry-content .btn {
    width: 100%;
    max-width: 420px;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.92rem;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ba-divider {
    display: none;
  }

  .cta-banner-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-banner-img {
    height: 240px; /* Highly balanced tablet image scale */
    min-height: auto;
  }

  .cta-banner-content {
    padding: 3rem 2rem;
    text-align: center;
  }

  .cta-title {
    font-size: 1.85rem;
    margin-bottom: 1rem;
  }

  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .cta-grid-meta {
    justify-items: center;
    margin-bottom: 2.25rem;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-col:first-child {
    grid-column: span 3;
    max-width: 580px;
    margin-bottom: 1rem;
  }

  .stats-ribbon {
    padding: 1.25rem 1.5rem;
  }
  .stat-number {
    font-size: 1.85rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - (1 * 1.5rem)) / 2);
    min-height: auto;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1.75rem;
  }

  .support-banner-section {
    padding: 0;
    margin-top: 15px;
  }

  .cta-banner-section {
    padding: 2.5rem 0; /* Clear desktop gutters on mobile screen */
  }

  .cta-banner-img {
    height: 180px; /* Symmetrical compact header banner for smartphones */
  }

  .cta-banner-content {
    padding: 2.25rem 1.25rem; /* Perfect responsive canvas breathing room */
  }

  .header-top {
    display: none; /* Hide header top on small screens for cleanliness */
  }

  .header-main {
    height: 60px;
    padding: 0 1.75rem;
  }

  .logo-title {
    font-size: 1.25rem;
  }

  .call-nav-pill {
    display: none; /* Hide top secondary CTA, rely on principal expert button */
  }

  .hero {
    padding: 1.75rem 0;
  }

  .hero-title {
    font-size: 2.15rem;
    margin-bottom: 0.65rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero-features {
    margin-bottom: 1.25rem;
    gap: 1rem;
  }

  .hero-feat-item {
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .hero-feat-icon {
    width: 32px;
    height: 32px;
  }

  .hero-feat-icon svg {
    width: 14px;
    height: 14px;
  }

  .hero-img-card img {
    max-height: 220px;
  }

  .trust-badge-float {
    bottom: 15px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
  }

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

  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pkg-pricing-box {
    margin-top: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-col:first-child {
    grid-column: span 2;
  }

  .mobile-sticky-cta {
    display: block; /* Show sticky cta on small viewports */
  }

  /* Mobile full-width reset & sticky footer offset */
  .boxed-wrapper {
    margin: 0;
    border-radius: 0;
    border: none;
    margin-bottom: 70px;
  }

  #hero-stats {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
  }
  
  .stats-ribbon {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    padding: 1rem 0.5rem;
  }
  
  .stat-item {
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.25rem;
    text-align: center;
    justify-content: center;
  }
  
  .stat-item:not(:last-child) {
    border-right: 1px solid rgba(12, 147, 88, 0.12);
    border-bottom: none;
    padding-bottom: 0;
  }

  .stat-icon-wrapper {
    width: 38px;
    height: 38px;
  }

  .stat-icon-wrapper svg {
    width: 16px;
    height: 16px;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.6rem;
    margin-top: 0.1rem;
    letter-spacing: 0.02em;
    font-weight: 800;
  }

  .stat-label br {
    display: none;
  }
}

@media (max-width: 576px) {
  .diff-list {
    gap: 1.25rem;
  }

  .diff-list li {
    gap: 0.85rem;
  }

  .diff-icon-success, .diff-icon-danger {
    width: 24px;
    height: 24px;
  }

  .diff-icon-success svg, .diff-icon-danger svg {
    width: 12px;
    height: 12px;
  }

  .premium-diff-card .diff-text strong, .standard-diff-card .diff-text strong {
    font-size: 0.95rem;
  }

  .premium-diff-card .diff-text span, .standard-diff-card .diff-text span {
    font-size: 0.82rem;
  }

  .header-main {
    padding: 0 1rem;
    height: 55px;
  }

  .logo-link {
    gap: 0.5rem;
  }

  .logo-link svg {
    width: 30px;
    height: 30px;
  }

  .logo-title {
    font-size: 1.02rem;
  }

  .logo-subtitle {
    font-size: 0.48rem !important;
    letter-spacing: 0.05em;
  }

  .nav-cta .btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
  }

  .hero-btns {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
  }

  .hero-btns .btn {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0.5rem;
    font-size: 0.78rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
  }

  .hero-btns .btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .worry-checklist {
    grid-template-columns: 1fr; /* Single column on narrow mobile viewports */
    gap: 0.85rem;
  }

  .cta-grid-meta {
    grid-template-columns: 1fr;
    justify-items: start;
    margin-left: 1.5rem; /* Optimal left-indent list centering */
    gap: 0.85rem;
    margin-bottom: 1.75rem;
  }

  .cta-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.25rem;
    font-size: 0.88rem;
  }

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

  .footer-col:first-child {
    grid-column: span 1;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-height: auto;
    padding: 1.25rem 1.0rem; /* Reduced padding from 1.75rem 1.5rem for mobile space economy */
  }
}
