/* ==========================================================================
   HELLO. Master Design System & Stylesheet
   "Same Vision. Different Possibilities."
   ========================================================================== */

:root {
  /* Official Company Color Palette */
  --color-soft-grey: #ECEDEF;      /* Page Background - ALWAYS */
  --color-royal-blue: #2757A5;     /* Authority, Trust, Professionalism */
  --color-burnt-orange: #E66F61;   /* Energy, Warmth, Opportunity (Primary Action) */
  --color-white: #FFFFFF;          /* Elevated Surfaces, Cards */
  --color-charcoal: #292D35;       /* Text, Contrast, Stability */

  /* Palette Tints and Transparencies */
  --color-royal-blue-light: rgba(39, 87, 165, 0.08);
  --color-royal-blue-subtle: rgba(39, 87, 165, 0.04);
  --color-burnt-orange-light: rgba(230, 111, 97, 0.12);
  --color-burnt-orange-hover: #D95C4E;
  --color-charcoal-muted: #5A606D;
  --color-border: rgba(41, 45, 53, 0.08);
  --color-border-focus: rgba(39, 87, 165, 0.4);

  /* Geometry & Soft Round Edges */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Elevation & Soft Shadows */
  --shadow-sm: 0 4px 12px rgba(41, 45, 53, 0.04);
  --shadow-card: 0 8px 24px rgba(41, 45, 53, 0.06);
  --shadow-hover: 0 16px 36px rgba(39, 87, 165, 0.12);
  --shadow-modal: 0 24px 60px rgba(41, 45, 53, 0.18);

  /* Typography */
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.65;

  /* WhatsApp Integration Palette */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BA5A;
  --color-whatsapp-surface: #E8F8EE;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1200px;
  --header-height: 84px;
}

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

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

body {
  background-color: var(--color-soft-grey); /* STRICT MANDATE: Background is ALWAYS soft grey */
  color: var(--color-charcoal);
  font-family: var(--font-family-base);
  font-size: 1rem;
  line-height: var(--line-height-relaxed);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1 0 auto;
}

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

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

a:hover, a:focus-visible {
  color: var(--color-burnt-orange);
}

/* Accessibility Focus Indicator */
:focus-visible {
  outline: 3px solid var(--color-burnt-orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-charcoal);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  color: var(--color-charcoal-muted);
  font-size: 1.0625rem;
}

