* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f7fb;
  --surface: rgba(255,255,255,0.78);
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --blue: #1359b6;
  --blue2: #2b8ce6;
  --green: #7fca14;
  --green2: #44a820;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(19, 89, 182, 0.09), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(127, 202, 20, 0.12), transparent 20%),
    linear-gradient(180deg, #fbfcfe 0%, #f3f6fb 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 170px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 0 20px 20px;
  flex-direction: column;
  gap: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 32px;
}

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

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}

.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  max-width: 740px;
}

.hero p,
.section-head p,
.advantage-card p,
.service-card p,
.timeline-item p,
.cta-band p,
.contact-section p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.hero-copy > p {
  max-width: 720px;
  margin-top: 18px;
}

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

.btn {
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue2) 55%, var(--green));
  box-shadow: 0 16px 32px rgba(22, 96, 184, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
}

.btn-sm {
  padding: 10px 16px;
}

.btn-block {
  width: 100%;
}

.hero-metrics {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-metrics div {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-metrics strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
}

.glass-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.6);
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.94));
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 25px 70px rgba(18, 31, 53, 0.12);
}

.glass-card h3 {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: 26px;
}

.glass-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.mini-pill {
  display: inline-block;
  background: rgba(19,89,182,0.08);
  color: var(--blue);
  border: 1px solid rgba(19,89,182,0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  pointer-events: none;
}

.hero-glow-left {
  background: rgba(19,89,182,0.18);
  top: -120px;
  left: -120px;
}

.hero-glow-right {
  background: rgba(127,202,20,0.22);
  bottom: -120px;
  right: -120px;
}

.trusted {
  padding: 16px 0 0;
}

.trusted-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.trusted-row > span {
  color: var(--muted);
  font-weight: 700;
}

.trusted-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trusted-tags span {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.54), rgba(255,255,255,0.38));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 12px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

.service-card,
.advantage-card {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-card h3,
.advantage-card h3,
.timeline-item h3 {
  margin: 10px 0;
  font-size: 24px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

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

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.timeline-item span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.cta-band {
  padding: 24px 0 0;
}

.cta-band-inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 34px 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(17,71,147,0.95), rgba(42,140,230,0.9) 52%, rgba(127,202,20,0.92));
  color: #fff;
  box-shadow: 0 30px 80px rgba(17, 71, 147, 0.25);
}

.cta-band .eyebrow,
.cta-band p {
  color: rgba(255,255,255,0.88);
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-list strong {
  color: var(--text);
}

.contact-list span {
  color: var(--muted);
}

.contact-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  margin-top: 8px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
}

.footer-brand img {
  width: 170px;
  height: auto;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .cards-3,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.open {
    display: flex;
  }

  .brand img {
    width: 150px;
    height: auto;
  }

  .footer-brand img {
    width: 150px;
    height: auto;
  }
}

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

  .brand img {
    width: 135px;
    height: auto;
  }

  .footer-brand img {
    width: 135px;
    height: auto;
  }

  .nav {
    min-height: 58px;
    gap: 10px;
  }

  .menu-toggle {
    font-size: 24px;
    padding: 4px 8px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .section {
    padding: 72px 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .contact-list div {
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}