:root {
  --ink: #f7fbff;
  --muted: #aebdd0;
  --deep: #06111f;
  --navy: #0a1a2f;
  --blue: #2f7cff;
  --cyan: #35d7ff;
  --mint: #44f0b7;
  --gold: #fbbf24;
  --gold-deep: #f59e0b;
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --radius-lg: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 9%, rgba(47, 124, 255, 0.28), transparent 30rem),
    radial-gradient(circle at 80% 2%, rgba(53, 215, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #071426 0%, #08101e 42%, #050b15 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 78%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.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;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 76px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(6, 17, 31, 0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
  width: min(calc(100% - 28px), 1240px);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #02111f;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, var(--gold) 42%, var(--cyan));
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.26);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.05;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  color: #d9e6f5;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.language-control select {
  height: 42px;
  max-width: 124px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(8, 24, 43, 0.94);
  padding: 0 10px;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.icon-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-btn {
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #eaf5ff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
}

.icon-btn.whatsapp {
  background: rgba(68, 240, 183, 0.12);
  border-color: rgba(68, 240, 183, 0.28);
}

.icon-btn.call {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.3);
}

.icon-btn:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 102px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 56px;
  align-items: stretch;
}

.hero-copy h1,
.section-heading h2,
.about-panel h2,
.cta-shell h2 {
  margin: 0;
  color: #ffffff;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 4.7vw, 4.2rem);
  line-height: 1.04;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.hero-copy p,
.section-heading p,
.about-panel p,
.glass-list p,
.cta-shell p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: 1.13rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  color: #ffe29a;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  padding: 13px 18px;
}

.primary-btn {
  color: #031426;
  background: linear-gradient(135deg, #ffffff, var(--gold) 48%, #8defff);
  box-shadow: 0 18px 48px rgba(245, 158, 11, 0.24);
}

.secondary-btn {
  color: #f6fbff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.secondary-btn.light {
  background: rgba(6, 17, 31, 0.28);
}

.primary-btn span,
.secondary-btn span {
  color: inherit;
  opacity: 1;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
  max-width: 680px;
}

.trust-strip div,
.service-card,
.glass-list,
.feature-card,
.reason-item,
.cta-shell {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--glass-strong), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 104px;
  padding: 18px;
  border-radius: var(--radius);
}

