/* ==========================================================================
   Future Guidance - Ultra-Responsive Mobile-First Design System
   Guaranteed Zero Overlap across 320px, 375px, 414px, 768px, 1024px, 1440px+
   ========================================================================== */

:root {
  /* Brand Core Colors */
  --navy-dark: #041B2D;
  --navy-primary: #0B3B60;
  --navy-mid: #134B75;
  --navy-soft: #F0F6FA;
  --navy-soft-border: #D2E4F1;

  /* Accent Gold */
  --gold-primary: #F59E0B;
  --gold-dark: #D97706;
  --gold-soft: #FEF3C7;
  --gold-subtle: #FFFBEB;

  /* Clean Neutrals */
  --white: #FFFFFF;
  --bg-page: #F8FAFC;
  --border-light: #E2E8F0;
  --border-card: #E5E7EB;

  /* Text Tones */
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-white: #FFFFFF;

  /* Functional */
  --whatsapp: #16A34A;
  --whatsapp-dark: #15803D;
  --error: #EF4444;

  /* Shadows */
  --shadow-subtle: 0 2px 8px rgba(11, 59, 96, 0.05);
  --shadow-card: 0 8px 24px rgba(11, 59, 96, 0.07);
  --shadow-hover: 0 16px 36px rgba(11, 59, 96, 0.12);
  --shadow-xl: 0 20px 40px -10px rgba(4, 27, 45, 0.18);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  --max-w: 1240px;
}

/* ==========================================================================
   Skip Link (Accessibility)
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--navy-primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  z-index: 9999;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 0;
}

/* ==========================================================================
   Base Resets & Defensive Typography
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-secondary);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* Focus-visible accessibility for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--navy-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Headings with Fluid Clamp (Zero overflow on mobile) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Badges & Section Headers */
.section-center-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
  padding: 0 0.5rem;
}

