:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-2: #eef7ff;
  --text: #142033;
  --muted: #65738a;
  --primary: #22c6b8;
  --primary-dark: #129eac;
  --secondary: #7c63f4;
  --accent: #dffcf7;
  --border: #dce8f5;
  --shadow: 0 24px 70px rgba(29, 54, 87, 0.14);
  --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(--text);
  background:
    radial-gradient(circle at 15% 10%, #e4fff9 0, transparent 30%),
    radial-gradient(circle at 90% 5%, #eee7ff 0, transparent 28%),
    var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.8);
  border-bottom: 1px solid rgba(220, 232, 245, 0.75);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(34, 198, 184, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.lang {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  padding: 0;
}

/* DROPDOWN - DESKTOP BASE */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.dropdown-menu {
  display: none;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  white-space: nowrap;
  color: #1f2937;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(124, 58, 237, 0.08);
}

/* BUTTONS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 34px rgba(34, 198, 184, 0.25);
}

.button.secondary {
  background: white;
  border-color: var(--border);
  color: var(--text);
}

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

/* HERO */
.hero {
  padding: 86px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #126f76;
  background: rgba(34, 198, 184, 0.12);
  border: 1px solid rgba(34, 198, 184, 0.22);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin: 24px 0 24px;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 690px;
  margin: 0 0 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

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

.trust-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.trust-item strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.mockup {
  position: relative;
}

.icon-card {
  background: linear-gradient(145deg, white, #f3fbff);
  border: 1px solid var(--border);
  border-radius: 44px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.icon-card img {
  border-radius: 38px;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 48px rgba(29, 54, 87, 0.18);
}

.float-card.one {
  right: -16px;
  top: 52px;
  width: 210px;
}

.float-card.two {
  left: -20px;
  bottom: 50px;
  width: 230px;
}

.float-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.float-text {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* SECTIONS */
.section {
  padding: 82px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.eyebrow {
  color: var(--primary-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 10px 0 16px;
}

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

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

.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 40px rgba(29, 54, 87, 0.06);
}

.card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #eee8ff);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.panel {
  background: linear-gradient(145deg, #10243d, #122c46);
  border-radius: 36px;
  padding: 30px;
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.schedule {
  display: grid;
  gap: 12px;
}

.slot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.slot b {
  display: block;
}

.slot span {
  color: #b9c9da;
  font-size: 0.92rem;
}

.status {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34, 198, 184, 0.18);
  color: #8ff7eb;
  font-weight: 900;
  font-size: 0.78rem;
  white-space: nowrap;
}

.benefits {
  display: grid;
  gap: 16px;
}

.benefit {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
}

.check {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 900;
}

.cta {
  text-align: center;
  background: linear-gradient(135deg, #e8fffb, #f0ebff);
  border: 1px solid var(--border);
  border-radius: 42px;
  padding: 58px 28px;
  box-shadow: var(--shadow);
}

.cta h2 {
  margin-top: 0;
}

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

details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 20px;
}

summary {
  font-weight: 900;
  cursor: pointer;
}

details p {
  color: var(--muted);
  margin-bottom: 0;
}

/* MISC */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #6b7280;
}

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

.breadcrumb a:hover {
  color: #7c3aed;
}

.sector-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sector-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: #4c1d95;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.footer {
  padding: 44px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* DESKTOP NAV */
@media (min-width: 901px) {
  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-toggle {
    padding: 8px 0;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    padding: 10px;
    z-index: 50;
  }

  .dropdown:hover .dropdown-menu {
    display: grid;
    gap: 4px;
  }

  .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 12px;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-inner {
    height: 78px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a,
  .dropdown {
    width: 100%;
  }

  .nav-links > a {
    display: flex;
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
  }

  .dropdown {
    display: block;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    display: block;
    padding: 14px 40px;
    border-radius: 0;
  }

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

  .float-card {
    position: static;
    width: auto !important;
    margin-top: 14px;
  }

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

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

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

  .hero {
    padding-top: 54px;
  }
}