* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #146f73;
  --teal-dark: #0d3f43;
  --teal-deep: #082b2e;
  --orange: #f26b3a;
  --gray: #8d8f92;
  --dark: #091f23;
  --text: #1d282b;
  --muted: #657174;
  --soft: #f5f7f6;
  --white: #ffffff;
  --border: rgba(20, 111, 115, 0.14);
  --shadow: 0 24px 70px rgba(7, 36, 39, 0.12);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 111, 115, 0.08);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #294447;
}

.nav-menu a {
  transition: color 0.25s ease;
}

.nav-menu a:hover {
  color: var(--orange);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(20, 111, 115, 0.20);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--soft);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--teal-dark);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 107, 58, 0.28), transparent 30%),
    linear-gradient(135deg, #082b2e 0%, #0d3f43 48%, #146f73 100%);
  color: var(--white);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 29, 32, 0.92),
    rgba(13, 63, 67, 0.78),
    rgba(20, 111, 115, 0.68)
  );
  z-index: 1;
}

.hero-bg {
  z-index: 2;
}

.hero-grid {
  z-index: 3;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 82px);
  padding: 92px 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 780px;
  margin-bottom: 26px;
}

.hero-text {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 650px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(242, 107, 58, 0.26);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 640px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
}

.hero-stats span {
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.dashboard-card {
  width: min(100%, 430px);
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--dark);
  box-shadow: 0 40px 110px rgba(0,0,0,0.28);
  transform: rotate(1.5deg);
}

.dash-top {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.dash-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d9dddd;
}

.dash-top span:first-child {
  background: var(--orange);
}

.dashboard-card h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: var(--soft);
  color: #284044;
  font-weight: 700;
}

.process-list span {
  color: var(--orange);
  font-weight: 900;
}

.mini-metric {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: #0d3f43;
  color: var(--white);
}

.progress {
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  overflow: hidden;
  margin: 10px 0;
}

.progress span {
  display: block;
  width: 86%;
  height: 100%;
  background: var(--orange);
  border-radius: inherit;
}

.mini-metric small {
  color: rgba(255,255,255,0.72);
}

.section {
  padding: 104px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--dark);
}

.problem p {
  font-size: 1.08rem;
  color: var(--muted);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

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

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

.service-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(11, 45, 48, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(242, 107, 58, 0.28);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--orange);
  background: rgba(242, 107, 58, 0.10);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.dark-panel {
  background: var(--dark);
  color: var(--white);
}

.light h2 {
  color: var(--white);
}

.light p {
  color: rgba(255,255,255,0.72);
}

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

.step {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.step span {
  color: var(--orange);
  font-weight: 900;
  display: block;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: rgba(255,255,255,0.68);
  font-size: 0.94rem;
}

.pricing-preview {
  background: var(--soft);
}

.pricing-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 46px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.pricing-box p {
  max-width: 680px;
  color: var(--muted);
  margin-top: 12px;
}

.success-stack {
  display: grid;
  gap: 14px;
}

.success-stack div {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--soft);
  position: relative;
}

.success-stack div::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.success-stack strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.04rem;
  margin-bottom: 4px;
}

.success-stack span {
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(242,107,58,0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f7f6 100%);
}

.final-cta .container {
  max-width: 830px;
}

.final-cta p {
  color: var(--muted);
  margin: 16px auto 28px;
  max-width: 680px;
}

.site-footer {
  background: #061d20;
  color: rgba(255,255,255,0.76);
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 56px;
}

.footer-logo {
  width: 150px;
  background: white;
  border-radius: 14px;
  padding: 8px;
  margin-bottom: 18px;
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  margin: 10px 0;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-top: 40px;
  padding-top: 22px;
  font-size: 0.88rem;
}

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

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

@media (max-width: 900px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 14px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 72px 0;
  }

  .hero-stats,
  .card-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .success-stack div::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 128px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

  .pricing-box {
    padding: 28px;
  }
}
