:root {
  --navy: #050063;
  --navy-2: #090071;
  --navy-3: #11108c;
  --yellow: #ffcc00;
  --yellow-dark: #e6b300;
  --ink: #111827;
  --muted: #657084;
  --line: #e8ecf4;
  --soft: #f7f8fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 0, 99, .18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  background: var(--yellow);
  color: var(--navy);
  padding: 12px 16px;
  z-index: 9999;
  border-radius: 12px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(5,0,99,.08);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand img { width: 108px; height: auto; }
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}
.main-nav a {
  position: relative;
  padding: 8px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 16px 30px rgba(5,0,99,.18);
}
.header-cta:hover { transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 660px;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,0,99,1) 0%, rgba(5,0,99,.98) 28%, rgba(5,0,99,.52) 56%, rgba(5,0,99,.05) 100%),
    url("assets/hero-desktop.png") center / cover no-repeat;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: auto -15% -40% -15%;
  height: 440px;
  background: radial-gradient(circle, rgba(255,204,0,.26), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}
.hero-inner {
  min-height: 660px;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: min(610px, 100%);
  color: var(--white);
  padding: 76px 0;
}
.eyebrow, .section-kicker, .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow::before, .section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255,204,0,.14);
}
.hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(40px, 5.8vw, 78px);
  line-height: .94;
  letter-spacing: -.06em;
  max-width: 640px;
}
.hero p {
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 1.55vw, 21px);
  max-width: 560px;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}
.btn img { width: 22px; height: 22px; object-fit: contain; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 18px 34px rgba(255,204,0,.24);
}
.btn-primary:hover { background: #ffd735; }
.btn-ghost {
  border-color: rgba(255,255,255,.22);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-points span {
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}
.security-strip {
  overflow: hidden;
  background: #040045;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.strip-track span {
  white-space: nowrap;
  padding: 12px 34px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
@keyframes marquee { to { transform: translateX(-33.333%); } }

.section { padding: 94px 0; }
.section-soft { padding: 84px 0; background: var(--soft); }
.section-heading {
  text-align: center;
  width: min(720px, 100%);
  margin: 0 auto 44px;
}
.section-heading.compact { margin-bottom: 34px; }
.section-kicker { color: var(--navy); margin-bottom: 10px; }
.section-kicker.light { color: var(--yellow); }
.section-kicker.light::before { background: var(--white); box-shadow: 0 0 0 6px rgba(255,255,255,.14); }
.section-heading h2, .about h2, .faq-intro h2, .contact h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.045em;
}
.section-heading p, .faq-intro p { color: var(--muted); margin: 0; font-size: 17px; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.solution-card {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.solution-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,0,99,.05), rgba(5,0,99,.38) 42%, rgba(5,0,99,.96));
}
.solution-card:hover img { transform: scale(1.055); }
.solution-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: var(--white);
}
.solution-content span {
  display: inline-flex;
  background: rgba(255,204,0,.16);
  color: var(--yellow);
  border: 1px solid rgba(255,204,0,.28);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.solution-content h3 { margin: 12px 0 8px; font-size: clamp(22px, 2.6vw, 32px); line-height: 1.02; }
.solution-content p { margin: 0 0 14px; color: rgba(255,255,255,.82); }
.text-link {
  display: inline-flex;
  color: var(--yellow);
  font-weight: 900;
  align-items: center;
  gap: 8px;
}
.text-link::after { content: "→"; transition: transform .25s ease; }
.text-link:hover::after { transform: translateX(4px); }
.center-actions { display: flex; justify-content: center; margin-top: 34px; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(88px, 1fr));
  gap: 14px;
  align-items: center;
}
.partners-grid img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.partners-grid img:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(5,0,99,.12); }

.services-list {
  display: grid;
  gap: 26px;
}
.service-card {
  display: grid;
  grid-template-columns: 38% 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 4vw, 58px);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,204,0,.14);
  filter: blur(8px);
}
.service-card:nth-child(even) .service-media { order: 2; }
.service-card:nth-child(even) { grid-template-columns: 1fr 38%; }
.service-media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.service-media img {
  width: min(260px, 100%);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0,0,0,.28);
}
.service-copy { position: relative; z-index: 1; }
.tag {
  background: rgba(255,204,0,.14);
  color: var(--yellow);
  border: 1px solid rgba(255,204,0,.24);
  padding: 7px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.service-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: -.04em;
}
.service-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.86);
}
.service-copy li { display: flex; gap: 10px; align-items: flex-start; }
.service-copy li::before { content: "✓"; color: var(--yellow); font-weight: 900; }