.trust-strip strong {
  display: block;
  font-size: 1.55rem;
  font-family: "Poppins", sans-serif;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone-card {
  position: relative;
  width: min(390px, 88vw);
  min-height: 520px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(8, 22, 40, 0.94), rgba(10, 37, 66, 0.78)),
    radial-gradient(circle at top, rgba(53, 215, 255, 0.28), transparent 50%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.phone-top span {
  width: 86px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.approval-card {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(53, 215, 255, 0.2), rgba(68, 240, 183, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.approval-card small {
  color: var(--muted);
  font-weight: 700;
}

.approval-card strong {
  display: block;
  margin-top: 8px;
  font-size: 4.7rem;
  line-height: 1;
}

.score-bar {
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.score-bar span {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
}

.offer-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.offer-stack div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.offer-stack p {
  margin: 0;
  color: #dce9f8;
  font-weight: 700;
}

.bank-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.bank-dot.green {
  background: var(--mint);
  box-shadow: 0 0 24px var(--mint);
}

.bank-dot.amber {
  background: #ffcd6b;
  box-shadow: 0 0 24px #ffcd6b;
}

.hero-orbit {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(53, 215, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 18%;
  right: 8%;
}

.hero-orbit-two {
  bottom: 8%;
  left: 5%;
  width: 150px;
  height: 150px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.about-panel h2,
.cta-shell h2 {
  font-size: clamp(1.75rem, 3.4vw, 3.05rem);
  line-height: 1.12;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: 16px 16px 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(53, 215, 255, 0.38);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055));
}

.service-icon {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #041525;
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, var(--gold));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.image-placeholder {
  height: 168px;
  margin: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(53, 215, 255, 0.14), rgba(68, 240, 183, 0.08)),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, rgba(255, 255, 255, 0.08) 51%, transparent 52%);
}

.service-media {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 21, 0.05), rgba(5, 11, 21, 0.62));
  pointer-events: none;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.09);
  filter: saturate(1.08) contrast(1.05);
}

.service-card h3,
.glass-list h3,
.feature-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.about-panel,
.glass-list {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
}

.about-panel,
.glass-list {
  height: 100%;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.pill-list span {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #dff7ff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 700;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}

.step-row::before {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.85), rgba(47, 124, 255, 0.72), rgba(68, 240, 183, 0.8));
  opacity: 0.74;
  z-index: 0;
}

.feature-card {
  position: relative;
  z-index: 1;
  min-height: 214px;
  padding: 0 12px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
}

.feature-card span {
  display: inline-grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0 auto 22px;
  border: 3px solid rgba(53, 215, 255, 0.32);
  border-radius: 999px;
  color: #dff7ff;
  background: rgba(8, 24, 43, 0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  font-weight: 900;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover span {
  color: #06111f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  transform: scale(1.08);
  box-shadow: 0 18px 42px rgba(47, 124, 255, 0.32);
}

.feature-card h3 {
  max-width: 220px;
  margin-inline: auto;
}

.feature-card p {
  max-width: 245px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.why {
  position: relative;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border-radius: var(--radius);
}

.reason-item span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #062318;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  font-weight: 900;
}

.reason-item p {
  margin: 0;
  color: #eef7ff;
  font-weight: 800;
}

.cta-shell {
  position: relative;
  padding: clamp(32px, 7vw, 76px);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47, 124, 255, 0.68), rgba(251, 191, 36, 0.34) 46%, rgba(68, 240, 183, 0.28)),
    rgba(255, 255, 255, 0.09);
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% -10%;
  height: 220px;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(-4deg);
}

.cta-shell > * {
  position: relative;
}

.center-actions {
  justify-content: center;
}

.compact {
  min-width: 192px;
}

.site-footer {
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(2, 8, 15, 0.48), rgba(2, 8, 15, 0.82));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.28);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-mark {
  color: #ffffff;
  background: #050505;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.footer-company,
.footer-contact {
  min-height: 100%;
}

.footer-address {
  max-width: 680px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 10px 0;
  min-height: 48px;
  padding: 12px 16px;
  color: #dce9f8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-footer a span {
  color: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.footer-contact-btn.footer-call {
  color: #06111f;
  border-color: transparent;
  background: linear-gradient(135deg, #ffffff, var(--gold) 50%, #8defff);
}

.footer-contact-btn.footer-wa {
  border-color: rgba(68, 240, 183, 0.28);
  background: rgba(68, 240, 183, 0.12);
}

.footer-contact-btn.footer-site {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.site-footer a:hover {
  color: #fff;
  border-color: rgba(53, 215, 255, 0.28);
  background: rgba(53, 215, 255, 0.08);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8fa4ba;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 170ms;
}

.delay-3 {
  transition-delay: 250ms;
}

.float-slow {
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-row::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-pad {
    padding: 54px 0;
  }

  .site-header {
    padding: 8px 0;
  }

  .nav-shell {
    min-height: 0;
    gap: 12px;
    padding: 10px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .language-control {
    grid-column: 1 / -1;
  }

  .language-control select {
    width: 100%;
    max-width: none;
  }

  .icon-btn {
    min-width: 0;
    padding: 0 10px;
  }

  .icon-btn span:last-child {
    overflow-wrap: anywhere;
  }

  .nav-links {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9.2vw, 3rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-btn,
  .secondary-btn,
  .compact {
    width: 100%;
    min-width: 0;
  }

  .trust-strip,
  .service-grid,
  .feature-row,
  .reason-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .phone-card {
    min-height: 492px;
  }

  .service-card {
    min-height: 330px;
  }

  .section-heading {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