.text-lead {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-charcoal);
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-burnt-orange);
  background-color: var(--color-burnt-orange-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.eyebrow-blue {
  color: var(--color-royal-blue);
  background-color: var(--color-royal-blue-light);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 860px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 18px rgba(41, 45, 53, 0.05);
  z-index: 1000;
  padding: 0;
  margin-bottom: 0;
}

.header-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-link:hover .brand-logo {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  background-color: var(--color-royal-blue-light);
  color: var(--color-royal-blue);
}

.nav-link.active {
  background-color: var(--color-royal-blue-light);
  color: var(--color-royal-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  color: var(--color-charcoal);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.mobile-toggle:hover {
  background-color: var(--color-royal-blue-light);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: var(--shadow-modal);
  z-index: 1001;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(41, 45, 53, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.drawer-logo {
  height: 60px;
}

.drawer-close {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal);
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-nav .nav-link {
  font-size: 1.1rem;
  padding: 0.85rem 1.25rem;
  display: block;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.85rem 1.75rem;
  min-height: 44px; /* Touch target minimum */
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-burnt-orange);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(230, 111, 97, 0.35);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--color-burnt-orange-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 111, 97, 0.45);
}

.btn-secondary {
  background-color: var(--color-royal-blue);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(39, 87, 165, 0.25);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background-color: #1f478a;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 87, 165, 0.35);
}

.btn-outline {
  background-color: var(--color-white);
  color: var(--color-royal-blue);
  border-color: var(--color-royal-blue);
}

.btn-outline:hover, .btn-outline:focus-visible {
  background-color: var(--color-royal-blue-light);
  color: var(--color-royal-blue);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background-color var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-normal);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  background-color: var(--color-whatsapp-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.icon-whatsapp {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
}

.form-helper-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  opacity: 0.75;
  text-align: center;
}

.whatsapp-fallback-banner {
  display: none;
  background-color: var(--color-whatsapp-surface);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 16px;
  padding: 0.9rem 1.25rem;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-charcoal);
  animation: fadeIn 0.3s ease-in-out;
}

.whatsapp-fallback-banner.active {
  display: block;
}

.whatsapp-retry-link {
  color: #128C7E;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.35rem;
  cursor: pointer;
}

.whatsapp-retry-link:hover,
.whatsapp-retry-link:focus-visible {
  color: #075E54;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  min-height: 38px;
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.05rem;
  min-height: 52px;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Cards & Surfaces
   ========================================================================== */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.card h3 {
  text-align: center;
  width: 100%;
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.card p {
  text-align: center;
  width: 100%;
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.card p:last-child {
  margin-bottom: 0;
}

.card .btn {
  align-self: center;
  margin-top: auto;
}

.card .possibility-badge,
.card [class*="badge"] {
  margin-left: auto;
  margin-right: auto;
}

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

.card-accent-blue {
  border-top: 5px solid var(--color-royal-blue);
}

.card-accent-orange {
  border-top: 5px solid var(--color-burnt-orange);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 4rem 0 4.5rem;
  text-align: center;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-slogan {
  display: block;
  color: var(--color-burnt-orange);
  font-size: clamp(1.15rem, 3.6vw, 2.1rem);
  font-weight: 700;
  white-space: nowrap;
  margin-top: 0.5rem;
  line-height: 1.3;
}

.hero-description {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.6;
  color: var(--color-charcoal-muted);
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-charcoal-muted);
}

/* Possibility Grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

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

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

/* Possibility Card */
.possibility-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.possibility-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-royal-blue);
  background: var(--color-royal-blue-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin: 0 auto 1.25rem;
}

.possibility-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
  text-align: center;
  width: 100%;
}

.possibility-tagline {
  color: var(--color-burnt-orange);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}

.possibility-card p {
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  text-align: center;
  width: 100%;
}

.possibility-card .btn {
  align-self: center;
  margin-top: auto;
}

/* Feature List */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-charcoal);
  font-size: 0.98rem;
  text-align: left;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: var(--color-burnt-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Narrative / Storytelling Box */
.narrative-card {
  background: linear-gradient(135deg, var(--color-white) 0%, #FAFBFD 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  margin: 2rem 0;
}

.narrative-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--color-royal-blue);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Auvri Mentor Card */
.mentor-spotlight {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--color-border);
}

.mentor-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-soft-grey);
  box-shadow: var(--shadow-card);
}

.mentor-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
}

/* Form Styles */
.form-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--color-border);
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  text-align: left;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-charcoal);
  background-color: #FAFBFD;
  border: 1.5px solid rgba(41, 45, 53, 0.12);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-control:focus {
  background-color: var(--color-white);
  border-color: var(--color-royal-blue);
  box-shadow: 0 0 0 4px var(--color-royal-blue-light);
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Step Flow (for Hello.Source / Consult) */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.step-card {
  background-color: var(--color-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
  text-align: center;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background-color: var(--color-royal-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-logo {
  height: 68px;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0 0 1.25rem;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--color-royal-blue);
}

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

.footer-link {
  color: var(--color-charcoal-muted);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-burnt-orange);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-charcoal-muted);
}

/* ==========================================================================
   Confirmation Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(41, 45, 53, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-modal);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-pill);
  background-color: var(--color-royal-blue-light);
  color: var(--color-royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.modal-card p {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.whatsapp-preview-box {
  background-color: #F4F6F5;
  border: 1px solid #E0E5E2;
  border-left: 4px solid var(--color-whatsapp);
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
  margin: 1.25rem 0;
  text-align: left;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  white-space: pre-line;
  word-break: break-word;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .header-wrapper {
    padding: 0.75rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .mentor-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mentor-img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .header-wrapper {
    padding: 0.65rem 1.25rem;
  }

  .brand-logo {
    height: 56px;
  }

  .hero-slogan {
    font-size: clamp(0.92rem, 4.3vw, 1.35rem);
    white-space: nowrap;
    overflow: visible;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-slogan {
    font-size: clamp(0.92rem, 4.3vw, 1.35rem);
    white-space: nowrap;
    overflow: visible;
  }
}
