@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Refined Palette */
  --bg-primary: #f8fafc;
  --bg-white: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --primary-blue: #0056b3;
  --primary-blue-light: #3b82f6;
  --primary-blue-dark: #004494;
  
  --accent-orange: #ff8c00;
  --accent-orange-light: #ffb347;
  --accent-orange-dark: #e67e00;
  
  --border-color: #e2e8f0;
  
  /* Glassmorphism Tokens */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(16px);
  
  /* Modern Shadows (Layered) */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing Scale */
  --section-gap: 6rem;
  --content-gap: 3rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-main);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

strong { color: var(--text-main); }

/* ─── Layout ─── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: var(--section-gap) 0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--content-gap);
  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;
}

/* ─── Glass Header ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: padding 0.3s ease;
}

header.scrolled .nav-container {
  padding: 0.6rem 0;
}

.header-left { flex-shrink: 0; }
.header-center { flex: 1; display: flex; justify-content: center; }
.header-right { flex-shrink: 0; }

.logo {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}

.logo span { color: var(--accent-orange); }

.logo-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.25rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(255, 140, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.35);
  color: white;
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-primary);
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

/* ─── Badge Pill ─── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-blue);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* ─── Hero Section ─── */
.hero {
  padding: 9rem 0 5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(0, 86, 179, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 100%, rgba(255, 140, 0, 0.04) 0%, transparent 50%);
}

.hero p {
  font-size: 1.1875rem;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

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

/* Sub-page hero (shorter) */
.hero--sub {
  padding: 8rem 0 3.5rem;
}

/* ─── Trust Bar ─── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: var(--text-main);
  padding: 2.5rem 3rem;
  border-radius: var(--radius-xl);
  color: white;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-xl);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.trust-item i {
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}

.trust-item strong {
  color: white;
  font-size: 1.0625rem;
}

.trust-item span {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  font-size: 1.125rem;
}

/* ─── Image Cards ─── */
.image-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

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

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.3) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: white;
}

.image-card-overlay h3 {
  color: white;
  font-size: 1.375rem;
  margin-bottom: 0.35rem;
}

.image-card-overlay p {
  color: #cbd5e1;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ─── FAQ Accordion ─── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary-blue-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-main);
  text-align: left;
  line-height: 1.4;
}

.faq-question i {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer-inner p {
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ─── Feature Row (Icon + Text) ─── */
.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-row i {
  flex-shrink: 0;
  color: var(--accent-orange);
  margin-top: 2px;
}

.feature-row strong {
  display: block;
  margin-bottom: 0.25rem;
}

.feature-row p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ─── CTA Card ─── */
.cta-card {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-color);
}

.cta-card h3 { margin-bottom: 0.5rem; }
.cta-card p { margin-bottom: 1.5rem; }

/* Dark variant */
.cta-card--dark {
  background: var(--text-main);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}

.cta-card--dark h3 { color: white; }
.cta-card--dark p { color: var(--text-light); }

/* ─── Glass Card ─── */
.glass-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

/* ─── Check List ─── */
.check-list {
  display: grid;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-main);
}

.check-list i {
  flex-shrink: 0;
  color: var(--primary-blue);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ─── Footer ─── */
footer {
  background: #020617;
  padding: 5rem 0 2rem;
  color: var(--text-light);
  margin-top: var(--section-gap);
}

footer h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

footer p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

footer ul li a {
  color: var(--text-light);
  font-size: 0.9375rem;
}

footer ul li a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  margin-top: 3.5rem;
}

.footer-bottom p {
  color: #475569;
  font-size: 0.875rem;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  :root {
    --section-gap: 4.5rem;
    --content-gap: 2.5rem;
  }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .hero { padding: 8rem 0 4rem; }
  .hero--sub { padding: 7rem 0 3rem; }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 3.5rem;
    --content-gap: 2rem;
  }

  .header-right { display: none; }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .mobile-menu-btn:hover {
    background: rgba(0, 86, 179, 0.08);
  }

  .mobile-menu-btn.menu-open {
    color: #ffffff;
  }

  /* ── Full-Screen Glassmorphism Nav Overlay ── */
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 20, 40, 0.82);
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow: hidden;
  }

  /* Subtle radial glow accents */
  .nav-links::before,
  .nav-links::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease 0.1s;
  }

  .nav-links::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.25) 0%, transparent 70%);
  }

  .nav-links::after {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links.active::before,
  .nav-links.active::after {
    opacity: 1;
  }

  /* Nav link items with staggered animation */
  .nav-links li {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links.active li {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.08s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.14s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.20s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.26s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.32s; }

  .nav-links a {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.85rem 1.5rem;
    display: block;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .nav-links a::after {
    bottom: 4px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #ffffff;
    transform: translateX(6px);
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 40px;
    left: 1.5rem;
    transform: none;
  }

  /* Glass border separator between links */
  .nav-links li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero { padding: 7rem 0 3rem; }
  .hero--sub { padding: 6.5rem 0 2.5rem; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .trust-bar {
    grid-template-columns: 1fr;
    padding: 2rem;
    margin-top: -2rem;
    gap: 1.5rem;
  }

  .image-card { aspect-ratio: 16/10; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }

  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

/* ─── Premium Accent Polish & Animations ─── */

/* Button Shimmer Effect */
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::after {
  left: 100%;
}

/* Emergency indicator glow pulse */
@keyframes emergencyPulse {
  0% {
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.25);
  }
  50% {
    box-shadow: 0 4px 22px rgba(255, 140, 0, 0.6);
  }
  100% {
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.25);
  }
}

.btn-primary {
  animation: emergencyPulse 2.5s infinite ease-in-out;
}

/* Elegant Premium Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-light);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ─── Testimonials Section ─── */
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.25rem !important;
}

.testimonial-header {
  margin-bottom: 1rem;
}

.stars {
  color: var(--accent-orange);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.author-details strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 700;
}

.author-details span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ─── Slider Gallery ─── */
.slider-wrapper {
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.slider-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide:hover img {
  transform: scale(1.03);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}

.slider-btn {
  pointer-events: all;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-md);
}

.slider-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  width: 20px;
  border-radius: var(--radius-full);
}