.section-pill {
  display: inline-block;
  padding: 0.35rem 0.95rem;
  background-color: var(--navy-soft);
  color: var(--navy-primary);
  border: 1px solid var(--navy-soft-border);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-heading {
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.section-subtext {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn-primary-nav {
  background-color: var(--navy-primary);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary-nav:hover {
  background-color: var(--navy-dark);
  transform: translateY(-1px);
}

.btn-wa-badge {
  background-color: var(--whatsapp);
  color: var(--white);
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-wa-badge:hover {
  background-color: var(--whatsapp-dark);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  transform: translateY(-1px);
}

.btn-hero-primary {
  background-color: var(--navy-primary);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(11, 59, 96, 0.25);
}

.btn-hero-primary:hover {
  background-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 59, 96, 0.35);
}

.btn-hero-secondary {
  background-color: var(--white);
  color: var(--navy-primary);
  border: 1.5px solid var(--navy-soft-border);
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-subtle);
}

.btn-hero-secondary:hover {
  border-color: var(--navy-primary);
  background-color: var(--navy-soft);
  transform: translateY(-2px);
}

.btn-gold-pill {
  background-color: var(--gold-primary);
  color: var(--navy-dark);
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.btn-gold-pill:hover {
  background-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-card-enquire {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--navy-soft);
  color: var(--navy-primary);
  border: 1.5px solid var(--navy-soft-border);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-card-enquire:hover {
  background-color: var(--navy-primary);
  color: var(--white);
  border-color: var(--navy-primary);
}

.btn-full { width: 100%; }

/* ==========================================================================
   Top Announcement / Status Bar
   ========================================================================== */
.top-status-bar {
  background-color: var(--navy-dark);
  color: #E2E8F0;
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.status-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  min-width: 260px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.pulse-core {
  width: 6px;
  height: 6px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
  animation: pulseCore 1.8s infinite;
}

@keyframes pulseCore {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.status-announcement {
  font-weight: 500;
  color: #CBD5E1;
  font-size: 0.8rem;
}

.status-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.status-phone {
  font-weight: 600;
  color: var(--gold-primary);
  font-size: 0.8rem;
}

.status-phone:hover {
  text-decoration: underline;
}

.status-cta {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
  font-size: 0.72rem;
  font-weight: 600;
}

.status-cta:hover {
  background-color: var(--gold-primary);
  color: var(--navy-dark);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 0.75rem;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 0;
}

.brand-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.32rem);
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-dark);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.1vw, 1.25rem);
  flex-shrink: 0;
}

.nav-item {
  font-size: clamp(0.82rem, 0.85vw, 0.88rem);
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.nav-item:hover,
.nav-item.active {
  color: var(--gold-dark);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  border-radius: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition-fast);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.header-action-cluster {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  border-radius: var(--radius-xs);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--navy-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav backdrop overlay */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 27, 45, 0.45);
  z-index: 90;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.nav-backdrop.active {
  display: block;
  opacity: 1;
}

/* ==========================================================================
   Hero Section with Smart Slider & Lead Card
   ========================================================================== */
.hero-fresh {
  background: linear-gradient(180deg, #F0F6FA 0%, #FFFFFF 100%);
  padding: 3rem 0 3.5rem;
  position: relative;
}

.hero-fresh-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 2.5rem;
  align-items: start;
}

.hero-left-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-trend-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--white);
  border: 1px solid var(--navy-soft-border);
  color: var(--navy-primary);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 1.15rem;
  align-self: flex-start;
  max-width: 100%;
  line-height: 1.4;
}

.hero-fresh-title {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.2;
  color: var(--navy-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.highlight-gold {
  color: var(--gold-dark);
  position: relative;
  display: inline-block;
}

.hero-tagline-lead {
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.4;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.hero-fresh-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.65rem;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.85rem;
}

.arrow-icon {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-hero-primary:hover .arrow-icon {
  transform: translateX(4px);
}

/* SMART SLIDER BOX - Responsive Clamp (Zero text clipping) */
.hero-slider-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.65rem;
  border: 2px solid var(--white);
  height: clamp(230px, 36vw, 310px);
  background-color: var(--navy-dark);
  width: 100%;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.slider-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.slide-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 27, 45, 0.94) 85%);
  color: var(--white);
  padding: 1.25rem 1.15rem 0.95rem;
}

.slide-chip {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
  display: inline-block;
}

.slide-caption-bar h4 {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--white);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.slide-caption-bar p {
  font-size: clamp(0.75rem, 1.6vw, 0.82rem);
  color: #CBD5E1;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Slider Controls */
.slider-navigation {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
  background: rgba(4, 27, 45, 0.75);
  backdrop-filter: blur(6px);
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-arrow {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  color: var(--gold-primary);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 8px;
  background-clip: content-box;
  transition: var(--transition-fast);
}

.slider-dots .dot.active {
  background-color: var(--gold-primary);
  width: 20px;
  border-radius: var(--radius-full);
}

/* Proof Strip */
.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  background-color: var(--white);
  padding: 1rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  width: 100%;
}

.proof-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-light);
  padding-right: 0.4rem;
}

.proof-card:last-child {
  border-right: none;
  padding-right: 0;
}

.proof-val {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

.proof-txt {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.25;
}

/* ==========================================================================
   Lead Capture Card
   ========================================================================== */
.hero-card-col {
  width: 100%;
  min-width: 0;
}

.modern-finder-card {
  background-color: var(--white);
  border: 1px solid var(--navy-soft-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  width: 100%;
}

.modern-finder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy-primary) 0%, var(--gold-primary) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.badge-mini {
  display: inline-block;
  background-color: var(--gold-subtle);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  margin-bottom: 0.4rem;
}

.finder-title {
  font-size: clamp(1.2rem, 2.5vw, 1.35rem);
  color: var(--navy-dark);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.finder-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.finder-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.input-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.field-control {
  width: 100%;
  height: 42px;
  padding: 0 0.85rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-primary);
  background-color: #FAFAFC;
  outline: none;
  transition: var(--transition-fast);
}

.field-control:focus {
  border-color: var(--navy-primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 59, 96, 0.1);
}

.phone-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #FAFAFC;
  overflow: hidden;
  transition: var(--transition-fast);
  width: 100%;
}

.phone-wrapper:focus-within {
  border-color: var(--navy-primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 59, 96, 0.1);
}

.phone-flag {
  padding: 0 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-primary);
  background-color: var(--navy-soft);
  border-right: 1px solid var(--border-light);
  height: 42px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.phone-input {
  border: none;
  background: transparent;
  height: 42px;
  width: 100%;
  padding-left: 0.65rem;
}

.phone-input:focus {
  box-shadow: none;
}

.input-grid-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field-error {
  font-size: 0.72rem;
  color: var(--error);
  display: none;
  font-weight: 500;
}

.btn-submit-finder {
  background-color: var(--gold-primary);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  margin-top: 0.2rem;
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-submit-finder:hover {
  background-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-arrow-fresh {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.btn-submit-finder:hover .btn-arrow-fresh {
  transform: translateX(4px);
}

.security-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* Modal Overlay */
.lead-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 20;
}

.modal-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 320px;
}

.modal-check-ring {
  width: 48px;
  height: 48px;
  background-color: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  font-weight: bold;
}

.modal-box h3 {
  font-size: 1.2rem;
  color: var(--navy-dark);
}

.modal-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.modal-instant-action {
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  width: 100%;
}

.action-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.btn-modal-wa {
  background-color: var(--whatsapp);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.btn-close-lead-modal {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ==========================================================================
   Visual Campus Gallery Strip
   ========================================================================== */
.gallery-hero-strip {
  padding: 3rem 0 4rem;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 360px;
  background-color: var(--navy-dark);
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-photo {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 27, 45, 0.05) 30%, rgba(4, 27, 45, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  color: var(--white);
}

.gallery-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.8px;
  margin-bottom: 0.3rem;
}

.gallery-overlay h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: #E2E8F0;
  line-height: 1.45;
}

/* ==========================================================================
   Smart Category / Pathway Finder
   ========================================================================== */
.finder-section {
  padding: 4.5rem 0;
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-light);
}

.filter-toolbar {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-subtle);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 1.35rem;
}

.toolbar-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.toolbar-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.toolbar-select {
  height: 42px;
  padding: 0 0.85rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #FAFAFC;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-primary);
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
}

.toolbar-select:focus {
  border-color: var(--navy-primary);
  background-color: var(--white);
}

.results-tracker {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-mid);
  margin-bottom: 1.85rem;
}

