
:root {

  --primary:       #2BDBE4;
  --primary-dark:  #1ab8c0;
  --secondary:     #001d42;
  --yellow:        #f0c63c;
  --yellow-dark:   #c9a520;
  --accent:        #9EDEB0;

  --text-main:     #001d42;
  --text-muted:    #4a6080;
  --text-invert:   #FFFFFF;

  --bg:            #edfafa;
  --surface:       rgba(255,255,255,0.88);
  --surface-2:     rgba(220,248,250,0.7);
  --border:        rgba(43,219,228,0.2);

  --nav-bg:        rgba(237, 250, 250, 0.88);
  --nav-height:    72px;

  --shadow-sm:     0 2px 12px rgba(43, 219, 228, 0.1);
  --shadow-md:     0 8px 30px rgba(0, 29, 66, 0.1);
  --shadow-lg:     0 20px 60px rgba(0, 29, 66, 0.15);
  --shadow-glow:   0 0 40px rgba(43, 219, 228, 0.25);

  
  --font-sans:     'Poppins', system-ui, -apple-system, sans-serif;

  
  --radius-sm:     0.5rem;
  --radius-md:     1rem;
  --radius-lg:     1.5rem;
  --radius-xl:     2rem;
  --radius-2xl:    2.5rem;

  
  --section-py:    6rem;
  --section-px:    1.5rem;

  
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

a, button, [role="button"] { touch-action: manipulation; }

html {
  scroll-behavior: auto; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 60% at 5% 12%,   rgba(43,219,228,0.28), transparent),
    radial-gradient(ellipse 55% 65% at 95% 80%,  rgba(240,198,60,0.18), transparent),
    radial-gradient(ellipse 45% 50% at 55% 45%,  rgba(43,219,228,0.12), transparent);
  color: var(--text-main);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-main);
}

.h-display {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.h-section {
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.h-section .text-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
  text-stroke: 1.5px currentColor;
  color: transparent;
}

.h-card {
  font-size: 1.25rem;
  font-weight: 700;
}

.text-primary  { color: var(--primary); }
.text-muted    { color: var(--text-muted); }
.text-invert   { color: var(--text-invert); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 20px rgba(43, 219, 228, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 219, 228, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  padding: 0.85rem 1.25rem;
}
.btn-ghost:hover {
  color: var(--secondary);
  background: rgba(240,198,60,0.6);
}

.btn-dark {
  background: rgba(0, 29, 66, 0.9);
  color: #fff;
  border: 1.5px solid rgba(43,219,228,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-dark:hover { transform: translateY(-2px); opacity: 0.9; }

.btn-yellow {
  background: var(--yellow);
  color: var(--secondary);
  box-shadow: 0 4px 16px rgba(240,198,60,0.3);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,198,60,0.45);
}

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

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}
.bento-cell:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.bento-cell .cell-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.bento-cell:hover .cell-img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.section {
  padding: var(--section-py) var(--section-px);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(237, 250, 250, 0.45);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(43,219,228,0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#nav.scrolled {
  background: rgba(237, 250, 250, 0.65);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 2px 24px rgba(43,219,228,0.12);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-inner > .nav-links { margin: 0 auto; }
.nav-inner > .nav-actions { margin-left: auto; }

.nav-logo {
  background: var(--secondary);
  border-radius: 12px;
  padding: 0.3rem 0.7rem;
  margin: 0.5rem 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,29,66,0.3);
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover {
  color: var(--secondary);
  background: rgba(240,198,60,0.6);
}
.nav-link.active {
  color: #fff;
  background: #001d42;
  font-weight: 700;
}

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

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: auto;
  padding: 0.35rem 0.25rem 0.3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: background 0.2s ease;
}
.nav-burger-label {
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: currentColor;
  line-height: 1;
  margin-top: 1px;
}
.nav-burger:hover { background: var(--surface-2); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(43,219,228,0.15);
  background: rgba(237, 250, 250, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  gap: 0.25rem;
}

.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}
.nav-mobile .nav-actions {
  margin-top: 0.75rem;
  flex-direction: column;
  align-items: stretch;
}
.nav-mobile .btn { justify-content: center; }

@media (max-width: 986px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-actions.desktop-only { display: none; }
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  margin-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 29, 66, 0.97) 0%,
    rgba(0, 29, 66, 0.62) 45%,
    rgba(0, 29, 66, 0.1) 100%
  );
}

.hero-slide[data-slide="1"] .hero-bg img,
.hero-slide[data-slide="2"] .hero-bg img {
  filter: brightness(1.15) saturate(1.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem 5rem;
}

.hero-text { color: #fff; max-width: 780px; text-align: center; margin: 0 auto; }

.hero-title {
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.02;
}
.hero-title .accent-yellow { color: var(--yellow); }

.hero-sub {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  padding: 0;
}
.hero-dot.is-active {
  background: var(--yellow);
  transform: scale(1.3);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow--prev { left: 1.5rem; }
.hero-arrow--next { right: 1.5rem; }

@media (max-width: 768px) {
  .hero-bg img {
    object-position: center top;
    transform: none !important;
    will-change: auto;
  }
  .hero-content { padding: 0 1.5rem 3.5rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-arrow {
    width: 36px;
    height: 36px;
  }
  .hero-arrow--prev { left: 0.75rem; }
  .hero-arrow--next { right: 0.75rem; }
}

.stats-bar {
  background:
    radial-gradient(ellipse 55% 80% at 8%  50%, rgba(43,219,228,0.18), transparent),
    radial-gradient(ellipse 40% 80% at 92% 50%, rgba(240,198,60,0.14), transparent),
    #001d42;
  padding: 3.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}
.stat-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.75rem;
  white-space: nowrap;
  letter-spacing: -0.03em;
  background: var(--yellow);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  min-width: 80px;
}
.stat-item:nth-child(even) .stat-number {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .stat-number {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    min-width: 72px;
    padding: 0.45rem 1rem;
  }
  .stat-label {
    font-size: 0.78rem;
  }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0.75rem; }
  .stat-number {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    min-width: 68px;
    padding: 0.45rem 1rem;
  }
  .stat-label {
    font-size: 0.72rem;
  }
}

.app-showcase {
  background: linear-gradient(160deg, #2BDBE4 0%, #23d4dd 40%, #1ac8d1 100%);
  border-top:    1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(0,29,66,0.08);
  padding: clamp(2rem, 4vw, 3rem) 1.5rem clamp(2.25rem, 4vw, 3.25rem);
  overflow: hidden;
  text-align: center;
  position: relative;
}
.app-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 92% 15%, rgba(255,255,255,0.25), transparent),
    radial-gradient(ellipse 40% 40% at 8%  85%, rgba(0,29,66,0.12),    transparent);
  pointer-events: none;
}

.asc-orbit {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  padding: 0 1rem;
}

.asc-item {
  flex-shrink: 0;
  opacity: 0;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.10);
}
.asc-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.asc-center {
  width: 210px; height: 210px;
  z-index: 5;
}

.asc-tier1 {
  width: 155px; height: 155px;
  z-index: 4;
  margin-bottom: 18px;
}

.asc-tier2-inner {
  width: 105px; height: 105px;
  z-index: 3;
  margin-bottom: 32px;
}

.asc-tier2-outer {
  width: 80px; height: 80px;
  z-index: 2;
  margin-bottom: 12px;
}

.asc-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #001d42;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.asc-sub {
  font-size: 1.05rem;
  color: rgba(0,29,66,0.72);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.asc-download-grid {
  display: flex;
  gap: 1.1rem 1.4rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0;
}
.asc-download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.asc-download-card:hover { transform: translateY(-4px); }
.asc-download-card .asc-store-lottie {
  filter: none;
  flex: 0 0 auto;
  z-index: 1;
}

.asc-download-card .asc-store-lottie--apple {
  width: 250px;
  height: 125px;
}

.asc-download-card .asc-store-lottie--play {
  width: 194px;
  height: 125px;
}
.asc-download-card .asc-store-lottie svg {
  width: 100% !important;
  height: 100% !important;
  overflow: visible !important;
}
.asc-download-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  margin-top: -0.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--secondary);
  box-shadow: 0 10px 24px rgba(240,198,60,0.35);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.asc-download-card:hover .asc-download-label {
  background: var(--yellow-dark);
  box-shadow: 0 14px 28px rgba(240,198,60,0.45);
}

