/* ============================================
   THE ELEVARE ADVISORY — Main Stylesheet
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1C2430; background: #FAFAF8; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Variables ── */
:root {
  --navy:        #0C1F3F;
  --navy-mid:    #163356;
  --navy-light:  #1E4A7A;
  --gold:        #C8A951;
  --gold-light:  #E8CC7A;
  --gold-dim:    #A8892C;
  --cream:       #FAFAF8;
  --light:       #F2EFE9;
  --border:      #DDD6C8;
  --text:        #1C2430;
  --muted:       #6B7B8D;
  --white:       #FFFFFF;
  --shadow:      0 4px 24px rgba(12,31,63,0.09);
  --shadow-lg:   0 16px 56px rgba(12,31,63,0.15);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s ease;
  --max-width:   1200px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p  { color: var(--muted); font-size: 1rem; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-intro  { color: var(--muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto 3rem; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dim); border-color: var(--gold-dim); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,81,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ── Logo ── */
.nav-logo-wrap {
  display: block;
  background: rgba(255,255,255,0.96);
  border-radius: 6px;
  padding: 4px 10px;
  line-height: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-logo-wrap:hover { background: white; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.nav-logo-img { height: 38px; width: auto; display: block; }
.footer-logo-img {
  height: 52px; width: auto;
  background: rgba(255,255,255,0.95);
  border-radius: 6px; padding: 6px 14px;
  display: block; margin-bottom: 1rem;
}

/* ── Navigation ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  padding: 0.75rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.01em;
}
.nav-logo-tag {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-top: 1px;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-cta { margin-left: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── Slideshow / Hero ── */
.slideshow {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; background: var(--navy);
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  background-size: cover; background-position: center;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,31,63,0.82) 0%, rgba(12,31,63,0.55) 60%, rgba(12,31,63,0.35) 100%);
}
.slide-content {
  position: absolute; bottom: 0; left: 0; right: 0; top: 0;
  display: flex; align-items: center;
}
.slide-content .container { width: 100%; }
.slide-text { max-width: 680px; }
.slide-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(200,169,81,0.4);
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white); line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.slide-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.82);
  margin-bottom: 2rem; max-width: 520px; line-height: 1.65;
}
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slideshow controls */
.slide-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
  border: none;
}
.dot.active { background: var(--gold); transform: scale(1.3); }
.slide-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 1.5rem; z-index: 10; pointer-events: none;
}
.slide-arrow {
  pointer-events: all;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.slide-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slide-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.15); z-index: 10;
}
.slide-progress-bar {
  height: 100%; background: var(--gold);
  width: 0%; transition: width linear;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,169,81,0.08) 0%, transparent 60%);
}
.page-hero-title { color: var(--white); position: relative; margin-bottom: 1rem; }
.page-hero-sub { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 580px; margin: 0 auto; position: relative; }
.breadcrumb {
  position: relative; margin-bottom: 1.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; }

/* ── About Snippet ── */
.about-section { background: var(--white); }
.about-section .grid-2 { gap: 5rem; }
.about-image-wrap { position: relative; }
.about-image {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--navy); color: var(--white);
  padding: 1.5rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); text-align: center;
  min-width: 140px;
}
.about-badge-number { font-size: 2.4rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 1; }
.about-badge-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; opacity: 0.8; }
.about-text .section-label { margin-top: 0; }
.about-text p { margin-bottom: 1.25rem; }
.about-text blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--navy); font-size: 1.05rem;
}

/* ── Services ── */
.services-section { background: var(--light); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold); flex-shrink: 0;
}
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin: 0; }
.service-card p  { font-size: 0.92rem; line-height: 1.6; flex: 1; }
.service-card .learn-more {
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold); display: flex; align-items: center; gap: 0.3rem;
  transition: gap var(--transition);
}
.service-card:hover .learn-more { gap: 0.6rem; }

/* ── Why Choose Us ── */
.why-section { background: var(--navy); }
.why-section .section-label { color: var(--gold); }
.why-section .section-title { color: var(--white); }
.why-section .section-intro { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(200,169,81,0.4); }
.why-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 0.75rem; }
.why-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.why-card p  { color: rgba(255,255,255,0.6); font-size: 0.92rem; }

/* ── Sectors ── */
.sectors-section { background: var(--white); }
.sectors-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
.sector-chip {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-weight: 500; font-size: 0.9rem; color: var(--navy);
  background: var(--white);
  transition: var(--transition); cursor: default;
}
.sector-chip i { color: var(--gold); }
.sector-chip:hover { border-color: var(--gold); background: var(--light); }

/* ── Approach ── */
.approach-section { background: var(--cream); }
.approach-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.approach-steps::before {
  content: '';
  position: absolute; left: 28px; top: 56px; bottom: 56px;
  width: 2px; background: linear-gradient(to bottom, var(--gold), var(--navy-light));
}
.approach-step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 0; position: relative;
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold);
  border: 3px solid var(--gold); position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--cream);
}
.step-body h3 { color: var(--navy); margin-bottom: 0.4rem; font-size: 1.15rem; }
.step-body p  { font-size: 0.95rem; }

/* ── Team ── */
.team-section { background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.05em;
}
.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.75rem; }
.team-info p  { font-size: 0.9rem; }

/* ── MVV ── */
.mvv-section { background: var(--white); }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.mvv-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--gold);
  background: var(--light);
  transition: var(--transition);
}
.mvv-card:hover { box-shadow: var(--shadow); }
.mvv-card-type { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.mvv-card h3 { margin-bottom: 1rem; color: var(--navy); }
.mvv-card p  { font-size: 0.95rem; }
.mvv-values-list { display: flex; flex-direction: column; gap: 0.5rem; }
.mvv-values-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.92rem; color: var(--muted);
}
.mvv-values-list li i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,81,0.12), transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Stats ── */
.stats-strip { background: var(--gold); padding: 3rem 0; }
.stats-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label  { font-size: 0.85rem; font-weight: 600; color: var(--navy); opacity: 0.75; margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Contact ── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-item-icon {
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-item-text p { font-size: 0.85rem; margin: 0; }
.contact-item-text strong { color: var(--navy); font-size: 0.9rem; }
.contact-form { background: var(--light); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem;
  background: var(--white); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.form-submit { width: 100%; justify-content: center; }
.form-notice { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }

/* ── Footer ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand { }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); }
.footer-logo-tag  { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.footer-tagline   { margin-top: 1rem; font-size: 0.9rem; max-width: 260px; }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--gold); }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Divider ── */
.gold-line { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1.25rem 0; }
.gold-line-center { margin: 1.25rem auto; }

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0; top: 0; background: var(--navy);
    flex-direction: column; justify-content: center; gap: 0.5rem;
    transform: translateX(100%); transition: transform 0.35s ease;
    padding: 2rem; z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; padding: 0.75rem 1rem; }
  .nav-cta { margin: 0.5rem 0 0; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { left: 0; bottom: -1rem; }
  .slide-title { font-size: 2rem; }
  .slide-desc { font-size: 0.95rem; }
  .stats-row { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .approach-steps::before { display: none; }
  .slide-arrows { display: none; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