/* Tiers Grid & Cards (Zero overlap) */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tier-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-soft-border);
  box-shadow: var(--shadow-hover);
}

.card-status-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.badge-blue {
  background-color: var(--navy-primary);
  color: var(--white);
}

.badge-gold {
  background-color: var(--gold-primary);
  color: var(--navy-dark);
}

.card-hero-head {
  margin-bottom: 1.15rem;
}

.card-hero-head h3 {
  font-size: 1.22rem;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.card-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.card-metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background-color: var(--bg-page);
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.15rem;
}

.metric-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.card-fee-structure {
  background-color: var(--navy-soft);
  border: 1px solid var(--navy-soft-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fee-row span {
  color: var(--navy-primary);
  font-weight: 600;
}

.fee-row strong {
  color: var(--navy-dark);
}

.card-summary {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.card-bottom {
  margin-top: auto;
}

/* Banner CTA */
.fresh-banner-cta {
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
}

.banner-cta-content h3 {
  color: var(--white);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  margin-bottom: 0.35rem;
}

.banner-cta-content p {
  color: #CBD5E1;
  font-size: 0.88rem;
  max-width: 650px;
}

/* ==========================================================================
   Clinical Reality Section (Zero badge overlap on mobile)
   ========================================================================== */
.clinical-section {
  padding: 4.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
}

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

.clinical-visual-col {
  position: relative;
  width: 100%;
}

.clinical-hero-photo {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  width: 100%;
}

.clinical-badge-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  max-width: 320px;
  border-left: 4px solid var(--gold-primary);
  z-index: 5;
}

.clinical-badge-card .badge-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.clinical-badge-card .badge-title {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.clinical-badge-card p {
  font-size: 0.76rem;
  color: #CBD5E1;
  line-height: 1.4;
}

.features-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

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

.icon-circle {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background-color: var(--navy-soft);
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.feature-detail h4 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 0.15rem;
}

.feature-detail p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   5-Stage Admission Framework
   ========================================================================== */
.framework-section {
  padding: 4.5rem 0;
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-light);
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
}

.framework-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.framework-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card);
}

