:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #eef4fb;
  --ink: #0c1b2a;
  --muted: #5d7187;
  --line: rgba(13, 29, 46, 0.1);
  --brand: #1c6cff;
  --brand-dark: #0f4fd8;
  --accent: #16b9c8;
  --dark: #08131f;
  --dark-soft: #0f2134;
  --shadow: 0 22px 70px rgba(8, 28, 48, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

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

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

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

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--surface-2);
}

.section-dark {
  background: var(--dark);
  color: #f7fbff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 249, 252, 0.78);
  border-bottom: 1px solid rgba(12, 27, 42, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 35% 35%, #ffffff 0 16%, transparent 17%),
    linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 10px 24px rgba(28, 108, 255, 0.28);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(28, 108, 255, 0.22);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.section-dark .button-ghost,
.contact-card .button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #7ec7ff;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.split-grid h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.hero-proof div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1rem;
}

.hero-proof span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #dfe8f2;
}

.hero-image {
  min-height: 560px;
}

.hero-image img {
  height: 560px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-card strong {
  margin-top: 4px;
}

.card-one {
  left: -24px;
  bottom: 38px;
}

.card-two {
  right: -20px;
  top: 28px;
}

.logo-strip {
  padding: 28px 0;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.strip-items span {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading h2,
.story-copy h2,
.split-grid h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

.section-dark .section-lead {
  color: rgba(247, 251, 255, 0.72);
}

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

.feature-card,
.benchmark-card,
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-card {
  padding: 26px;
}

.feature-card span {
  color: var(--brand);
  font-weight: 800;
}

.feature-card h3,
.benchmark-card h3,
.price-card h3,
.outcome-list h3 {
  margin: 14px 0 10px;
  letter-spacing: -0.03em;
}

.feature-card p,
.benchmark-card p,
.plan-copy,
.outcome-list p,
.story-copy p,
.market-note p,
.contact-card p,
.faq-list p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 56px;
  align-items: center;
}

.image-card.tall img {
  height: 680px;
  object-fit: cover;
}

.story-copy p + p {
  margin-top: 18px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.mini-stats div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
}

.timeline li {
  min-height: 180px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline span {
  color: #7ec7ff;
  font-weight: 800;
}

.timeline h3 {
  margin: 28px 0 10px;
}

.timeline p {
  margin: 0;
  color: rgba(247, 251, 255, 0.72);
}

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

.gallery-grid img {
  height: 360px;
  object-fit: cover;
}

.pricing-heading {
  margin-bottom: 34px;
}

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

.price-card {
  padding: 28px;
}

.price-card.featured {
  color: #fff;
  background: linear-gradient(160deg, #0d2140, #123f75 70%, #1262c7);
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(12, 39, 76, 0.22);
}

.plan {
  margin: 0;
  color: var(--brand);
  font-weight: 800;
}

.price-card.featured .plan,
.price-card.featured .plan-copy,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.price-card h3 {
  margin-top: 10px;
  font-size: 2.3rem;
}

.price-card h3 span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card.featured h3 span {
  color: rgba(255, 255, 255, 0.7);
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 22px 0 28px;
}

.addon-band {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
}

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

.benchmark-card {
  padding: 24px;
}

.benchmark-card strong {
  display: block;
  margin: 10px 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.benchmark-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--brand);
  font-weight: 700;
}

.market-note {
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 108, 255, 0.12);
  background: rgba(28, 108, 255, 0.06);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: start;
}

.outcome-list {
  display: grid;
  gap: 22px;
}

.outcome-list article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-top: 14px;
  color: rgba(247, 251, 255, 0.72);
}

.contact-section {
  padding-top: 72px;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 38px;
  color: #fff;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0c1e34, #143f72 62%, #1b78ff);
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.site-footer {
  padding: 52px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.75fr);
  gap: 24px;
  align-items: start;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links strong {
  margin-bottom: 4px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 720px;
  }

  .feature-grid,
  .pricing-grid,
  .benchmark-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-card {
    display: grid;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid,
  .feature-grid,
  .pricing-grid,
  .benchmark-grid,
  .gallery-grid,
  .footer-main,
  .mini-stats,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-actions,
  .strip-inner,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-image,
  .hero-image img {
    min-height: 420px;
    height: 420px;
  }

  .card-one {
    left: 14px;
    bottom: 14px;
  }

  .card-two {
    right: 14px;
    top: 14px;
  }

  .image-card.tall img {
    height: 480px;
  }

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

  .gallery-grid img {
    height: 260px;
  }

  .price-card.featured {
    transform: none;
  }

  .contact-card {
    padding: 28px;
  }

  .footer-bottom {
    display: grid;
  }
}
