/* ===== Variables ===== */
:root {
  --navy: #1B3A5C;
  --navy-dark: #091828;
  --cyan: #00B4E6;
  --cyan-light: #33C4ED;
  --cyan-glow: rgba(0, 180, 230, 0.2);
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --text: #334155;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 32px rgba(9, 24, 40, 0.08);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 160px;
  --header-h-scrolled: 72px;
  --logo-h: 110px;
  --logo-h-scrolled: 42px;
  --font-display: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html.fonts-loaded {
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h-scrolled); }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-display);
}
.btn--primary {
  background: var(--cyan);
  color: var(--navy-dark);
  border-color: var(--cyan);
}
.btn--primary:hover {
  background: var(--cyan-light);
  box-shadow: 0 0 40px rgba(0, 180, 230, 0.4);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 180, 230, 0.08);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.btn--full { width: 100%; }
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  gap: 10px;
}
.btn--whatsapp:hover {
  background: #20BD5A;
  border-color: #20BD5A;
  box-shadow: 0 0 32px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.header--scrolled {
  background: rgba(9, 24, 40, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(3, 15, 26, 0.35);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height var(--transition-fast);
}
.header--scrolled .nav {
  height: var(--header-h-scrolled);
}
.nav__logo img {
  height: var(--logo-h);
  width: auto;
  transition: height var(--transition-fast), filter var(--transition);
  filter: brightness(1.1);
}
.header--scrolled .nav__logo img {
  height: var(--logo-h-scrolled);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  font-family: var(--font-display);
}
.nav__link:hover { color: var(--cyan); }
.nav__link--cta {
  color: var(--navy-dark) !important;
  background: var(--cyan);
  padding: 10px 24px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}
.nav__link--cta:hover {
  background: var(--cyan-light);
  box-shadow: 0 0 24px rgba(0, 180, 230, 0.35);
}
.nav__end {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.theme-toggle {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.theme-toggle:hover {
  background: rgba(0, 180, 230, 0.12);
  border-color: rgba(0, 180, 230, 0.55);
  color: var(--cyan);
  transform: translateY(-1px);
}
.theme-toggle:focus-visible {
  outline: 3px solid rgba(8, 185, 232, 0.45);
  outline-offset: 3px;
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
}
.theme-toggle__sun { display: none; }
[data-theme="light"] .theme-toggle__moon { display: none; }
[data-theme="light"] .theme-toggle__sun { display: block; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 180, 230, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(27, 58, 92, 0.4) 0%, transparent 50%);
  animation: heroAmbient 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroAmbient {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}
.hero__shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 24, 40, 0.3) 0%, transparent 30%, transparent 70%, rgba(9, 24, 40, 0.8) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(0, 180, 230, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero__scanline {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.4;
}
.hero__content {
  position: relative;
  z-index: 3;
  padding-top: var(--header-h);
  padding-bottom: 80px;
}
.hero__inner { max-width: 780px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  font-family: var(--font-display);
}
.hero__pulse {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--cyan);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title-accent {
  background: linear-gradient(90deg, var(--cyan), #7DD3FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.hero__metric-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Operation / Timeline ===== */
.operation {
  position: relative;
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.operation__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(0, 180, 230, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(27, 58, 92, 0.04) 0%, transparent 50%);
}
.operation__content { position: relative; z-index: 1; }

.timeline {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.timeline__line {
  position: absolute;
  /* Centra la línea en el medio del dot: padding-top 12px + half del dot 8px */
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(27, 58, 92, 0.18);
  margin: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.timeline__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--navy));
  box-shadow: 0 0 12px rgba(0, 180, 230, 0.4);
  will-change: width;
}
.timeline__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-bottom: 48px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 4px;
  transition: transform var(--transition-fast);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 64px;
}
.timeline__step:hover { transform: translateY(-2px); }
.timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 3px var(--white);
  transition: all var(--transition-fast);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.timeline__step--active .timeline__dot,
.timeline__step:hover .timeline__dot {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 180, 230, 0.25), 0 0 16px rgba(0, 180, 230, 0.5);
  transform: scale(1.2);
}
.timeline__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: color var(--transition-fast);
}
.timeline__step--active .timeline__label,
.timeline__step:hover .timeline__label {
  color: var(--navy);
}
.timeline__detail {
  padding: 40px 48px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  min-height: 180px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.timeline__detail--flash {
  border-color: rgba(0, 180, 230, 0.4);
  box-shadow: 0 0 24px rgba(0, 180, 230, 0.08);
}
.timeline__detail-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.timeline__detail-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}
.timeline__detail-desc {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  transition: opacity 0.2s ease;
}

/* ===== Portal ===== */
.portal {
  padding: 120px 0;
  background: var(--navy-dark);
  overflow: hidden;
}
.portal .section-tag { color: var(--cyan); }
.portal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.portal__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.portal__text > p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  line-height: 1.7;
  font-size: 1.05rem;
}
.portal__features li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.portal__features li:last-child { border-bottom: none; }
.portal__features strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.portal__features span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
.portal__mock {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}
.portal__mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.portal__mock-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.portal__mock-bar span:first-child { background: #EF4444; }
.portal__mock-bar span:nth-child(2) { background: #F59E0B; }
.portal__mock-bar span:nth-child(3) { background: #10B981; }
.portal__mock-title {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portal__mock-body { padding: 24px; }
.portal__mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 8px;
  transition: background var(--transition-fast);
}
.portal__mock-row--active {
  background: rgba(0, 180, 230, 0.1);
  border: 1px solid rgba(0, 180, 230, 0.2);
}
.portal__mock-label {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.portal__mock-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.portal__mock-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
}
.portal__mock-badge--live {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.portal__mock-chart {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.portal__mock-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}
.portal__mock-bar-chart div {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan), rgba(0, 180, 230, 0.2));
  border-radius: 2px 2px 0 0;
  animation: barGrow 1.2s ease-out backwards;
}
.portal__mock-bar-chart div:nth-child(1) { animation-delay: 0.1s; }
.portal__mock-bar-chart div:nth-child(2) { animation-delay: 0.2s; }
.portal__mock-bar-chart div:nth-child(3) { animation-delay: 0.3s; }
.portal__mock-bar-chart div:nth-child(4) { animation-delay: 0.4s; }
.portal__mock-bar-chart div:nth-child(5) { animation-delay: 0.5s; }
.portal__mock-bar-chart div:nth-child(6) { animation-delay: 0.6s; }
.portal__mock-bar-chart div:nth-child(7) { animation-delay: 0.7s; }
@keyframes barGrow {
  from { height: 0 !important; }
}

/* ===== Sections ===== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}


/* ===== Calculator ===== */
.calculator-section {
  position: relative;
  padding: 120px 0;
  background: var(--navy-dark);
  overflow: hidden;
}
.calculator-section .section-header h2 { color: var(--white); }
.calculator-section .section-header p { color: rgba(255, 255, 255, 0.5); }
.calculator-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 180, 230, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.calculator__inputs {
  padding: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.calculator__inputs h3,
.calculator__results h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.calculator__inputs h3 { color: rgba(255, 255, 255, 0.5); }
.calculator__inputs label {
  color: rgba(255, 255, 255, 0.6);
}
.input-group { margin-bottom: 22px; }
.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.input-group input[type="range"] {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--cyan);
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0, 180, 230, 0.5);
}
.input-group input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--cyan);
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
.input-value {
  text-align: right;
  font-weight: 600;
  color: var(--cyan);
  font-size: 0.88rem;
  margin-top: 6px;
  font-family: var(--font-display);
}
.calculator__results {
  padding: 48px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.calculator__results h3 { color: rgba(255, 255, 255, 0.5); }
.result-breakdown { flex: 1; }
.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  gap: 12px;
}
.result-item__label { color: rgba(255, 255, 255, 0.55); }
.result-item__value {
  font-weight: 600;
  white-space: nowrap;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
}
.result-total {
  margin: 28px 0;
  padding: 28px;
  border: 1px solid rgba(0, 180, 230, 0.2);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(0, 180, 230, 0.05);
}
.result-total__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.result-total__amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.02em;
}
.result-total__hours {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.result-insight {
  border: 1px solid rgba(0, 180, 230, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  background: rgba(0, 180, 230, 0.04);
}
.result-insight__text {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
}
.result-insight__text strong { color: var(--cyan); }
.result-comparison { margin-top: auto; }
.comparison-bar {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}
.comparison-bar__self,
.comparison-bar__fullarg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.comparison-bar__self { background: rgba(255, 255, 255, 0.2); z-index: 1; width: 100%; }
.comparison-bar__fullarg { background: var(--cyan); z-index: 2; box-shadow: 0 0 12px rgba(0, 180, 230, 0.5); }
.comparison-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comparison-fullarg { color: var(--cyan); font-weight: 600; }

/* ===== Why ===== */
.why {
  padding: 120px 0;
  background: var(--white);
}
.why__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.why__text > p {
  color: var(--gray-600);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.why__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
}
.why__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 1px;
}
.why__stats {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.why__stat {
  background: var(--white);
  padding: 40px 36px;
}
.why__stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.why__stat-unit {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 8px 0 12px;
}
.why__stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ===== CTA ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
}
.cta-banner__shader {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 30%, rgba(0, 180, 230, 0.08) 50%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(0, 180, 230, 0.02) 40px,
      rgba(0, 180, 230, 0.02) 41px
    );
  animation: ctaShift 8s linear infinite;
}
@keyframes ctaShift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 200px 0, 80px 0; }
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact__whatsapp { margin-top: 12px; }

