* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --navy: #071a33;
  --navy-2: #0b2445;
  --primary: #1959ff;
  --primary-2: #3875ff;
  --cyan: #19b9d1;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228,231,236,.8);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -.5px;
  box-shadow: 0 8px 24px rgba(25, 89, 255, .25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 14px;
  letter-spacing: .2px;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  transition: .2s ease;
}

.nav a:not(.nav-cta):hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--navy);
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 80% 15%, rgba(25,89,255,.12), transparent 30%),
    radial-gradient(circle at 20% 5%, rgba(25,185,209,.08), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #8fb2ff;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -3.5px;
  margin: 0 0 24px;
  max-width: 760px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-copy > p {
  font-size: 19px;
  color: var(--muted);
  max-width: 660px;
  margin: 0 0 32px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 30px rgba(25,89,255,.24);
}

.btn-primary:hover {
  background: var(--primary-2);
}

.btn-secondary {
  background: rgba(255,255,255,.82);
  border-color: var(--line);
  color: var(--navy);
}

.btn-light {
  background: white;
  color: var(--navy);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.trust-row div {
  display: flex;
  flex-direction: column;
}

.trust-row strong {
  font-size: 15px;
}

.trust-row span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.hero-panel {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  background: linear-gradient(145deg, #091a31, #0d2d56);
  padding: 28px;
  box-shadow: 0 40px 90px rgba(7,26,51,.22);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -90px;
  bottom: -110px;
  background: rgba(25,185,209,.18);
  filter: blur(2px);
}

.panel-top {
  color: #b9c7da;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #4ee3a3;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(78,227,163,.12);
}

.dashboard-card {
  margin-top: 32px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(12px);
}

.dash-title {
  color: white;
  font-weight: 700;
  margin-bottom: 18px;
}

.dash-list {
  display: grid;
  gap: 13px;
}

.dash-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}

.dash-item .icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(56,117,255,.22);
  color: #9fb9ff;
  font-size: 12px;
  font-weight: 800;
}

.dash-item div:last-child {
  display: flex;
  flex-direction: column;
}

.dash-item strong {
  color: white;
  font-size: 13px;
}

.dash-item span {
  color: #9fb1c9;
  font-size: 11px;
  margin-top: 3px;
}

.mini-card {
  position: absolute;
  bottom: 28px;
  display: flex;
  gap: 11px;
  align-items: center;
  background: white;
  border-radius: 16px;
  padding: 12px 15px;
  min-width: 180px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.mini-card > span {
  font-size: 24px;
}

.mini-card div {
  display: flex;
  flex-direction: column;
}

.mini-card strong {
  font-size: 13px;
}

.mini-card small {
  color: var(--muted);
  font-size: 10px;
}

.mini-left { left: 28px; }
.mini-right { right: 28px; }

.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.logo-strip-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #7b8494;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
}

.section {
  padding: 110px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head.centered {
  grid-template-columns: 1fr;
  max-width: 780px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.section-head.centered .eyebrow {
  justify-content: center;
}

.section-head h2,
.expertise-grid h2,
.about-card h2,
.contact-section h2,
.cta-band h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -2.2px;
  margin: 0;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: white;
  min-height: 340px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15,23,42,.08);
  border-color: #c9d3e4;
}

.service-card.featured {
  background: linear-gradient(160deg, #0a2242, #0b3a67);
  color: white;
  border-color: transparent;
}

.service-number {
  font-size: 12px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 34px;
}

.featured .service-number {
  color: #83aaff;
}

.service-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
}

.featured p {
  color: #c2d0e2;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: #495267;
  font-size: 13px;
}

.featured ul {
  color: #e1e9f3;
}

.section-dark {
  background: var(--navy);
  color: white;
}

.expertise-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.expertise-grid .lead {
  color: #b4c2d5;
  font-size: 17px;
  max-width: 580px;
  margin: 24px 0 30px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 18px;
  border-radius: 18px;
}

.step-index {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(56,117,255,.24);
  color: #aac0ff;
  font-weight: 800;
}

.step div:last-child {
  display: flex;
  flex-direction: column;
}

.step strong {
  font-size: 14px;
}

.step span {
  color: #aebbd0;
  font-size: 12px;
  margin-top: 3px;
}

.countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.country-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(25,89,255,.06), transparent 35%),
    white;
}

.flag {
  font-size: 46px;
}

.country-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.4px;
}

.country-card h3 {
  font-size: 23px;
  line-height: 1.25;
  margin: 8px 0 12px;
}

.country-card p {
  color: var(--muted);
  font-size: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 600;
  background: #fbfcfe;
}

.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
}

.about-card,
.quote-card {
  border-radius: 28px;
  padding: 42px;
}

.about-card {
  background: white;
  border: 1px solid var(--line);
}

.about-badge {
  display: inline-flex;
  background: #eef4ff;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 22px;
}

.about-card > p {
  color: var(--muted);
  font-size: 16px;
}