.asc-col-outer { display: contents; }

@media (max-width: 1023px) {
  .asc-orbit         { gap: 8px; }
  .asc-center        { width: 165px; height: 165px; }
  .asc-tier1         { width: 120px; height: 120px; margin-bottom: 14px; }
  .asc-tier2-inner   { width: 82px;  height: 82px;  margin-bottom: 25px; }
  .asc-tier2-outer   { width: 62px;  height: 62px;  margin-bottom: 8px; }
}

@media (max-width: 768px) {
  .app-showcase     { padding: 2.5rem 1rem 3rem; }
  .asc-orbit         { gap: 3px; align-items: center; margin-bottom: 1.35rem; }
  .asc-heading       { margin-bottom: 0.75rem; }
  .asc-sub           { margin-bottom: 1rem; line-height: 1.55; }
  .asc-col-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
  }
  .asc-col-left { flex-direction: column-reverse; }
  
  .asc-col-outer .asc-tier2-outer,
  .asc-col-outer .asc-tier2-inner { margin-bottom: 0; }

  .asc-center        { width: 130px; height: 130px; }
  .asc-tier1         { width: 96px;  height: 96px;  margin-bottom: 0; }
  .asc-tier2-inner   { width: 68px;  height: 68px; }
  .asc-tier2-outer   { width: 50px;  height: 50px; }
}

@media (max-width: 480px) {
  .app-showcase     { padding: 2.25rem 0.875rem 2.65rem; }
  .asc-orbit         { gap: 4px; }
  .asc-center        { width: 105px; height: 105px; }
  .asc-tier1         { width: 78px;  height: 78px; }
  .asc-tier2-inner   { width: 55px;  height: 55px; }
  .asc-tier2-outer   { width: 40px;  height: 40px; }
  .asc-download-card .asc-store-lottie--apple {
    width: clamp(220px, 60vw, 260px);
    height: clamp(110px, 30vw, 130px);
  }
  .asc-download-card .asc-store-lottie--play {
    width: clamp(170px, 46vw, 200px);
    height: clamp(110px, 30vw, 130px);
  }
  .asc-download-label {
    min-height: 2.15rem;
    padding: 0.58rem 0.9rem;
    font-size: 0.68rem;
  }
}

