:root {
  --navy: #0b1f33;
  --navy-soft: #15324e;
  --teal: #0f9f9a;
  --teal-dark: #087772;
  --teal-light: #e6f7f6;
  --sky-light: #f3fbff;
  --ink: #142033;
  --muted: #5d6f82;
  --line: #d7e7ee;
  --panel: #f8fcfd;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(11, 31, 51, 0.12);
  --soft-shadow: 0 16px 42px rgba(11, 31, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.hero-actions,
.trusted-strip,
.contact-panel {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(15, 159, 154, 0.22);
}

.site-nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 40px;
  padding-bottom: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.85rem, 5.4vw, 5.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.3;
}

.hero-subtitle {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.button,
.copy-button {
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover,
.copy-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 14px 32px rgba(15, 159, 154, 0.24);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.08);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 28px -10px -18px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-light), var(--sky-light));
  content: "";
}

.preview-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, var(--white), #fbfeff);
  box-shadow: var(--shadow);
}

.preview-window::after {
  position: absolute;
  top: -60px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(15, 159, 154, 0.1);
  content: "";
}

.window-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.preview-kicker {
  position: relative;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 8px;
  padding: 18px;
  background: var(--panel);
  box-shadow: 0 8px 26px rgba(11, 31, 51, 0.06);
}

.preview-card-main {
  border-left: 5px solid var(--teal);
}

.preview-card strong,
.metrics-grid strong {
  display: block;
  color: var(--navy);
}

.preview-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.status-dot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--teal);
}

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

.metrics-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 12px;
  background: var(--white);
}

.metrics-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.preview-list span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--line), var(--teal-light));
}

.preview-list span:nth-child(2) {
  width: 76%;
}

.preview-list span:nth-child(3) {
  width: 58%;
}

.trusted-strip {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.trusted-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--navy-soft);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.04);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card,
.process-grid article,
.trust-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(11, 31, 51, 0.04);
}

.service-card p,
.process-grid p,
.split-section p,
.contact-section p,
.section-heading p,
.trust-card p,
.price-card p {
  color: var(--muted);
}

.service-card,
.trust-card,
.price-card,
.process-grid article {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover,
.trust-card:hover,
.price-card:hover,
.process-grid article:hover {
  border-color: rgba(15, 159, 154, 0.42);
  box-shadow: var(--soft-shadow);
  transform: translateY(-5px);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-section,
.pricing-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1120px) / 2));
  padding-left: max(16px, calc((100vw - 1120px) / 2));
  background: linear-gradient(180deg, rgba(246, 253, 253, 0.72), rgba(255, 255, 255, 1));
}

.trust-section .section-heading,
.pricing-section .section-heading,
.trust-grid,
.pricing-grid,
.support-note {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

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

.trust-card h3::before {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-section p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.process-section {
  padding-bottom: 54px;
}

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

.process-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.price-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
}

.price-card strong {
  display: block;
  margin-top: auto;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.2;
}

.price-card.featured {
  border-color: rgba(15, 159, 154, 0.52);
  box-shadow: 0 18px 46px rgba(15, 159, 154, 0.13);
}

.support-note {
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 48px;
  align-items: center;
}

.contact-panel {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 8px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(15, 159, 154, 0.32), transparent 32%),
    var(--navy);
  box-shadow: var(--shadow);
}

.contact-panel span {
  color: #9fe5e2;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel a {
  overflow-wrap: anywhere;
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-email-button {
  width: 100%;
  margin-top: 8px;
  text-align: center;
}

.copy-button {
  width: 100%;
  color: var(--navy);
  background: var(--white);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--navy);
  font-weight: 700;
}

.reveal,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible,
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal-delay-1.is-visible {
  transition-delay: 80ms;
}

.reveal-delay-2.is-visible {
  transition-delay: 160ms;
}

.reveal-delay-3.is-visible {
  transition-delay: 240ms;
}

.reveal-delay-4.is-visible {
  transition-delay: 320ms;
}

.reveal-delay-5.is-visible {
  transition-delay: 420ms;
}

@media (min-width: 901px) {
  .preview-window {
    animation: floatPreview 7s ease-in-out infinite;
  }

  @keyframes floatPreview {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 36px;
  }

  .services-grid,
  .process-grid,
  .trust-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.9rem;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .button {
    text-align: center;
  }

  .metrics-grid,
  .services-grid,
  .process-grid,
  .trust-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual::before {
    inset: 18px -6px -10px 12px;
  }

  .contact-panel a {
    font-size: 1.1rem;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