.about-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.about-points div {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.about-points strong {
  font-size: 14px;
}

.about-points span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.quote-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1554e8, #0a2c63);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  font-size: 80px;
  line-height: .8;
  color: rgba(255,255,255,.25);
  font-weight: 800;
}

.quote-card p {
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: -.5px;
  margin: 40px 0;
}

.quote-author {
  display: flex;
  flex-direction: column;
}

.quote-author span {
  color: #b6c9ed;
  font-size: 12px;
  margin-top: 4px;
}

.cta-band {
  background: linear-gradient(135deg, #1959ff, #07397f);
  color: white;
  padding: 58px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 74px;
  align-items: start;
}

.contact-grid > div > p {
  color: var(--muted);
  max-width: 470px;
  font-size: 16px;
}

.contact-info {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-info div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info span {
  color: var(--muted);
  font-size: 12px;
}

.contact-info strong {
  text-align: right;
  font-size: 12px;
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d6dbe5;
  background: white;
  border-radius: 12px;
  padding: 14px 14px;
  font: inherit;
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #7aa0ff;
  box-shadow: 0 0 0 4px rgba(25,89,255,.08);
}

.consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
  color: var(--muted);
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.form-submit {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  margin: 12px 0 0;
}

.footer {
  background: #061528;
  color: white;
  padding: 64px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .brand-text small {
  color: #9cacbf;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid p {
  color: #8fa0b6;
  max-width: 360px;
  font-size: 13px;
}

.footer-grid > div > strong {
  margin-bottom: 8px;
  font-size: 13px;
}

.footer-grid > div > a:not(.brand) {
  color: #9cacbf;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 44px;
  padding-top: 20px;
  color: #77889e;
  font-size: 11px;
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px 12px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .expertise-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero {
    padding-top: 70px;
  }

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

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

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .countries {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 54px 0 52px;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -2.4px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-panel {
    min-height: auto;
    padding-bottom: 118px;
  }

  .mini-card {
    min-width: 0;
    width: calc(50% - 34px);
    padding: 10px;
  }

  .mini-left { left: 18px; }
  .mini-right { right: 18px; }

  .mini-card small {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .section-head h2,
  .expertise-grid h2,
  .about-card h2,
  .contact-section h2,
  .cta-band h2 {
    font-size: 38px;
  }

  .country-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .about-card,
  .quote-card {
    padding: 28px;
  }

  .quote-card p {
    font-size: 20px;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .logo-strip-inner {
    justify-content: center;
    padding: 20px 0;
  }
}


.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: #cfd6e2;
}

.btn-outline-light {
  color: white;
  border-color: rgba(255,255,255,.55);
  background: transparent;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.success-note {
  color: #0b8f55 !important;
  font-weight: 700;
}

.error-note {
  color: #b42318 !important;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px 11px 11px;
  border-radius: 999px;
  background: #101828;
  color: white;
  box-shadow: 0 18px 50px rgba(15,23,42,.24);
  font-size: 12px;
  font-weight: 800;
}

.wa-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: white;
  font-size: 10px;
}

.chatbot-launcher {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 80;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(25,89,255,.28);
  font-size: 21px;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 154px;
  z-index: 79;
  width: min(390px, calc(100vw - 28px));
  max-height: 560px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(15,23,42,.22);
}

.chatbot.open { display: flex; }

.chatbot-header {
  background: var(--navy);
  color: white;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header div {
  display: flex;
  flex-direction: column;
}

.chatbot-header strong { font-size: 13px; }
.chatbot-header span { color: #aebbd0; font-size: 10px; margin-top: 2px; }

.chatbot-header button {
  border: 0;
  background: transparent;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.chatbot-messages {
  padding: 16px;
  overflow-y: auto;
  min-height: 170px;
  max-height: 300px;
  background: #f8fafc;
}

.bot-message, .user-message {
  max-width: 86%;
  padding: 11px 13px;
  margin-bottom: 10px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
}

.bot-message {
  background: white;
  border: 1px solid var(--line);
}

.user-message {
  margin-left: auto;
  background: var(--primary);
  color: white;
}

.chatbot-quick {
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border-top: 1px solid var(--line);
}

.chatbot-quick button {
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.chatbot-quick button:hover {
  border-color: #9fb7ec;
  color: var(--primary);
}

.legal-page {
  min-height: 100vh;
  padding: 72px 0;
  background: var(--bg);
}

.legal-page .container {
  max-width: 850px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px;
}

.legal-page h1 {
  font-size: 42px;
  letter-spacing: -1.8px;
  margin: 24px 0;
}

.legal-page p {
  color: var(--muted);
}

@media (max-width:680px) {
  .whatsapp-float .wa-text { display:none; }
  .whatsapp-float { padding:10px; }
  .chatbot { right:14px; bottom:144px; }
  .chatbot-launcher, .whatsapp-float { right:14px; }
}