.how-story {
  overflow-x: clip;
  background:
    radial-gradient(circle at 16% 18%, rgba(43,219,228,0.2), transparent 30rem),
    radial-gradient(circle at 88% 62%, rgba(240,198,60,0.14), transparent 24rem),
    linear-gradient(180deg, var(--bg), var(--surface-2));
}

.how-story-intro {
  padding-bottom: 0;
}
.how-story-intro .section-header {
  margin-bottom: 1.25rem;
}
.how-story-track {
  position: relative;
  margin-top: 1.5rem;
}
.how-story-pin {
  min-height: 0;
  display: flex;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.how-card-stack {
  width: 100%;
  min-height: min(560px, calc(100vh - 160px));
  position: relative;
  perspective: 1400px;
}

.how-step-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4.25rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 3.25rem);
  border: 1px solid rgba(43,219,228,0.2);
  border-radius: clamp(1.6rem, 3vw, 3rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(43,219,228,0.14), transparent 22rem),
    rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 34px 110px rgba(0,29,66,0.1);
  overflow: hidden;
  will-change: transform, opacity;
}
.how-step-panel:nth-child(2) {
  background:
    radial-gradient(circle at 76% 26%, rgba(43,219,228,0.14), transparent 20rem),
    rgba(255, 255, 255, 0.82);
}
.how-step-panel:nth-child(3) {
  background:
    radial-gradient(circle at 78% 24%, rgba(158,222,176,0.18), transparent 20rem),
    rgba(255, 255, 255, 0.82);
}

.how-step-copy {
  position: relative;
  z-index: 2;
}
.how-step-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.how-step-kicker::before {
  content: '';
  width: 2.5rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.step-title {
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  margin-bottom: 1.1rem;
}
.step-desc {
  max-width: 34rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}
.how-step-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.how-step-meta span {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(43,219,228,0.32);
  border-radius: 999px;
  background: rgba(43,219,228,0.08);
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 700;
}

.how-step-art {
  min-height: 340px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
}
.how-step-art::before {
  content: '';
  width: min(100%, 34rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,219,228,0.18), transparent 68%);
  position: absolute;
  filter: blur(2px);
}
.how-lottie {
  width: min(100%, 28rem);
  height: clamp(240px, 28vw, 320px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 22px 38px rgba(0,29,66,0.18));
}
.how-lottie svg {
  width: 100% !important;
  height: 100% !important;
  overflow: visible !important;
}

.how-step-img {
  position: relative;
  width: min(100%, 26rem);
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 2px 4px  rgba(0,29,66,0.06),
    0 8px 20px rgba(0,29,66,0.12),
    0 24px 56px rgba(0,29,66,0.18);
}

.how-step-img::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(43,219,228,0.5), rgba(240,198,60,0.35));
  z-index: -1;
  transform: translate(10px, 10px);
  filter: blur(0px);
}

.how-step-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    to bottom,
    rgba(0,29,66,0.0) 50%,
    rgba(0,29,66,0.28) 100%
  );
  pointer-events: none;
}
.how-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.how-step-panel.is-active .how-step-img img {
  transform: scale(1.03);
}

.how-story-dots {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}
.how-story-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(142,146,178,0.42);
  transition: width 0.25s ease, background 0.25s ease;
}
.how-story-dots span.is-active {
  width: 2rem;
  background: var(--primary);
}
.how-story-cta {
  text-align: center;
  margin-top: 1rem;
}

@media (hover: none) and (pointer: coarse) {
  .hero-bg img {
    transform: none !important;
    will-change: auto;
  }

  .store-btn:hover {
    transform: none;
    background: rgba(255,255,255,0.88);
    border-color: rgba(43,219,228,0.45);
    color: var(--secondary);
    box-shadow: 0 18px 46px rgba(43,219,228,0.16);
  }

  .asc-download-card:hover {
    transform: none;
  }
  .asc-download-card:hover .asc-download-label {
    background: var(--yellow);
    box-shadow: 0 10px 24px rgba(240,198,60,0.35);
  }
}

@media (max-width: 1199px) {
  .how-story-track {
    margin-top: 0;
  }
  .how-story-pin {
    min-height: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .how-card-stack {
    min-height: min(580px, calc(100svh - 180px));
  }
  .how-step-panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-content: start;
    padding: 3rem 2.75rem;
  }
  .how-step-art {
    order: -1;
    min-height: 200px;
  }
  .how-lottie {
    width: min(92%, 24rem);
    height: clamp(180px, 28vw, 230px);
  }
  .how-step-img {
    width: min(92%, 24rem);
  }
}

