:root {
  --ink: #071735;
  --muted: #5d6b85;
  --line: rgba(255, 255, 255, 0.18);
  --paper: #f5f8ff;
  --soft: #e9f1ff;
  --blue: #2563eb;
  --blue-dark: #0f3d91;
  --sky: #38bdf8;
  --gold: #fbbf24;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(7, 23, 53, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 23, 53, 0.66);
  color: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: grid;
  place-items: center;
  width: 134px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.brand img {
  width: 96px;
  height: 34px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.header-cta,
.primary-button,
.secondary-button,
.price-card a,
.consult-form button,
.mobile-sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
}

.header-cta,
.primary-button,
.consult-form button,
.mobile-sticky-cta {
  border: 0;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.28);
}

.header-cta {
  padding: 0 20px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px max(24px, calc((100vw - 1160px) / 2)) 38px;
  color: var(--white);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
  filter: saturate(1.08) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 53, 0.94), rgba(9, 50, 114, 0.62) 46%, rgba(7, 23, 53, 0.18)),
    linear-gradient(0deg, rgba(7, 23, 53, 0.94), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding-bottom: 84px;
}

.eyebrow,
.section-kicker,
.plan-label,
.promo-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--sky);
}

.hero h1 {
  max-width: 920px;
  margin: 16px 0 20px;
  font-size: clamp(3.25rem, 6.4vw, 6.15rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  line-height: 1.75;
}

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

.primary-button,
.secondary-button {
  padding: 0 25px;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-card {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 38px;
  z-index: 2;
  width: min(360px, calc(100% - 48px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

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

.hero-card span {
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  margin-top: 8px;
  font-size: 2.35rem;
  line-height: 1;
}

.hero-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.visual-intro,
.pricing-section,
.showcase-section,
.contact-section,
.final-cta,
.feature-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.visual-intro,
.pricing-section,
.showcase-section,
.contact-section {
  padding: 92px 0;
}

.visual-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
}

.intro-copy {
  position: sticky;
  top: 118px;
}

.intro-copy h2,
.section-heading h2,
.contact-section h2,
.final-cta h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-copy p,
.section-heading p,
.contact-section p {
  color: var(--muted);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-grid article,
.showcase-grid article {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.service-grid img,
.showcase-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 500ms ease;
}

.service-grid article:hover img,
.showcase-grid article:hover img {
  transform: scale(1.04);
}

.service-grid article::after,
.showcase-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 23, 53, 0.9), rgba(37, 99, 235, 0.16));
}

.service-grid article div,
.showcase-grid article div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: var(--white);
}

.service-grid span,
.showcase-grid span {
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-grid h3,
.showcase-grid h3 {
  margin: 8px 0;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1;
}

.service-grid p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.18);
}

.feature-band article {
  min-height: 190px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.feature-band span {
  color: var(--sky);
  font-weight: 900;
  text-transform: uppercase;
}

.feature-band p {
  margin: 58px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(7, 23, 53, 0.08);
}

.price-card.featured {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.promo-label {
  align-self: flex-start;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
}

.plan-label {
  margin-top: 18px;
  color: var(--blue);
}

.price-card.featured .plan-label {
  color: var(--sky);
}

.price-card h3 {
  margin: 10px 0 16px;
  font-size: 1.48rem;
}

.was-price {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 850;
  text-decoration: line-through;
}

.price-card.featured .was-price {
  color: rgba(255, 255, 255, 0.52);
}

.price {
  font-size: 2.7rem;
  font-weight: 950;
  line-height: 1;
}

.price span {
  margin-right: 4px;
  color: var(--muted);
  font-size: 1rem;
}

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

.timeline {
  margin: 10px 0 18px;
  color: var(--blue);
  font-weight: 900;
}

.price-card.featured .timeline {
  color: var(--sky);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: var(--muted);
}

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

.price-card li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--blue);
  font-weight: 950;
}

.price-card.featured li::before {
  color: var(--sky);
}

.price-card a {
  margin-top: auto;
  min-height: 48px;
  color: var(--white);
  background: var(--ink);
}

.price-card.featured a {
  color: var(--white);
  background: var(--blue);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 330px;
  gap: 18px;
}

.showcase-grid .wide {
  grid-row: span 2;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.consult-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 21, 20, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #f8fbff;
}

.consult-form textarea {
  resize: vertical;
}

.consult-form button {
  min-height: 52px;
  cursor: pointer;
  font: inherit;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 460px;
  margin-bottom: 42px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 23, 53, 0.92), rgba(37, 99, 235, 0.2));
}

.final-cta div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 760px;
  padding: 42px;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav {
    display: none;
  }

  .visual-intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    position: static;
  }

  .feature-band,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .showcase-grid .wide {
    grid-row: span 1;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -58px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 8px;
  }

  .brand {
    width: 118px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 94vh;
    padding: 110px 12px 28px;
  }

  .hero-content {
    padding-bottom: 82px;
  }

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

  .lead {
    font-size: 1rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-card {
    display: none;
  }

  .visual-intro,
  .pricing-section,
  .showcase-section,
  .contact-section,
  .final-cta,
  .feature-band {
    width: calc(100% - 24px);
  }

  .visual-intro,
  .pricing-section,
  .showcase-section,
  .contact-section {
    padding: 58px 0;
  }

  .service-grid article,
  .showcase-grid article {
    min-height: 300px;
  }

  .feature-band,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-band article {
    min-height: 155px;
  }

  .feature-band p {
    margin-top: 28px;
  }

  .showcase-grid {
    grid-auto-rows: 300px;
  }

  .consult-form {
    padding: 16px;
  }

  .final-cta {
    min-height: 430px;
  }

  .final-cta div {
    padding: 24px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 35;
    display: flex;
  }
}