/* ===== Contact ===== */
.contact {
  padding: 120px 0;
  background: var(--gray-50);
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact__info > p {
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact__channels li {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact__channel-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.contact__channels a {
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.contact__channels a:hover { color: var(--cyan); }
.contact__form {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  color: var(--navy);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  font-size: 0.95rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.45);
  padding: 48px 0 36px;
  border-top: 1px solid rgba(0, 180, 230, 0.08);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__logo {
  height: 40px;
  width: auto;
  border-radius: 4px;
}
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--cyan); }
.footer__copy { font-size: 0.78rem; }
.footer__tagline {
  max-width: 420px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.footer__nap {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__nap a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}
.footer__nap a:hover { color: var(--cyan); }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--gray-50);
  border-top: 1px solid rgba(27, 58, 92, 0.06);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border-bottom: 1px solid rgba(27, 58, 92, 0.12);
  padding: 4px 0 14px;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-dark);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cyan);
  line-height: 1;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 8px;
  max-width: 62ch;
}
.faq__item a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq__item a:hover { color: var(--cyan); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__shader { display: none; }
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  :root {
    --header-h: 130px;
    --logo-h: 85px;
  }
  .calculator { grid-template-columns: 1fr; }
  .calculator__inputs { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__layout { grid-template-columns: 1fr; gap: 48px; }
  .portal__grid { grid-template-columns: 1fr; gap: 48px; }
  .timeline__line { display: none; }
  .timeline__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
    margin-bottom: 28px;
  }
  .timeline__step {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    min-height: 78px;
    padding: 14px 8px;
  }
  .timeline__step--active {
    border-color: rgba(8, 185, 232, 0.55);
    background: rgba(8, 185, 232, 0.05);
  }
  .timeline__label { font-size: 0.72rem; }
}