@media (max-width: 600px) {
  .how-story-pin {
    min-height: 0;
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1.25rem;
  }
  .how-card-stack {
    min-height: min(560px, calc(100svh - 200px));
  }
  .how-step-panel {
    padding: 2rem 1.5rem 5.5rem;
    border-radius: var(--radius-xl);
  }
  .how-step-kicker {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
  }
  .step-title {
    font-size: clamp(1.8rem, 10vw, 2.45rem);
    margin-bottom: 0.65rem;
  }
  .step-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .how-step-art {
    min-height: 140px;
  }
  .how-lottie {
    width: min(88%, 18rem);
    height: clamp(130px, 34vw, 165px);
  }
  .how-step-img {
    width: min(88%, 18rem);
  }
  .how-step-meta {
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .how-step-meta span {
    padding: 0.5rem 0.7rem;
    font-size: 0.72rem;
  }
  .how-story-dots {
    right: 1.25rem;
    bottom: 1.5rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .how-card-stack {
    min-height: unset;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    perspective: none;
  }
  .how-step-panel {
    position: relative !important;
    inset: unset !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    padding-bottom: 2rem !important;
  }
  .how-step-panel:last-child {
    padding-bottom: 2rem;
  }
  .how-story-dots { display: none; }
  .how-story-pin {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-step-panel {
    transform: none !important;
    opacity: 1 !important;
  }
}

.services-section {
  background: linear-gradient(160deg, #2BDBE4 0%, #20d1da 45%, #17c8d1 100%);
  border-top:    1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(0,29,66,0.08);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 90% 20%, rgba(255,255,255,0.18), transparent),
    radial-gradient(ellipse 40% 40% at 5%  80%, rgba(0,29,66,0.12),    transparent);
  pointer-events: none;
  z-index: 0;
}
.services-section > * { position: relative; z-index: 1; }

.services-section h2.h-section { color: #001d42; }
.services-section .section-subtitle { color: rgba(0,29,66,0.7); }
.services-section h2.h-section .text-outline {
  -webkit-text-stroke-color: rgba(0,29,66,0.45);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.bento-grid .bento-cell:nth-child(1) { grid-column: span 2; }
.bento-grid .bento-cell:nth-child(4) { grid-column: span 2; }

.bento-cell {
  min-height: 470px;
  border: none;
  background: #001d42;
  box-shadow: 0 20px 60px rgba(0,29,66,0.35);
}

.bento-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: linear-gradient(to top, rgba(0,29,66,1) 0%, rgba(0,29,66,0.92) 35%, rgba(0,29,66,0.55) 55%, transparent 72%);
}
.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  backdrop-filter: blur(10px);
  animation: bentoIconFloat 6.5s ease-in-out infinite;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.bento-icon svg {
  width: 22px;
  height: 22px;
  stroke-dasharray: 70;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.65s ease, transform 0.35s var(--ease);
}
.bento-cell:hover .bento-icon {
  transform: translateY(-4px) scale(1.08);
  background: var(--primary);
  color: var(--secondary);
}
.bento-cell:hover .bento-icon svg {
  stroke-dashoffset: 140;
  transform: rotate(-4deg);
}
.bento-title {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: #fff;
}
.bento-desc {
  max-width: 42rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.bento-body .btn {
  color: var(--yellow);
  border-color: rgba(255,255,255,0.24);
  padding-left: 0;
  padding-right: 0;
  background: transparent !important;
}
.bento-body .btn:hover {
  color: var(--yellow-dark);
  background: transparent !important;
}

@keyframes bentoIconFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 rgba(43,219,228,0); }
  50% { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(43,219,228,0.12); }
}

@media (prefers-reduced-motion: reduce) {
  .bento-icon {
    animation: none;
  }
  .bento-icon svg {
    transition: none;
  }
}

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-grid .bento-cell:nth-child(1),
  .bento-grid .bento-cell:nth-child(4) { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-grid .bento-cell:nth-child(1),
  .bento-grid .bento-cell:nth-child(4) { grid-column: span 1; }
}

.rates-section {
  background:
    radial-gradient(circle at 8% 20%,  rgba(43,219,228,0.18), transparent 30rem),
    radial-gradient(circle at 92% 75%, rgba(240,198,60,0.14), transparent 26rem),
    transparent;
}

.rates-view-switch {
  max-width: 560px;
  margin: 0 auto 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.rates-view-tab {
  min-height: 98px;
  padding: 0.85rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: 1.15rem;
  background: rgba(255,255,255,0.74);
  color: var(--text-main);
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,29,66,0.07);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.rates-view-tab.active {
  background: linear-gradient(135deg, var(--secondary), #005c73);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 16px 38px rgba(0,29,66,0.22);
}
.rates-view-tab:not(.active):hover {
  transform: translateY(-2px);
  border-color: rgba(43,219,228,0.4);
  box-shadow: var(--shadow-md);
}
.rates-tab-status {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.rates-view-tab.active .rates-tab-status {
  color: var(--primary);
}
.rates-tab-title {
  display: block;
  color: inherit;
  font-size: clamp(0.92rem, 1.7vw, 1.1rem);
  font-weight: 800;
  line-height: 1.15;
}
.rates-tab-copy {
  display: block;
  margin-top: 0.35rem;
  color: inherit;
  font-size: clamp(0.68rem, 1.35vw, 0.82rem);
  font-weight: 650;
  line-height: 1.35;
  opacity: 0.74;
}
.rates-view-tab:not(.active) .rates-tab-title {
  color: var(--text-main);
}
.rates-view-tab:not(.active) .rates-tab-copy {
  color: var(--text-muted);
  opacity: 0.95;
}
.rates-view-panel[hidden] {
  display: none;
}
.rates-calculator {
  background:
    rgba(255,255,255,0.72),
    radial-gradient(circle at 88% 10%, rgba(240,198,60,0.14), transparent 22rem);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(43,219,228,0.25);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0,29,66,0.12);
}
.rates-calculator::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(43,219,228,0.08);
}
.rates-calc-label {
  color: #001d42;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.rates-price-display {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: #001d42;
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}
.rates-price-display .currency {
  font-size: 0.45em;
  font-weight: 600;
  vertical-align: super;
  margin-right: 0.1em;
}
.rates-unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border: 1.5px solid rgba(0,29,66,0.3);
  border-radius: 999px;
  background: rgba(0,29,66,0.08);
  color: #001d42;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.rates-slider-wrap {
  max-width: 500px;
  margin: 0 auto;
}
.rates-slider-labels {
  display: flex;
  justify-content: space-between;
  color: #001d42;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#weight-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(0,29,66,0.2);
  outline: none;
  cursor: pointer;
}
#weight-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #001d42;
  box-shadow: 0 2px 8px rgba(0,29,66,0.35);
  transition: transform 0.2s ease;
}
#weight-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.rates-weight-num {
  text-align: center;
  margin-top: 0.75rem;
  color: #001d42;
  font-size: 0.875rem;
  font-weight: 600;
}
.rates-weight-num span {
  color: #001d42;
  font-weight: 900;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .rates-view-switch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 460px;
    gap: 0.45rem;
  }
  .rates-view-tab {
    min-height: 92px;
    padding: 0.75rem 0.45rem;
    border-radius: 0.95rem;
  }
  .rates-tab-status {
    margin-bottom: 0.35rem;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
  .rates-tab-title {
    font-size: 1.05rem;
  }
  .rates-tab-copy {
    font-size: 0.82rem;
  }
  .rates-calculator { padding: 2rem 1.5rem; }
}

@media (max-width: 520px) {
  .rates-view-switch {
    max-width: 380px;
  }
  .rates-view-tab {
    min-height: 86px;
    padding: 0.7rem 0.4rem;
  }
  .rates-tab-title {
    font-size: 0.98rem;
  }
  .rates-tab-copy {
    font-size: 0.76rem;
  }
}

@media (max-width: 380px) {
  .rates-view-switch {
    max-width: 320px;
    gap: 0.35rem;
  }
  .rates-view-tab {
    min-height: 76px;
    padding: 0.6rem 0.35rem;
    border-width: 1px;
  }
  .rates-tab-status {
    margin-bottom: 0.25rem;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }
  .rates-tab-copy {
    display: none;
  }
}

.rates-dt-wrap {
  max-width: 760px;
  padding: clamp(1rem, 2.4vw, 1.65rem);
  border: 1px solid rgba(43,219,228,0.2);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 88% 10%, rgba(43,219,228,0.14), transparent 18rem),
    rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,29,66,0.1);
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.rates-policy {
  margin-top: 3.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(43,219,228,0.18);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(43,219,228,0.14), transparent 22rem),
    rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}
