:root {
  --bg: #ffffff;
  --ink: #101828;
  --muted: #667085;
  --line: #e7eaf0;
  --soft: #f6f8fb;
  --accent: #1155ff;
  --accent-dark: #0b36a8;
  --accent-soft: #eaf1ff;
  --green: #15b57a;
  --orange: #ff9f1c;
  --shadow: 0 24px 70px rgba(16, 24, 40, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.site-header {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 20%, rgba(17,85,255,.13), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(21,181,122,.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.02em; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--green));
  box-shadow: 0 14px 30px rgba(17,85,255,.2);
}
.brand-text { font-size: 1.05rem; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 10px 14px; color: #344054; font-weight: 700; border-radius: 999px; }
.nav-links a:hover { background: var(--accent-soft); color: var(--accent-dark); }
.nav-cta { background: var(--ink) !important; color: #fff !important; }
.menu-toggle { display: none; border: 0; background: var(--ink); color: #fff; border-radius: 12px; padding: 10px 13px; font-size: 1.2rem; }

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 46px;
  padding: 44px 0 80px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .16em;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); line-height: .9; letter-spacing: -.08em; margin-bottom: 28px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.055em; margin-bottom: 18px; }
h3 { font-size: 1.3rem; letter-spacing: -.03em; margin-bottom: 10px; }
.hero-subtitle { font-size: clamp(1.2rem, 2vw, 1.55rem); color: var(--muted); max-width: 620px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; box-shadow: 0 18px 34px rgba(17,85,255,.24); }
.btn.secondary { background: #fff; border: 1px solid var(--line); color: var(--ink); }

.hero-card {
  position: relative;
  border: 1px solid rgba(231,234,240,.9);
  border-radius: 38px;
  padding: clamp(24px, 5vw, 46px);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255,159,28,.17);
}
.package-visual { height: 250px; position: relative; margin-bottom: 20px; }
.package { position: absolute; display: block; border-radius: 22px; box-shadow: 0 20px 40px rgba(16,24,40,.18); }
.package::before { content: ""; position: absolute; left: 18%; right: 18%; top: 0; height: 10px; background: rgba(255,255,255,.45); border-radius: 0 0 12px 12px; }
.package-one { width: 150px; height: 115px; left: 8%; top: 82px; background: linear-gradient(135deg, var(--orange), #ffd166); transform: rotate(-8deg); }
.package-two { width: 190px; height: 145px; right: 8%; top: 38px; background: linear-gradient(135deg, var(--accent), #62a1ff); transform: rotate(8deg); }
.package-three { width: 120px; height: 95px; left: 38%; bottom: 4px; background: linear-gradient(135deg, var(--green), #82e4bb); transform: rotate(2deg); }
.mini-list { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-list span { padding: 8px 12px; border-radius: 999px; background: var(--soft); font-weight: 900; color: #344054; }

.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 92px 0; }
.section-heading { max-width: 800px; margin-bottom: 36px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.intro-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 20px; }
.feature-card, .platform-card, .contact-card, .banner-card, .coverage-list, .map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(16,24,40,.07);
}
.feature-card { padding: 30px; min-height: 260px; }
.large-card { background: linear-gradient(135deg, #101828, #1f3a73); color: #fff; }
.large-card p { color: rgba(255,255,255,.78); }
.icon-circle { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 20px; background: var(--accent-soft); font-size: 1.8rem; margin-bottom: 28px; }
.large-card .icon-circle { background: rgba(255,255,255,.12); }
.feature-card p, .platform-card p, .coverage-list li, .contact-card p, .banner-card p { color: var(--muted); }

.platforms { background: linear-gradient(180deg, #fff, #f8fbff); width: 100%; max-width: none; padding-left: max(16px, calc((100% - 1180px)/2)); padding-right: max(16px, calc((100% - 1180px)/2)); }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.platform-card { padding: 34px; position: relative; overflow: hidden; min-height: 230px; }
.platform-card::after { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; right: -60px; bottom: -70px; background: var(--accent-soft); }
.platform-card.featured { background: linear-gradient(135deg, var(--accent), var(--green)); color: #fff; transform: translateY(-12px); }
.platform-card.featured p { color: rgba(255,255,255,.84); }
.platform-badge { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 15px; background: var(--soft); color: var(--accent); font-weight: 900; margin-bottom: 28px; }
.featured .platform-badge { background: rgba(255,255,255,.18); color: #fff; }

.coverage-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: stretch; }
.map-card {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17,85,255,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17,85,255,.08) 1px, transparent 1px),
    #ffffff;
  background-size: 48px 48px;
}
.route-line { position: absolute; left: 12%; right: 12%; top: 50%; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--green), var(--orange)); transform: rotate(-12deg); opacity: .85; }
.pin { position: absolute; padding: 9px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(16,24,40,.12); font-weight: 900; font-size: .9rem; }
.pin::before { content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); margin-right: 8px; }
.pin-one { left: 8%; top: 18%; }
.pin-two { left: 42%; top: 12%; }
.pin-three { right: 8%; top: 25%; }
.pin-four { left: 13%; bottom: 26%; }
.pin-five { left: 43%; bottom: 16%; }
.pin-six { right: 8%; bottom: 30%; }
.coverage-list { padding: 34px; }
.coverage-list h3 { margin-top: 20px; }
.coverage-list ul { margin: 0 0 24px; padding: 0; list-style: none; }
.coverage-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 800; }

.banner-section { padding: 28px 16px 72px; }
.banner-card { width: min(1180px, 100%); margin: 0 auto; padding: clamp(30px, 5vw, 54px); background: linear-gradient(135deg, #101828, #102b67); color: #fff; position: relative; overflow: hidden; }
.banner-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -90px; top: -90px; border-radius: 50%; background: rgba(255,255,255,.08); }
.banner-card p { color: rgba(255,255,255,.78); }
.banner-card .eyebrow { color: #93c5ff; }

.contact { padding-top: 24px; }
.contact-card { padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer { border-top: 1px solid var(--line); padding: 28px 16px; text-align: center; background: #fff; color: var(--muted); }
.footer p { margin: 4px 0; }

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .nav-links { position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 12px; box-shadow: var(--shadow); display: none; }
  .nav-links.open { display: flex; }
  .hero, .intro-grid, .platform-grid, .coverage-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 18px; }
  .platform-card.featured { transform: none; }
  .contact-card { flex-direction: column; align-items: flex-start; }
  .pin { font-size: .78rem; }
}

@media (max-width: 560px) {
  .brand-text { font-size: .92rem; }
  h1 { font-size: 3.2rem; }
  .section { padding: 64px 0; }
  .package-visual { height: 210px; }
  .coverage-list, .feature-card, .platform-card, .contact-card { padding: 24px; }
  .map-card { min-height: 520px; }
  .pin { max-width: 210px; }
  .pin-one { left: 6%; top: 10%; }
  .pin-two { left: 10%; top: 24%; }
  .pin-three { left: 8%; right: auto; top: 38%; }
  .pin-four { left: 8%; bottom: 34%; }
  .pin-five { left: 8%; bottom: 20%; }
  .pin-six { left: 8%; right: auto; bottom: 6%; }
  .route-line { left: 44%; right: auto; top: 12%; width: 7px; height: 78%; transform: none; }
}