.about {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white), var(--soft));
}
.about-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
  background: var(--navy);
  color: var(--white);
  border-radius: 36px;
  padding: clamp(32px, 5vw, 72px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.about-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,204,0,.18);
  filter: blur(4px);
}
.about-logo {
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  aspect-ratio: 1;
  padding: 54px;
  position: relative;
  z-index: 1;
}
.about-copy { position: relative; z-index: 1; }
.about-copy p { color: rgba(255,255,255,.84); margin: 0 0 26px; font-size: 18px; }

.faq-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.faq-intro { position: sticky; top: 118px; }
.faq-intro p { margin-bottom: 24px; }
.accordion { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(17,24,39,.05);
}
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}
.faq-item button::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}
.faq-item.is-open button::after { content: "–"; }
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-content > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  padding: 0 24px;
}
.faq-item.is-open .faq-content { grid-template-rows: 1fr; }
.faq-item.is-open .faq-content > p { padding-bottom: 22px; }

.contact {
  padding: 0 0 92px;
  background: var(--white);
}
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255,204,0,.25), transparent 38%),
    var(--navy);
  color: var(--white);
  border-radius: 36px;
  padding: clamp(32px, 5vw, 68px);
  box-shadow: var(--shadow);
}
.contact-copy p { color: rgba(255,255,255,.84); margin: 0 0 26px; font-size: 18px; }
.contact-info {
  display: grid;
  gap: 14px;
}
.contact-info > div {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
}
.contact-info strong {
  display: block;
  color: var(--yellow);
  margin-bottom: 6px;
}
.contact-info p { margin: 0; color: rgba(255,255,255,.82); }
.contact-info a { color: var(--white); font-weight: 900; }

.site-footer {
  background: #040045;
  color: rgba(255,255,255,.8);
  padding: 58px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 42px;
}
.footer-brand img { width: 148px; background: var(--white); border-radius: 24px; padding: 10px; }
.footer-brand p { margin: 16px 0 0; max-width: 330px; }
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}
.site-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
  transition: color .25s ease;
}
.site-footer a:hover { color: var(--yellow); }
.social-link span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
}
.social-link img { width: 18px; height: 18px; object-fit: contain; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}
.footer-bottom a { margin: 0; color: var(--white); font-weight: 800; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 18px 38px rgba(37,211,102,.38);
  transition: transform .25s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.04); }
.floating-whatsapp img { width: 34px; height: 34px; object-fit: contain; }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .partners-grid { grid-template-columns: repeat(5, minmax(120px, 1fr)); }
  .main-nav { gap: 18px; }
  .header-cta { display: none; }
}
@media (max-width: 860px) {
  .container { width: min(100% - 28px, 680px); }
  .header-inner { min-height: 76px; }
  .brand img { width: 94px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    margin: 0;
    display: grid;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(5,0,99,.16);
    padding: 10px;
    transform-origin: top;
    transform: scaleY(.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scaleY(1);
  }
  .main-nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }
  .main-nav a:hover { background: var(--soft); }
  .main-nav a::after { display: none; }

  .hero {
    min-height: 790px;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(5,0,99,.12) 0%, rgba(5,0,99,.45) 38%, rgba(5,0,99,1) 69%),
      url("assets/hero-mobile.png") center top / cover no-repeat;
  }
  .hero-inner {
    min-height: 790px;
    align-items: flex-end;
  }
  .hero-copy {
    text-align: center;
    padding: 360px 0 52px;
    margin-inline: auto;
  }
  .hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .hero-actions, .hero-points { justify-content: center; }
  .btn { width: 100%; max-width: 380px; }
  .solution-grid, .faq-layout, .contact-card, .about-card, .footer-grid { grid-template-columns: 1fr; }
  .section, .section-soft { padding: 70px 0; }
  .solution-card { min-height: 470px; }
  .partners-grid { grid-template-columns: repeat(3, minmax(92px, 1fr)); }
  .service-card, .service-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .service-card:nth-child(even) .service-media { order: 0; }
  .service-media { justify-content: flex-start; }
  .service-media img { width: 180px; }
  .about-logo {
    width: min(280px, 86%);
    margin-inline: auto;
  }
  .faq-intro { position: static; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .container { width: calc(100% - 22px); }
  .hero { min-height: 760px; }
  .hero-inner { min-height: 760px; }
  .hero-copy { padding-top: 325px; }
  .hero p { font-size: 16px; }
  .hero-actions { gap: 10px; }
  .solution-card { min-height: 430px; border-radius: 24px; }
  .solution-content { left: 20px; right: 20px; bottom: 22px; }
  .partners-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .service-card, .about-card, .contact-card { border-radius: 26px; padding: 26px; }
  .service-media img { width: 156px; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .floating-whatsapp img { width: 30px; height: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
