:root {
  --blue: #0f6bdc;
  --blue-dark: #084da2;
  --green: #16a34a;
  --green-dark: #0e7a36;
  --yellow: #f4c430;
  --yellow-dark: #d6a500;
  --ink: #122033;
  --muted: #5a6779;
  --bg: #f7fafc;
  --white: #ffffff;
  --line: #dbe4ef;
  --shadow: 0 18px 40px rgba(17, 38, 68, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #eaf3ff 0%, #fffbe8 45%, #edfdf2 100%);
  padding-bottom: 44px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-dark);
}
.brand span {
  color: var(--green-dark);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 600;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  padding: 28px 0 20px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,107,220,0.14);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.25rem, 4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}
.btn-blue { background: var(--blue); color: white; }
.btn-yellow { background: var(--yellow); color: #1f2937; }
.btn-green { background: var(--green); color: white; }

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.mini-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.mini-card strong {
  display: block;
  margin-bottom: 4px;
}
.mini-card span {
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-panel {
  background: #0c1b2e;
  color: white;
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 22px 48px rgba(8, 22, 40, 0.26);
}
.panel-header {
  color: #9dd2ff;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 16px;
}
.service-list {
  display: grid;
  gap: 12px;
}
.service-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
}

.section {
  padding: 84px 0;
}
.section.alt {
  background: var(--bg);
}
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-head h2,
.split h2,
.contact-box h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-head p,
.split p,
.contact-box p {
  color: var(--muted);
  font-size: 1.03rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(17, 38, 68, 0.06);
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.card p { color: var(--muted); margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: start;
}
.benefits {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.benefit {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(17, 38, 68, 0.06);
}
.info-box {
  background: white;
  border-radius: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}
.tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .92rem;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  background: #091628;
  color: white;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 22px 50px rgba(9, 22, 40, 0.22);
}
.contact-box .eyebrow {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  color: #95f2b4;
}
.close-strong {
  color: #8fe286 !important;
  font-weight: 800;
  font-size: 1.1rem !important;
  margin-bottom: 6px;
}
.close-sub {
  color: #d6e3f1 !important;
  font-size: 0.96rem !important;
}
.contact-details {
  display: grid;
  gap: 14px;
}
.detail {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 18px;
}
.detail span {
  display: block;
  color: #c6d3e2;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.detail strong { font-size: 1.02rem; }
.detail a { color: white; }
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 18px 0 28px;
  background: white;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-box,
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-cards,
  .footer-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }
  .section,
  .hero {
    overflow-x: hidden;
  }
  .btn {
    width: 100%;
  }
}
