:root {
  --blue: #1a73e8;
  --blue-dark: #1258b8;
  --navy: #0b1b33;
  --navy-2: #071224;
  --ink: #122033;
  --muted: #5c6570;
  --line: #e6e8eb;
  --paper: #f5f7fb;
  --white: #fff;
  --sans: "DM Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
}
.logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 10px;
  border-radius: 999px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a { padding: 6px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.drop { position: relative; }
.drop > span { cursor: default; padding: 6px 0; display: inline-block; }
.drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border-radius: 10px;
}
.drop:hover .drop-menu { display: block; }
.drop-menu a {
  display: block;
  padding: 8px 14px;
  font-weight: 500;
}
.drop-menu a:hover { background: var(--paper); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 20px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
}
.btn:hover { background: var(--blue-dark); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff !important;
}

.hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  overflow: hidden;
  background: #071224 url("../img/hero-ai.png") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,36,.42), rgba(7,18,36,.78));
  z-index: 0;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px 100px;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide > * { position: relative; z-index: 1; max-width: 860px; }
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #cfe3ff;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 700;
}
.hero p {
  font-size: 16px;
  margin: 0 0 24px;
  color: #d7e4f5;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
}
.hero-prev { left: 18px; }
.hero-next { right: 18px; }

.hero-stats {
  position: absolute;
  left: 0; right: 0; bottom: 72px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #cfe3ff;
}
.hero-stats b { display: block; font-size: 22px; color: #fff; }

.trusted {
  background: var(--navy-2);
  color: #9eb0c8;
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trusted strong { color: #fff; margin-right: 12px; }

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}
.media-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.media-grid.reverse { grid-template-columns: .9fr 1.1fr; }
.media-grid.reverse img { order: 2; }
.media-copy h2 { margin-top: 0; }

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}
.split .left { background: var(--blue); color: #fff; padding: 56px 40px; }
.split .right { background: var(--navy); color: #fff; padding: 56px 40px; }
.kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0 0 10px;
}
.split h2 { font-size: 28px; margin: 0 0 16px; }
.split p { margin: 0; opacity: .95; }

.section { padding: 72px 0; }
.section h2 {
  font-size: 32px;
  margin: 0 0 12px;
  color: var(--navy);
}
.center { text-align: center; }
.muted { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.card {
  border: 1px solid var(--line);
  padding: 28px 24px;
  background: #fff;
  border-radius: 12px;
}
.card h3 { margin: 0 0 10px; color: var(--navy); }
.card p { color: var(--muted); margin: 0 0 16px; }
.link { color: var(--blue); font-weight: 700; }

.band { background: var(--paper); }
.acc { max-width: 760px; margin: 28px auto 0; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.acc-body { display: none; padding: 0 0 16px; color: var(--muted); }
.acc-item.open .acc-body { display: block; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  background: var(--navy);
  color: #fff;
  padding: 28px 16px;
  text-align: center;
  border-radius: 12px;
}
.stat b { display: block; font-size: 32px; }
.cta-band {
  background: var(--navy-2);
  color: #fff;
  text-align: center;
  padding: 64px 20px;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }

.prose { max-width: 800px; }
.prose h2 { margin-top: 28px; font-size: 22px; }
.prose ul { padding-left: 18px; color: var(--muted); }

footer {
  background: #111820;
  color: #d5dbe3;
  padding: 48px 0 20px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 28px;
}
footer h3 { color: #fff; margin: 0 0 12px; }
footer a:hover { color: #8cb8ff; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin: 0 0 8px; }
.form input, .form textarea {
  width: 100%;
  margin: 0 0 10px;
  padding: 10px 12px;
  border: 1px solid #334155;
  background: #1a2330;
  color: #fff;
  border-radius: 8px;
}
.form.light input, .form.light textarea {
  background: #fff;
  color: #111;
  border: 1px solid #d0d5dd;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
}
.copy {
  border-top: 1px solid #2a3340;
  margin-top: 28px;
  padding-top: 14px;
  font-size: 12px;
  color: #8b95a3;
}

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 22px;
  z-index: 50;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
}
.page-hero h1 { margin: 0; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 72px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .drop-menu { position: static; display: block; box-shadow: none; border: 0; }
  .split, .cards, .stats, .foot-grid, .media-grid, .media-grid.reverse { grid-template-columns: 1fr; }
  .media-grid.reverse img { order: 0; }
  .media-grid img { height: 220px; }
  .logo-img { height: 68px; }
  .hero-prev, .hero-next { display: none; }
  .hero { min-height: 70vh; }
  .hero-slide { padding: 64px 20px 120px; }
  .hero-stats { bottom: 20px; gap: 16px; }
}