@media (max-width: 640px) {
  :root {
    --header-h: 110px;
    --header-h-scrolled: 64px;
    --logo-h: 72px;
    --logo-h-scrolled: 36px;
  }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: var(--header-h-scrolled);
    left: 0;
    right: 0;
    background: rgba(9, 24, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 180, 230, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav__menu--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .hero__metrics { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__metric-divider { width: 40px; height: 1px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .calculator__inputs,
  .calculator__results { padding: 28px 20px; }
  .result-total__amount { font-size: 2rem; }
  .timeline__detail-title { font-size: 1.25rem; }
}

/* ===== Visual refresh 2026 ===== */
:root {
  --navy: #123A5A;
  --navy-dark: #071A2B;
  --cyan: #08B9E8;
  --cyan-light: #48CEF1;
  --gray-50: #F6F9FC;
  --radius: 10px;
  --radius-lg: 22px;
  --shadow: 0 18px 60px rgba(7, 26, 43, 0.1);
  --header-h: 104px;
  --header-h-scrolled: 72px;
  --logo-h: 58px;
  --logo-h-scrolled: 46px;
}

body {
  background: var(--gray-50);
  font-synthesis: none;
}

::selection {
  background: rgba(8, 185, 232, 0.28);
  color: var(--navy-dark);
}

.container { max-width: 1240px; }

.btn {
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 8px;
  letter-spacing: 0;
}

.btn:focus-visible,
.nav__link:focus-visible,
.timeline__step:focus-visible,
.whatsapp-float:focus-visible,
.contact__channels a:focus-visible {
  outline: 3px solid rgba(8, 185, 232, 0.45);
  outline-offset: 4px;
}

.nav__logo {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(3, 15, 26, 0.25);
}

.nav__logo img {
  border-radius: 0;
  box-shadow: none;
}

.nav__menu { gap: 30px; }

.nav__link {
  position: relative;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.nav__link:not(.nav__link--cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--cyan);
  transition: right var(--transition-fast);
}

.nav__link:not(.nav__link--cta):hover::after { right: 0; }

.nav__link--cta {
  padding: 12px 21px;
  border-radius: 7px;
}

.hero {
  min-height: 780px;
  background:
    radial-gradient(circle at 76% 46%, rgba(8, 185, 232, 0.13), transparent 30%),
    var(--navy-dark);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent 5%, black 65%, transparent);
}

.hero__content {
  width: 100%;
  padding-top: calc(var(--header-h) + 54px);
  padding-bottom: 112px;
}

.hero__inner {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.hero__copy { max-width: 650px; }

.hero__eyebrow {
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(8, 185, 232, 0.18);
  border-radius: 999px;
  background: rgba(8, 185, 232, 0.06);
}

.hero__title {
  max-width: 680px;
  font-size: clamp(3rem, 5.2vw, 4.9rem);
  line-height: 1.02;
  margin-bottom: 26px;
  letter-spacing: -0.045em;
}

.hero__subtitle {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__actions { margin-bottom: 46px; }

.hero__metrics {
  gap: 24px;
  padding-top: 25px;
}

.hero__metric-value { font-size: 0.92rem; }
.hero__metric-label { font-size: 0.66rem; margin-top: 3px; }

.hero__visual {
  position: relative;
  z-index: 3;
  padding: 42px 0;
}

.hero-dashboard {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(22, 61, 88, 0.76), rgba(7, 26, 43, 0.88));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.hero-dashboard::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: rgba(8, 185, 232, 0.16);
  filter: blur(45px);
}

.hero-dashboard__top,
.hero-dashboard__metrics,
.hero-dashboard__orders > div {
  display: flex;
  align-items: center;
}

.hero-dashboard__top {
  position: relative;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dashboard__eyebrow,
.hero-dashboard__top strong { display: block; }

.hero-dashboard__eyebrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-dashboard__top strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.hero-dashboard__status {
  padding: 6px 10px;
  border-radius: 999px;
  color: #6EE7B7;
  background: rgba(16, 185, 129, 0.1);
  font-size: 0.67rem;
  font-weight: 700;
}

.hero-dashboard__status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 10px #34D399;
}

.hero-dashboard__metrics {
  gap: 10px;
  margin: 20px 0;
}

.hero-dashboard__metrics > div {
  flex: 1;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-dashboard__metrics span,
.hero-dashboard__metrics strong,
.hero-dashboard__metrics small { display: block; }

.hero-dashboard__metrics span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
}

.hero-dashboard__metrics strong {
  margin: 5px 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.hero-dashboard__metrics small {
  color: var(--cyan-light);
  font-size: 0.62rem;
}

.hero-dashboard__flow {
  padding: 16px 16px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.14);
}

.hero-dashboard__flow-label {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.67rem;
}

.hero-dashboard__bars {
  height: 70px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.hero-dashboard__bars i {
  flex: 1;
  height: var(--bar);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(to top, rgba(8, 185, 232, 0.14), var(--cyan));
  box-shadow: 0 0 14px rgba(8, 185, 232, 0.13);
}

.hero-dashboard__orders { margin-top: 13px; }

.hero-dashboard__orders > div {
  min-width: 0;
  gap: 9px;
  padding: 9px 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
}

.hero-dashboard__orders > div:last-child { border-bottom: 0; }

.hero-dashboard__orders i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.hero-dashboard__orders .is-ready { background: #34D399; }
.hero-dashboard__orders .is-process { background: var(--cyan); }
.hero-dashboard__orders .is-new { background: #FBBF24; }
.hero-dashboard__orders span { flex: 1; }
.hero-dashboard__orders strong { color: rgba(255, 255, 255, 0.8); font-weight: 600; }

.hero__floating-card {
  position: absolute;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(11, 35, 54, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero__floating-card--stock { top: -22px; right: -22px; }
.hero__floating-card--delivery { left: -42px; bottom: 12px; display: flex; align-items: center; gap: 10px; }
.hero__floating-card span, .hero__floating-card small { display: block; color: rgba(255, 255, 255, 0.48); font-size: 0.62rem; }
.hero__floating-card strong { display: block; color: var(--white); font-family: var(--font-display); font-size: 0.78rem; }
.hero__floating-card--stock strong { margin-top: 2px; color: var(--cyan-light); font-size: 1.05rem; }
.hero__floating-card .hero__floating-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #072718;
  background: #34D399;
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-strip {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.trust-strip__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-strip p {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 25px;
}

.trust-strip li {
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 600;
}

.trust-strip li span {
  color: var(--cyan);
  margin-right: 5px;
}

.operation,
.why,
.contact { background: var(--gray-50); }

.section-header { max-width: 680px; }

.section-header h2,
.portal__text h2,
.why__text h2,
.contact__info h2,
.cta-banner h2 { letter-spacing: -0.035em; }

.timeline__detail,
.contact__form {
  box-shadow: var(--shadow);
}

.timeline__detail {
  background: var(--white);
  border-color: rgba(18, 58, 90, 0.1);
}

.portal {
  background:
    radial-gradient(circle at 85% 20%, rgba(8, 185, 232, 0.1), transparent 28%),
    var(--navy-dark);
}

.portal__mock {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.calculator {
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.25);
}

.why__stats {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-banner {
  background: linear-gradient(135deg, #0D496C, var(--navy));
}

.contact__layout {
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 100px);
}

.contact__info { position: sticky; top: 120px; }

.contact__channels li {
  transition: padding-left var(--transition-fast), border-color var(--transition-fast);
}

.contact__channels li:hover {
  padding-left: 8px;
  border-color: rgba(8, 185, 232, 0.35);
}

.contact__form {
  position: relative;
  padding: clamp(30px, 4vw, 50px);
  border-color: rgba(18, 58, 90, 0.1);
  overflow: hidden;
}

.contact__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--navy));
}

.contact__form-heading { margin-bottom: 28px; }

.contact__form-heading > span {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__form-heading h3 {
  margin: 5px 0 7px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
}

.contact__form-heading p {
  color: var(--gray-600);
  font-size: 0.86rem;
  line-height: 1.6;
}

.form-group label {
  color: var(--navy);
  font-size: 0.7rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 50px;
  border-color: #D8E1E9;
  background: #FAFCFE;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: #B8CBD8; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(8, 185, 232, 0.09);
}

.form-group textarea { min-height: 120px; }

.contact__submit {
  justify-content: space-between;
  padding-left: 22px;
  padding-right: 18px;
}

.contact__submit span { font-size: 1.15rem; }

.contact__form-note {
  margin: 12px auto 0;
  max-width: 470px;
  color: var(--gray-400);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.contact__form-status {
  min-height: 0;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.contact__whatsapp {
  margin-top: 10px;
  background: transparent;
  color: #169A48;
  border-color: rgba(37, 211, 102, 0.35);
}

.contact__whatsapp:hover { color: var(--white); }

.whatsapp-float {
  width: 58px;
  height: 58px;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 45px;
  }
  .hero__title { font-size: clamp(2.8rem, 5vw, 4.2rem); }
  .hero__floating-card--stock { right: -8px; }
  .hero__floating-card--delivery { left: -18px; }
  .trust-strip__inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-top: 22px; padding-bottom: 22px; }
  .trust-strip ul { justify-content: flex-start; }
}

@media (max-width: 820px) {
  :root {
    --header-h: 90px;
    --logo-h: 52px;
  }

  .hero { min-height: auto; }
  .hero__content { padding-top: calc(var(--header-h) + 75px); padding-bottom: 115px; }
  .hero__inner { grid-template-columns: 1fr; gap: 35px; }
  .hero__copy { max-width: 680px; }
  .hero__visual { max-width: 570px; width: 92%; margin: 0 auto; }
  .contact__info { position: static; }
}

@media (max-width: 640px) {
  :root {
    --header-h: 78px;
    --header-h-scrolled: 68px;
    --logo-h: 46px;
    --logo-h-scrolled: 42px;
  }

  .container { padding-left: 20px; padding-right: 20px; }
  .header { background: rgba(7, 26, 43, 0.82); backdrop-filter: blur(18px); }
  .nav__logo { padding: 4px 8px; border-radius: 8px; }
  .nav__end { gap: 4px; }
  .theme-toggle { width: 44px; height: 44px; }
  .nav__toggle { position: relative; z-index: 3; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 10px; }
  .nav__toggle span { position: absolute; width: 22px; }
  .nav__toggle span:first-child { transform: translateY(-6px); }
  .nav__toggle span:last-child { transform: translateY(6px); }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

  .nav__menu {
    top: 0;
    min-height: 100vh;
    min-height: 100dvh;
    justify-content: center;
    padding: calc(var(--header-h) + 30px) 28px 40px;
    gap: 28px;
    transform: translateY(-100%);
    visibility: hidden;
  }

  .nav__menu--open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav__link { font-size: 0.94rem; }
  .nav__link--cta { display: inline-flex; min-width: 180px; justify-content: center; }

  body.nav-open { overflow: hidden; }

  .hero__content { padding-top: 120px; padding-bottom: 78px; }
  .hero__inner { gap: 28px; }
  .hero__eyebrow { margin-bottom: 18px; font-size: 0.66rem; }
  .hero__title { font-size: clamp(2.35rem, 12vw, 3.3rem); line-height: 1.04; margin-bottom: 20px; }
  .hero__subtitle { font-size: 0.96rem; line-height: 1.65; margin-bottom: 28px; }
  .hero__actions { gap: 10px; margin-bottom: 30px; }
  .hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 9px;
    padding-top: 22px;
  }
  .hero__metric-divider { display: none; }
  .hero__metric-value { font-size: 0.76rem; }
  .hero__metric-label { font-size: 0.55rem; line-height: 1.35; }
  .hero__visual { width: 100%; padding: 20px 0 8px; }
  .hero-dashboard { padding: 17px; transform: none; border-radius: 17px; }
  .hero-dashboard__metrics > div { padding: 12px; }
  .hero-dashboard__metrics strong { font-size: 1.4rem; }
  .hero-dashboard__orders > div { font-size: 0.57rem; }
  .hero-dashboard__flow { display: none; }
  .hero__floating-card--stock { top: -1px; right: -5px; }
  .hero__floating-card--delivery { display: none; }

  .trust-strip__inner { gap: 16px; }
  .trust-strip p { font-size: 0.7rem; }
  .trust-strip ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
  .trust-strip li { font-size: 0.68rem; }

  .operation,
  .portal,
  .calculator-section,
  .why,
  .contact { padding: 82px 0; }

  .section-header { margin-bottom: 42px; }

  .timeline { overflow: visible; }
  .timeline__line { display: none; }
  .timeline__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 20px;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .timeline__step {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    padding: 12px 6px;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    scroll-snap-align: unset;
  }
  .timeline__step:hover { transform: none; }
  .timeline__step--active {
    border-color: rgba(8, 185, 232, 0.55);
    background: rgba(8, 185, 232, 0.05);
  }
  .timeline__label {
    font-size: 0.68rem;
    line-height: 1.25;
  }
  .timeline__dot {
    width: 12px;
    height: 12px;
  }
  .timeline__detail {
    min-height: 0;
    padding: 22px 18px;
  }

  .portal__mock-body { padding: 14px; }
  .portal__mock-row { padding: 12px 10px; gap: 8px; }
  .portal__mock-label { font-size: 0.72rem; }
  .portal__mock-value { font-size: 0.8rem; }

  .result-item { align-items: flex-start; }
  .result-item__label { max-width: 55%; }
  .result-item__value { white-space: normal; text-align: right; }
  .result-total { padding: 23px 14px; }

  .why__stat { padding: 30px 26px; }
  .why__stat-number { font-size: 3rem; }

  .cta-banner { padding: 75px 0; }
  .cta-banner__actions { flex-direction: column; }
  .cta-banner__actions .btn { width: 100%; }

  .contact__layout { gap: 42px; }
  .contact__info > p { margin-bottom: 22px; }
  .contact__channels { display: grid; grid-template-columns: 1fr; gap: 0; }
  .contact__channels li { padding: 15px 0; }
  .contact__channels a, .contact__channels li > span:last-child { font-size: 0.8rem; word-break: break-word; }
  .contact__form { margin: 0 -6px; padding: 30px 20px; }
  .contact__form-heading h3 { font-size: 1.3rem; }
  .form-group { margin-bottom: 15px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  .footer__links { gap: 17px; }
  .whatsapp-float { right: 18px; bottom: 18px; width: 54px; height: 54px; }
}

/* ===== Audit follow-ups ===== */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 2000;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--cyan);
  color: var(--navy-dark);
  font-weight: 700;
  font-family: var(--font-display);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
}

.portal__mock-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.portal__cta {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
}

.why__cta {
  margin-top: 28px;
}

.result-fullarg {
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid rgba(0, 180, 230, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 180, 230, 0.06);
  text-align: center;
}

.result-fullarg__label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.result-fullarg__amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.result-fullarg__note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.5;
}

.calculator__disclaimer {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  line-height: 1.55;
}

.contact {
  padding-bottom: 140px;
}

.whatsapp-float--hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}

/* ===== Portal ecosystem ===== */
.ecosystem {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 8 / 7;
  margin: 8px 0 28px;
}

.ecosystem__orbit {
  position: absolute;
  border: 1px solid rgba(8, 185, 232, 0.16);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ecosystem__orbit--outer {
  width: 86%;
  height: 86%;
  box-shadow: 0 0 40px rgba(8, 185, 232, 0.06) inset;
}

.ecosystem__orbit--inner {
  width: 48%;
  height: 48%;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
  animation: ecosystemSpin 28s linear infinite;
}

.ecosystem__links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ecosystem__links path {
  fill: none;
  stroke: rgba(8, 185, 232, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
  animation: ecosystemDash 2.4s linear infinite;
}

.ecosystem__hub,
.ecosystem__node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ecosystem__hub {
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(8, 185, 232, 0.35), transparent 55%),
    linear-gradient(160deg, #16486B, #0A2438);
  border: 1px solid rgba(8, 185, 232, 0.45);
  box-shadow: 0 0 0 8px rgba(8, 185, 232, 0.06), 0 12px 36px rgba(0, 0, 0, 0.35);
}

.ecosystem__hub span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ecosystem__hub strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.1;
}

.ecosystem__node {
  gap: 6px;
  min-width: 84px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.ecosystem__node i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(8, 185, 232, 0.7);
}

.ecosystem__node span {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ecosystem__node--stock {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.ecosystem__node--ship {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ecosystem__node--returns {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.ecosystem__node--reports {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ecosystem__node--ship i { background: #34D399; box-shadow: 0 0 12px rgba(52, 211, 153, 0.7); }
.ecosystem__node--returns i { background: #FBBF24; box-shadow: 0 0 12px rgba(251, 191, 36, 0.7); }
.ecosystem__node--reports i { background: #7DD3FC; box-shadow: 0 0 12px rgba(125, 211, 252, 0.7); }

@keyframes ecosystemSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ecosystemDash {
  to { stroke-dashoffset: -18; }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem__orbit--inner,
  .ecosystem__links path { animation: none; }
}

@media (max-width: 640px) {
  .ecosystem {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .ecosystem__hub {
    width: 84px;
    height: 84px;
  }

  .ecosystem__node {
    min-width: 76px;
    padding: 8px 10px;
  }
}

/* ===== Capabilities & partners ===== */
.capabilities {
  padding: 100px 0 40px;
  background: var(--white);
}

.capabilities__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.capability-card {
  padding: 28px 24px;
  border: 1px solid rgba(18, 58, 90, 0.1);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  box-shadow: 0 10px 30px rgba(7, 26, 43, 0.04);
}

.capability-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: var(--navy);
  background: rgba(8, 185, 232, 0.12);
}

.capability-card__icon svg {
  width: 22px;
  height: 22px;
}

.capability-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.capability-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.65;
}

.partners-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.15fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(18, 58, 90, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.partners-panel__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 108px;
  padding: 22px 24px;
  border-right: 1px solid rgba(18, 58, 90, 0.08);
  text-align: center;
}

.partners-panel__item:last-child {
  border-right: none;
}

.partners-panel__item strong,
.partners-panel__item span {
  display: block;
}

.partners-panel__item strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.partners-panel__item > div > span {
  color: var(--gray-600);
  font-size: 0.78rem;
}

.partners-panel__icon,
.partners-panel__logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 12px;
}

.partners-panel__icon--truck {
  color: var(--cyan);
  background: rgba(8, 185, 232, 0.1);
}

.partners-panel__icon--mail {
  color: var(--navy);
  background: rgba(27, 58, 92, 0.08);
}

.partners-panel__icon svg {
  width: 24px;
  height: 24px;
}

.partners-panel__logo--ml {
  color: #1A1A1A;
  background: #FFE600;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

@media (max-width: 968px) {
  .capabilities__services,
  .partners-panel {
    grid-template-columns: 1fr;
  }

  .partners-panel__item {
    border-right: none;
    border-bottom: 1px solid rgba(18, 58, 90, 0.08);
  }

  .partners-panel__item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .capabilities {
    padding: 72px 0 20px;
  }

  .capabilities__services {
    gap: 14px;
  }

  .capability-card {
    padding: 22px 18px;
  }

  .partners-panel__item {
    min-height: 0;
    padding: 18px;
  }
}

/* Contact layout must override the desktop refresh rules above. */
@media (max-width: 968px) {
  .contact__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .contact__info,
  .contact__form {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .contact {
    padding: 72px 0 110px;
  }

  .contact__layout {
    gap: 36px;
  }

  .contact__form {
    margin: 0;
    padding: 28px 18px;
    border-radius: 16px;
  }

  .contact__form-heading {
    margin-bottom: 24px;
  }

  .contact__form-heading h3 {
    max-width: none;
    font-size: 1.45rem;
  }

  .contact__form-heading p {
    font-size: 0.84rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    max-width: 100%;
  }

  .contact__submit,
  .contact__whatsapp {
    white-space: normal;
    text-align: center;
  }
}

/* ===== Light theme ===== */
[data-theme="light"] body {
  background: #F6F9FC;
  color: #334155;
}

[data-theme="light"] .header--scrolled,
[data-theme="light"] .header {
  background: rgba(246, 249, 252, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(15, 40, 70, 0.08);
}

[data-theme="light"] .nav__link {
  color: rgba(15, 40, 70, 0.72);
}

[data-theme="light"] .nav__link:hover {
  color: var(--navy);
}

[data-theme="light"] .nav__toggle span {
  background: var(--navy-dark);
}

[data-theme="light"] .theme-toggle {
  color: var(--navy);
  border-color: rgba(27, 58, 92, 0.18);
  background: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .theme-toggle:hover {
  color: var(--cyan);
  border-color: rgba(0, 180, 230, 0.5);
  background: #fff;
}

[data-theme="light"] .hero,
[data-theme="light"] .portal,
[data-theme="light"] .calculator-section,
[data-theme="light"] .footer {
  background: #EAF2F8;
}

[data-theme="light"] .hero__overlay {
  background:
    linear-gradient(180deg, rgba(234, 242, 248, 0.55) 0%, transparent 35%, transparent 70%, rgba(234, 242, 248, 0.9) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(0, 180, 230, 0.12) 0%, transparent 60%);
}

[data-theme="light"] .hero__title,
[data-theme="light"] .hero__metric-value,
[data-theme="light"] .portal__text h2,
[data-theme="light"] .portal__features strong,
[data-theme="light"] .portal__mock-value,
[data-theme="light"] .calculator-section .section-header h2,
[data-theme="light"] .result-item__value,
[data-theme="light"] .cta-banner h2 {
  color: var(--navy-dark);
}

[data-theme="light"] .hero__subtitle,
[data-theme="light"] .hero__metric-label,
[data-theme="light"] .hero__scroll,
[data-theme="light"] .portal__text > p,
[data-theme="light"] .portal__features span,
[data-theme="light"] .portal__mock-title,
[data-theme="light"] .portal__mock-label,
[data-theme="light"] .calculator-section .section-header p,
[data-theme="light"] .calculator__inputs h3,
[data-theme="light"] .calculator__results h3,
[data-theme="light"] .result-item__label,
[data-theme="light"] .cta-banner p,
[data-theme="light"] .footer,
[data-theme="light"] .footer__copy {
  color: rgba(15, 40, 70, 0.62);
}

[data-theme="light"] .btn--ghost {
  color: var(--navy);
  border-color: rgba(27, 58, 92, 0.28);
}

[data-theme="light"] .btn--ghost:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0, 180, 230, 0.08);
}

[data-theme="light"] .hero__metrics {
  border-top-color: rgba(27, 58, 92, 0.12);
}

[data-theme="light"] .portal__features li {
  border-bottom-color: rgba(27, 58, 92, 0.1);
}

[data-theme="light"] .portal__mock,
[data-theme="light"] .calculator {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(27, 58, 92, 0.1);
  box-shadow: 0 16px 40px rgba(15, 40, 70, 0.08);
}

[data-theme="light"] .calculator__inputs {
  border-right-color: rgba(27, 58, 92, 0.1);
}

[data-theme="light"] .calculator__inputs label,
[data-theme="light"] .calculator__disclaimer,
[data-theme="light"] .result-insight__text,
[data-theme="light"] .comparison-diy,
[data-theme="light"] .portal__mock-note {
  color: rgba(15, 40, 70, 0.6);
}

[data-theme="light"] .result-item {
  border-bottom-color: rgba(27, 58, 92, 0.08);
}

[data-theme="light"] .result-total__label,
[data-theme="light"] .result-total__hours,
[data-theme="light"] .comparison-labels {
  color: rgba(15, 40, 70, 0.5);
}

[data-theme="light"] .comparison-bar__self {
  background: rgba(27, 58, 92, 0.18);
}

[data-theme="light"] .calculator__results {
  background: rgba(255, 255, 255, 0.55);
}

[data-theme="light"] .input-group input[type="range"] {
  background: rgba(27, 58, 92, 0.15);
}

[data-theme="light"] .ecosystem__hub,
[data-theme="light"] .ecosystem__node {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(27, 58, 92, 0.12);
  color: var(--navy-dark);
}

[data-theme="light"] .ecosystem__hub span,
[data-theme="light"] .ecosystem__node span {
  color: rgba(15, 40, 70, 0.55);
}

[data-theme="light"] .portal__mock-bar,
[data-theme="light"] .portal__mock-row {
  border-color: rgba(27, 58, 92, 0.08);
}

[data-theme="light"] .cta-banner {
  background: #D7E7F3;
}

[data-theme="light"] .footer {
  border-top-color: rgba(27, 58, 92, 0.1);
}

[data-theme="light"] .footer__links a {
  color: rgba(15, 40, 70, 0.7);
}

[data-theme="light"] .footer__links a:hover {
  color: var(--cyan);
}

[data-theme="light"] .footer__logo {
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
}

[data-theme="light"] .footer__tagline,
[data-theme="light"] .footer__nap,
[data-theme="light"] .footer__nap a {
  color: rgba(15, 40, 70, 0.55);
}

[data-theme="light"] .footer__nap a:hover {
  color: var(--cyan);
}

[data-theme="light"] .faq {
  background: #F6F9FC;
  border-top-color: rgba(27, 58, 92, 0.08);
}

@media (max-width: 640px) {
  [data-theme="light"] .header {
    background: rgba(246, 249, 252, 0.92);
  }

  [data-theme="light"] .nav__menu {
    background: rgba(246, 249, 252, 0.98);
    border-bottom-color: rgba(27, 58, 92, 0.08);
  }

  [data-theme="light"] .calculator__inputs {
    border-bottom-color: rgba(27, 58, 92, 0.1);
  }
}