.card-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-dark);
  background-color: var(--gold-subtle);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.framework-icon {
  font-size: 1.65rem;
  margin-bottom: 0.65rem;
}

.framework-card h3 {
  font-size: 1.02rem;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
}

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

/* ==========================================================================
   Studio Consultation & Values
   ========================================================================== */
.studio-section {
  padding: 4.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.studio-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0 1.85rem;
}

.val-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.val-icon {
  font-size: 1.25rem;
  background-color: var(--navy-soft);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.val-box h4 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 0.15rem;
}

.val-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.studio-cta-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.studio-photo {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  width: 100%;
}

.studio-photo-tag {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0 0.5rem;
}

/* ==========================================================================
   Student Stories Section
   ========================================================================== */
.stories-section {
  padding: 4.5rem 0;
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-light);
}

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

.story-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.15rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--navy-soft-border);
}

.star-rating {
  color: var(--gold-primary);
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.story-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.student-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}

.avatar-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--navy-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.student-name {
  font-size: 0.95rem;
  color: var(--navy-dark);
}

.student-detail {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section (Zero overlap on questions)
   ========================================================================== */
.faq-fresh-section {
  padding: 4.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
}

.faq-inner-wrap {
  max-width: 860px;
}

.faq-accordion-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-card {
  background-color: #FAFAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-card:hover {
  border-color: var(--border-card);
}

.faq-trigger {
  width: 100%;
  padding: 1.15rem 1.35rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  gap: 0.85rem;
}

.trigger-symbol {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
  line-height: 1;
  flex-shrink: 0;
}

.faq-content {
  padding: 0 1.35rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-content p {
  padding-bottom: 1.15rem;
}

.faq-content ul {
  padding-left: 1.25rem;
  padding-bottom: 1.15rem;
}

.faq-content li {
  margin-bottom: 0.35rem;
}

.faq-card.active .trigger-symbol {
  transform: rotate(45deg);
}

.faq-card.active .faq-content {
  max-height: 450px;
}

/* ==========================================================================
   Contact & Location
   ========================================================================== */
.contact-fresh-section {
  padding: 4.5rem 0;
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-light);
}

.contact-fresh-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.contact-fresh-title {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.contact-fresh-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.c-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.c-icon {
  font-size: 1.2rem;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-point strong {
  font-size: 0.92rem;
  color: var(--navy-dark);
}

.c-point p {
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.c-point a {
  color: var(--navy-primary);
  font-weight: 600;
}

.c-point a:hover {
  color: var(--gold-dark);
}

.consultation-card-hours {
  background-color: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.65rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.hours-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--gold-primary);
}

.consultation-card-hours h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.hours-sub {
  font-size: 0.82rem;
  color: #CBD5E1;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.h-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.h-row span {
  color: #94A3B8;
}

.warning-alert-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background-color: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
}

.alert-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.warning-alert-card strong {
  font-size: 0.82rem;
  color: var(--gold-primary);
}

.warning-alert-card p {
  font-size: 0.78rem;
  color: #E2E8F0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.fresh-footer {
  background-color: #031322;
  color: #94A3B8;
  padding: 4rem 0 2rem;
  font-size: 0.86rem;
}

.footer-fresh-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
}

.footer-fresh-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.brand-badge-footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-footer-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.footer-desc-text {
  font-size: 0.82rem;
  line-height: 1.6;
}

.copyright-text {
  font-size: 0.78rem;
  color: #64748B;
}

.footer-fresh-col h4, .footer-fresh-disclaimer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.footer-fresh-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-fresh-col a {
  color: #94A3B8;
}

.footer-fresh-col a:hover {
  color: var(--gold-primary);
}

.footer-fresh-disclaimer p {
  font-size: 0.76rem;
  line-height: 1.6;
  color: #64748B;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Floating Mobile WhatsApp Bubble
   ========================================================================== */
.floating-wa-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.floating-wa-bubble:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.6);
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  background-color: var(--navy-primary);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Mobile-First Overlap Fixes)
   ========================================================================== */