.rates-policy-header {
  max-width: 680px;
  margin-bottom: 1.5rem;
}
.rates-policy-title {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  color: var(--secondary);
  margin-bottom: 0.55rem;
}
.rates-policy-copy {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.fee-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.fee-note {
  background:
    linear-gradient(135deg, var(--surface), var(--bg)),
    radial-gradient(circle at 90% 10%, rgba(43,219,228,0.08), transparent 10rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.fee-note-toggle {
  width: 100%;
  display: block;
  color: inherit;
  text-align: left;
}
.fee-note-chevron {
  display: none;
}
.fee-note:hover {
  transform: translateY(-3px);
  border-color: rgba(43,219,228,0.45);
  box-shadow: var(--shadow-md);
}
.fee-note-featured {
  background:
    radial-gradient(circle at 85% 20%, rgba(43,219,228,0.24), transparent 12rem),
    rgba(0, 29, 66, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(43,219,228,0.3);
  color: #fff;
}
.fee-note-icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(43,219,228,0.13);
  border: 1px solid rgba(43,219,228,0.2);
  color: var(--secondary);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.fee-note-icon svg {
  width: 22px;
  height: 22px;
  stroke-dasharray: 70;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.65s ease, transform 0.35s var(--ease);
}
.fee-note-featured .fee-note-icon {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: var(--primary);
}
.fee-note:hover .fee-note-icon {
  transform: translateY(-4px) scale(1.08);
  background: var(--primary);
  color: var(--secondary);
}
.fee-note:hover .fee-note-icon svg {
  stroke-dashoffset: 140;
  transform: rotate(-4deg);
}
.fee-note-wide {
  grid-column: span 2;
}
.fee-note-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}
.fee-note-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.62;
}
.fee-note-featured .fee-note-text,
.fee-note-featured .fee-note-title {
  color: #fff;
}

@media (max-width: 900px) {
  .fee-notes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .rates-policy {
    padding: 1rem;
    border-radius: var(--radius-xl);
  }
  .fee-notes {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: 0 20px 58px rgba(0,29,66,0.1);
  }
  .fee-note {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: var(--surface);
    box-shadow: none;
  }
  .fee-note + .fee-note {
    border-top: 1px solid var(--border);
  }
  .fee-note:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
  }
  .fee-note:hover .fee-note-icon {
    transform: none;
    background: rgba(43,219,228,0.08);
    color: var(--secondary);
  }
  .fee-note-toggle {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.9rem;
    align-items: center;
    padding: 1.05rem 1rem;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .fee-note-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    border-radius: 0.85rem;
    background: rgba(43,219,228,0.08);
    color: var(--secondary);
  }
  .fee-note-title {
    margin-bottom: 0;
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-transform: none;
  }
  .fee-note-chevron {
    display: block;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.25s ease;
  }
  .fee-note-content {
    display: none;
    padding: 1.05rem 1.25rem 1.2rem;
    background: var(--surface);
  }
  .fee-note.open {
    border-left: 3px solid var(--primary);
    box-shadow: 0 6px 24px rgba(0,29,66,0.1);
    z-index: 1;
  }
  .fee-note.open .fee-note-content {
    display: block;
    background: rgba(43,219,228,0.06);
    border-top: 1px solid rgba(43,219,228,0.18);
  }
  .fee-note.open .fee-note-toggle {
    background:
      radial-gradient(circle at 86% 16%, rgba(43,219,228,0.24), transparent 12rem),
      rgba(0, 29, 66, 0.94);
  }
  .fee-note.open .fee-note-title {
    color: #fff;
  }
  .fee-note.open .fee-note-chevron {
    transform: rotate(180deg);
    color: var(--primary);
  }
  .fee-note.open .fee-note-icon {
    background: var(--primary);
    border-color: rgba(43,219,228,0.35);
    color: var(--secondary);
  }
  .fee-note-featured {
    background: var(--surface);
  }
  .fee-note-featured .fee-note-toggle {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }
  .fee-note-featured .fee-note-title,
  .fee-note-featured .fee-note-chevron {
    color: var(--secondary);
  }
  .fee-note-featured .fee-note-icon {
    background: rgba(43,219,228,0.08);
    border-color: rgba(43,219,228,0.2);
    color: var(--secondary);
  }
  .fee-note.open.fee-note-featured .fee-note-title,
  .fee-note.open.fee-note-featured .fee-note-chevron {
    color: #fff;
  }
  .fee-note.open.fee-note-featured .fee-note-icon {
    background: var(--primary);
    border-color: rgba(43,219,228,0.35);
    color: var(--secondary);
  }
  .fee-note-featured .fee-note-text {
    color: var(--text-muted);
  }
  .fee-note-wide { grid-column: span 1; }
}

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

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 3px solid var(--primary);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(43,219,228,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}
.why-icon svg { width: 24px; height: 24px; }
.why-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.why-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }

.faq-section {
  background: linear-gradient(160deg, #2BDBE4 0%, #20d1da 45%, #17c8d1 100%);
  border-top:    1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(0,29,66,0.08);
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 95% 10%, rgba(255,255,255,0.35), transparent),
    radial-gradient(ellipse 45% 55% at 0%  85%, rgba(255,255,255,0.22), transparent),
    radial-gradient(ellipse 35% 40% at 50% 50%, rgba(0,29,66,0.07),    transparent);
  pointer-events: none;
}
.faq-section > * { position: relative; z-index: 1; }

.faq-section h2.h-section { color: #001d42; }
.faq-section h2.h-section .text-outline {
  -webkit-text-stroke-color: rgba(0,29,66,0.45);
}
.faq-section .section-subtitle { color: rgba(0,29,66,0.7); }
.faq-section .faq-item {
  background: rgba(255,255,255,0.32);
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0,29,66,0.14);
}
.faq-section .faq-item:hover {
  background: rgba(255,255,255,0.22);
  box-shadow: 0 4px 24px rgba(0,29,66,0.08);
}
.faq-section .faq-item.open {
  background: #fff;
}
.faq-section .faq-item.open:hover {
  background: #fff;
}
.faq-section .faq-question { color: #001d42; }
.faq-section .faq-question:hover,
.faq-section .faq-item.open .faq-question { color: #001d42; font-weight: 700; }
.faq-section .faq-item.open .faq-chevron { color: #001d42; }
.faq-section .faq-answer-inner { color: rgba(0,29,66,0.75); }

.contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(43,219,228,0.18), transparent 30rem),
    radial-gradient(circle at 88% 64%, rgba(240,198,60,0.1), transparent 24rem),
    transparent;
}
.contact-panel {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(43,219,228,0.2);
  border-radius: var(--radius-2xl);
  background:
    rgba(255,255,255,0.72),
    radial-gradient(circle at 84% 12%, rgba(43,219,228,0.14), transparent 20rem);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 28px 90px rgba(0,29,66,0.12);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.input-field {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: rgba(255,255,255,0.78);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.input-field::placeholder { color: var(--text-muted); opacity: 0.6; }
.input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43,219,228,0.12);
}
.input-field.textarea {
  border-radius: var(--radius-lg);
  resize: vertical;
  min-height: 140px;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  display: block;
}
.form-group { display: flex; flex-direction: column; }

.form-status {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(55,201,54,0.12);
  color: #37c936;
  border: 1px solid rgba(55,201,54,0.2);
}
.form-status.error {
  display: block;
  background: rgba(255,60,126,0.12);
  color: #ff3c7e;
  border: 1px solid rgba(255,60,126,0.2);
}

.contact-info {
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(240,198,60,0.18), transparent),
    #001d42;
  border: 1px solid rgba(43,219,228,0.2);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,29,66,0.25);
}
.contact-info-title {
  margin-bottom: 0.5rem;
  color: #fff;
}
.contact-info-sub {
  color: rgba(255,255,255,0.68);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke-width: 2.3; }
