:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f3f6fb;
  --text: #152238;
  --muted: #526179;
  --line: #dbe3ef;
  --primary: #1f66d8;
  --primary-deep: #1752af;
  --shadow: 0 10px 30px rgba(15, 40, 88, 0.08);
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --container: min(92vw, 1180px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 8%, rgba(31, 102, 216, 0.09) 0%, rgba(31, 102, 216, 0) 35%),
    radial-gradient(circle at 12% 23%, rgba(47, 119, 233, 0.08) 0%, rgba(47, 119, 233, 0) 34%);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section:nth-of-type(even) {
  background: #fbfcfe;
}

.section-head {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-head p {
  color: var(--muted);
  margin-top: 8px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2d6ded;
  margin: 0;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.14;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin-bottom: 12px;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

ul {
  padding-left: 18px;
  margin-bottom: 0;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 170px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  font-weight: 600;
  color: #2e466f;
}

.site-nav .btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 10px;
  border: 1px solid #2f66bf;
  background: #2a63c2;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav .btn-nav:hover {
  border-color: #2557a8;
  background: #2358af;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(35, 88, 175, 0.24);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: #1d4ca5;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #1d4ca5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open .burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .burger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  min-height: 48px;
  padding: 0 18px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(31, 102, 216, 0.24);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--primary-deep);
  box-shadow: none;
}

.btn-small {
  min-height: 42px;
}

.btn.full {
  width: 100%;
}

.hero {
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
}

.lead {
  max-width: 620px;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

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

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.chips li {
  border: 1px solid var(--line);
  color: #23406c;
  background: #f9fbff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-media {
  min-height: 500px;
  position: relative;
}

.shot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: absolute;
}

.shot-main {
  left: 4%;
  top: 8%;
  width: 88%;
  height: 68%;
}

.shot-top {
  width: 40%;
  height: auto;
  right: 8px;
  top: 0;
}

.shot-bottom {
  width: 40%;
  height: auto;
  left: 8px;
  bottom: 6%;
}

.shot-top img,
.shot-bottom img {
  width: 100%;
  height: auto;
  object-fit: initial;
  background: transparent;
}

.trust-row {
  padding-top: 32px;
}

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

.trust-grid p {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  margin: 0;
  padding: 16px;
  font-weight: 600;
  color: #294670;
}

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

.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(15, 40, 88, 0.05);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 40, 88, 0.08);
}

.icon-card {
  min-height: 200px;
}

.gallery-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: min(85%, 1180px);
  margin-inline: auto;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.42s ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
}

.gallery-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #1f4c96;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-nav:hover {
  background: #f4f8ff;
  border-color: #b8cdee;
}

.gallery-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  width: min(85%, 1180px);
  margin-inline: auto;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #c8d7ee;
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.gallery-dot.is-active {
  width: 22px;
  background: #2a63c2;
}

.gallery-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 40, 88, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 40, 88, 0.08);
}

.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gallery-card h3 {
  padding: 12px 14px 14px;
  margin: 0;
  font-size: 1rem;
}

.capabilities-showcase {
  background: #f5f8fd;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ops-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  align-items: start;
}

.ops-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 40, 88, 0.06);
}

.ops-visual img {
  aspect-ratio: 16 / 10;
}

.ops-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
}

.ops-tags span {
  border: 1px solid var(--line);
  background: #f7faff;
  color: #29456f;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ops-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 14px;
  box-shadow: 0 6px 16px rgba(15, 40, 88, 0.05);
}

.ops-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.ops-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.timeline .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 18px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  background: #eff4fc;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 22px 16px;
  text-align: center;
}

.proof-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 6px;
  color: var(--primary-deep);
}

.proof-card p {
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(13, 56, 146, 0.06);
}

.price {
  font-size: 2rem;
  color: var(--primary-deep);
  font-weight: 800;
}

.faq {
  background: #f7f9fd;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: clip;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font: inherit;
  font-weight: 700;
  color: #29456f;
  cursor: pointer;
}

.faq-icon {
  color: var(--primary-deep);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-answer {
  padding: 0 18px 16px;
}

.faq-answer p {
  margin: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(13, 56, 146, 0.06);
  display: grid;
  gap: 12px;
}

.lead-form label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f488d;
  display: grid;
  gap: 6px;
}

.lead-form input {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid #cde0ff;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

.lead-form input:focus {
  outline: 2px solid rgba(21, 101, 255, 0.2);
  border-color: #3a7cff;
}

.fineprint {
  font-size: 0.82rem;
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f3f7fd;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.in-view,
  .card,
  .gallery-card,
  .btn {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.footer-grid {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-grid p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }

  .hero-grid,
  .ops-layout,
  .pricing-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 470px;
  }

  .shot-main {
    left: 4%;
    top: 10%;
    width: 88%;
    height: 66%;
  }

  .shot-top {
    width: 42%;
    height: auto;
    right: 8px;
  }

  .shot-bottom {
    width: 42%;
    height: auto;
    left: 8px;
    bottom: 6%;
  }

  .gallery-card img {
    height: auto;
  }

  .three-up,
  .timeline .steps,
  .proof-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100vw - 32px), var(--container));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    display: none;
  }

  .site-nav a {
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 8px;
  }

  .site-nav a:not(.btn-nav):hover {
    background: #f4f8ff;
  }

  .site-nav .btn-nav {
    width: 100%;
    min-height: 42px;
    margin-top: 4px;
  }

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

  .gallery-card img {
    height: auto;
  }

  .gallery-card picture {
    display: block;
    width: 100%;
  }

  .hero-media {
    min-height: 420px;
  }

  .shot-main {
    left: 2%;
    top: 12%;
    width: 96%;
    height: 62%;
  }

  .shot-top {
    width: 46%;
    height: auto;
    right: 6px;
    top: 0;
  }

  .shot-bottom {
    width: 46%;
    height: auto;
    left: 6px;
    bottom: 8%;
  }

  .trust-grid,
  .two-up,
  .three-up,
  .ops-grid,
  .timeline .steps,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .gallery-slider {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
  }

  .gallery-nav {
    display: inline-flex;
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
    justify-self: center;
  }

  .footer-grid {
    min-height: 90px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 12px 0;
  }
}

@media (min-width: 1500px) {
  :root {
    --container: min(88vw, 1360px);
  }

  .section {
    padding: 88px 0;
  }

  .hero-media {
    min-height: 520px;
  }
}