/* Large Tablets / Laptops (1024px and below) */
@media (max-width: 1024px) {
  .hero-fresh-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.large-item {
    grid-column: span 2;
  }
  .framework-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .clinical-grid, .studio-grid, .contact-fresh-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .footer-fresh-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .site-header {
    z-index: 100;
  }
}

/* Navigation Breakpoint for Tablets and Below (1040px and below) */
@media (max-width: 1040px) {
  .top-status-bar {
    display: none;
  }
  .site-header {
    height: 66px;
  }
  .header-wrap {
    height: 66px;
  }
  .btn-primary-nav {
    display: none; /* Keep header uncluttered on mobile & tablet */
  }
  .btn-wa-badge {
    display: none; /* Floating bubble handles WhatsApp on mobile & tablet */
  }
  .brand-tagline {
    display: none; /* Prevents 2-line header wrap */
  }
  .brand-name {
    font-size: 1.22rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
}

/* Tablets and Mobile (768px and below) */
@media (max-width: 768px) {

  /* Hero Section */
  .hero-fresh {
    padding: 2rem 0 2.5rem;
  }
  .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
  }

  /* Slider Mobile Fix */
  .hero-slider-box {
    height: 240px;
  }
  .slide-caption-bar {
    padding: 1rem 0.85rem 0.75rem;
  }
  .slide-caption-bar h4 {
    font-size: 0.98rem;
  }
  .slide-caption-bar p {
    font-size: 0.74rem;
    -webkit-line-clamp: 1;
  }

  /* Proof Strip Mobile Fix */
  .hero-proof-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .proof-card {
    border-right: none;
    background-color: var(--bg-page);
    padding: 0.65rem;
    border-radius: var(--radius-xs);
  }

  /* Lead Capture Card Mobile Fix */
  .modern-finder-card {
    padding: 1.35rem 1.15rem;
  }
  .input-grid-duo {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Filter Toolbar */
  .filter-toolbar {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.15rem 1rem;
  }

  /* Clinical Badge Overlap Fix: Convert from absolute to static */
  .clinical-badge-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
    width: 100%;
    box-shadow: var(--shadow-card);
  }

  /* Gallery Grid Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large-item {
    grid-column: span 1;
  }
  .gallery-item {
    height: 260px;
  }

  /* Framework & Stories */
  .framework-grid {
    grid-template-columns: 1fr;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }

  /* Banner CTA */
  .fresh-banner-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.25rem;
  }
  .btn-gold-pill {
    width: 100%;
  }

  /* Floating WhatsApp Button on Mobile */
  .bubble-txt {
    display: none;
  }
  .floating-wa-bubble {
    padding: 0.75rem;
    bottom: 80px;
    right: 16px;
  }
  .back-to-top {
    bottom: 80px;
    left: 16px;
  }
  .footer-fresh-wrap {
    grid-template-columns: 1fr;
    gap: 1.85rem;
  }
}

/* Small Smart Phones (480px and below) */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-fresh-title {
    font-size: 1.75rem;
  }
  .hero-slider-box {
    height: 220px;
  }
  .slide-caption-bar {
    padding: 0.85rem 0.75rem 0.65rem;
  }
  .slide-caption-bar p {
    display: none; /* Hide description on tiny screens to avoid any overlap */
  }
  .tiers-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Prefers Reduced Motion (Accessibility)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .slider-slide {
    transition: none;
  }
  .floating-wa-bubble,
  .back-to-top,
  .tier-card,
  .framework-card,
  .story-card,
  .gallery-photo {
    transition: none;
    transform: none !important;
  }
}