.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.contact-item-value a { transition: color 0.2s ease; }
.contact-item-value a:hover { color: var(--primary); }

.contact-branch-list { display: flex; flex-direction: column; gap: 0.55rem; }
.contact-branch {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.contact-branch-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.social-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(43,219,228,0.12);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn-wide {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  gap: 0.55rem;
  justify-content: flex-start;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
}
.social-btn-wide svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-panel { padding: 1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-form { padding-top: 1.25rem; }
  .contact-info { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}

@media (max-width: 420px) {
  .contact-section {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
  .contact-section .section-header {
    margin-bottom: 2rem;
  }
  .contact-panel {
    padding: 0.85rem;
    border-radius: 1.35rem;
  }
  .contact-grid {
    gap: 1.6rem;
  }
  .contact-form {
    gap: 0.95rem;
  }
  .form-label {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
  }
  .input-field {
    padding: 0.8rem 1rem;
    border-radius: 1.15rem;
    font-size: 0.86rem;
  }
  .input-field.textarea {
    min-height: 120px;
  }
  #submit-btn {
    align-self: stretch !important;
    justify-content: center;
    padding: 0.9rem 1.25rem;
  }
  .contact-info {
    padding: 1.15rem;
    border-radius: 1.25rem;
  }
  .contact-info-title {
    font-size: 1.18rem !important;
    line-height: 1.18;
  }
  .contact-info-sub {
    margin-bottom: 1.4rem;
    font-size: 0.9rem;
  }
  .contact-items {
    gap: 1rem;
    margin-bottom: 1.4rem;
  }
  .contact-item {
    gap: 0.75rem;
  }
  .contact-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.85rem;
  }
}

@media (max-width: 360px) {
  .contact-section {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
  .contact-panel {
    padding: 0.7rem;
    border-radius: 1.1rem;
  }
  .input-field {
    padding: 0.72rem 0.85rem;
    font-size: 0.82rem;
  }
  .contact-info {
    padding: 1rem;
  }
}

.branches-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.branch-card {
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.branch-photo {
  width: 220px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: block;
}

.branch-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}
.branch-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.branch-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
}

.branch-addr {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.branch-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
  margin-top: 0.5rem;
}
.branch-phone svg { width: 15px; height: 15px; color: var(--primary-dark); flex-shrink: 0; }
.branch-phone:hover { color: var(--primary-dark); }

.branch-map-wrap {
  width: 260px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.branch-map {
  width: 100%;
  height: 100%;
  min-height: 160px;
  border: none;
  display: block;
}

@media (max-width: 860px) {
  .branch-card { flex-direction: column; }
  .branch-photo { width: 100%; height: 180px; }
  .branch-map-wrap { width: 100%; height: 180px; }
}

.cta-banner {
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-bg-img {
  display: none;
}
.cta-banner::before { display: none; }
.cta-banner::after  { display: none; }
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: 1.75rem;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,20,30,0.84) 0%, rgba(0,29,66,0.76) 100%);
  border-radius: inherit;
  z-index: 0;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.cta-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-title .accent { color: var(--primary); }
.cta-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.cta-banner .btn {
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.cta-banner .btn-primary {
  background: linear-gradient(135deg, var(--primary), #8ff7ff);
  box-shadow: 0 16px 42px rgba(43,219,228,0.34);
}
.cta-banner .btn-primary:hover {
  box-shadow: 0 20px 54px rgba(43,219,228,0.48);
}
@keyframes ctaMeshShift {
  0% {
    background-position: 0% 0%, 100% 0%, 80% 100%, 0% 100%, center;
  }
  50% {
    background-position: 18% 8%, 82% 18%, 100% 78%, 12% 86%, center;
  }
  100% {
    background-position: 4% 20%, 94% 8%, 72% 92%, 22% 76%, center;
  }
}

@keyframes ctaAuroraDrift {
  0% {
    transform: translate3d(-5%, -3%, 0) rotate(0deg) scale(1.02);
  }
  50% {
    transform: translate3d(6%, 4%, 0) rotate(4deg) scale(1.1);
  }
  100% {
    transform: translate3d(-3%, 6%, 0) rotate(-4deg) scale(1.06);
  }
}

@keyframes ctaOrbDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(-82px, 60px, 0) scale(1.28);
    opacity: 0.9;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 1rem;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btns .btn {
    justify-content: center;
    width: 100%;
    max-width: 250px;
  }
}

.site-footer {
  background:
    radial-gradient(ellipse 60% 55% at 5%  20%, rgba(43,219,228,0.22), transparent),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(240,198,60,0.14), transparent),
    #001d42;
  border-top: 1px solid rgba(43,219,228,0.18);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-social:hover { color: var(--primary); border-color: var(--primary); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

[data-anim] {
  opacity: 0;
}
[data-splitting].splitting .char {
  opacity: 0;
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  [data-anim]                          { opacity: 1 !important; transform: none !important; }
  [data-splitting].splitting .char     { opacity: 1 !important; transform: none !important; }
  .cta-banner                          { animation: none; }
  .cta-banner::before,
  .cta-banner::after                   { animation: none; }
  [data-parallax]                      { transform: none !important; }
}

.text-center { text-align: center; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 580px;
}
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--secondary); }
.faq-item.open .faq-question { color: var(--secondary); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--secondary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.error-page {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  padding-top: 72px;
}
.error-code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.error-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.nav-mobile-signup { display: none; }
@media (max-width: 986px) {
  .nav-mobile-signup { display: inline-flex; }
}


.hero-title .accent-yellow { color: var(--yellow); }

#whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease, background 0.2s ease;
}
#whatsapp-fab.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#whatsapp-fab:hover {
  background: #1ebe5d;
  box-shadow: 0 14px 40px rgba(37,211,102,0.55);
  transform: translateY(-3px);
}
#whatsapp-fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
#whatsapp-fab span {
  white-space: nowrap;
}

@media (max-width: 640px) {
  #whatsapp-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.85rem;
    border-radius: 50%;
    gap: 0;
  }
  #whatsapp-fab span {
    display: none;
  }
  #whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 420px) {
  #whatsapp-fab {
    bottom: 0.9rem;
    right: 0.75rem;
    padding: 0.75rem;
  }
  #whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
}

h2.h-section { color: var(--secondary); }

h2.h-section .text-outline {
  -webkit-text-stroke-color: var(--secondary);
  text-stroke-color: var(--secondary);
}

.why-title { color: var(--secondary); }

.bento-body .bento-title { color: #fff; }

.step-title { color: var(--secondary); }

.footer-copy strong { font-weight: 700; }

.rates-dt-wrap {
  margin-bottom: 2.5rem;
}

div.dt-container {
  font-family: var(--font-sans);
  color: var(--text-main);
}

div.dt-container .dt-layout-row:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

div.dt-container .dt-search input {
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 220px;
}
div.dt-container .dt-search input:focus { border-color: var(--primary); }
div.dt-container .dt-search label { color: var(--text-muted); font-size: 0.8rem; }

div.dt-container .dt-length select {
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  cursor: pointer;
}
div.dt-container .dt-length label { color: var(--text-muted); font-size: 0.8rem; }

table.rates-datatable {
  width: 100% !important;
  border-collapse: collapse;
  font-size: 0.9rem;
}
table.rates-datatable thead th {
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 1.5rem;
  border: none;
  white-space: nowrap;
}
table.rates-datatable thead th.dt-orderable-asc::after,
table.rates-datatable thead th.dt-orderable-desc::after,
table.rates-datatable thead th.dt-ordering-asc::after,
table.rates-datatable thead th.dt-ordering-desc::after {
  color: var(--primary);
  opacity: 1;
}

table.rates-datatable tbody td {
  padding: 0.85rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-main);
  transition: background 0.15s ease;
}
table.rates-datatable tbody tr:hover td { background: rgba(43,219,228,0.05); }
table.rates-datatable tbody tr:nth-child(even) td { background: var(--bg); }
table.rates-datatable tbody tr:nth-child(even):hover td { background: rgba(43,219,228,0.06); }

table.rates-datatable tbody td.rate-price {
  color: var(--secondary) !important;
  font-weight: 700;
  font-size: 0.95rem;
}

div.dt-container .dt-layout-row:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}
div.dt-container .dt-info { color: var(--text-muted); font-size: 0.8rem; }

div.dt-container .dt-paging .dt-paging-button {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  margin: 0 2px;
  transition: all 0.2s ease;
}
div.dt-container .dt-paging .dt-paging-button:hover:not(.disabled) {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}
div.dt-container .dt-paging .dt-paging-button.current {
  background: var(--primary) !important;
  color: var(--secondary) !important;
  border-color: var(--primary) !important;
  font-weight: 700;
}
div.dt-container .dt-paging .dt-paging-button.current:hover {
  background: var(--primary) !important;
  color: var(--secondary) !important;
  border-color: var(--primary) !important;
}
div.dt-container .dt-paging .dt-paging-button.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.legal-hero {
  background: var(--secondary);
  padding: 7rem 0 4rem;
  text-align: center;
}
.legal-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.legal-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
}
.legal-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.legal-body {
  background: #fff;
  padding: 4rem 0 6rem;
}
.legal-inner {
  max-width: 820px;
}
.legal-intro {
  border-left: 4px solid var(--primary);
  padding-left: 1.25rem;
  margin-bottom: 3rem;
}
.legal-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-main);
  margin: 0;
}
.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 0.75rem;
}
.legal-block p,
.legal-block li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-main);
}
.legal-block ul {
  padding-left: 1.4rem;
  margin: 0.5rem 0;
}
.legal-block ul li {
  margin-bottom: 0.35rem;
}
.legal-block a {
  color: var(--primary);
  text-decoration: underline;
}
.legal-block a:hover {
  color: var(--secondary);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.grecaptcha-badge { visibility: hidden !important; }

.recaptcha-notice {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 0 1rem 5rem;
  line-height: 1.5;
}
.recaptcha-notice a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
}
.recaptcha-notice a:hover { color: var(--primary); }
