:root {
  --ink: #14213d;
  --muted: #637083;
  --line: #dce4ee;
  --paper: #ffffff;
  --mist: #eef5f7;
  --teal: #006d77;
  --cyan: #22a6b3;
  --coral: #e56b6f;
  --gold: #d9a441;
  --green: #4f8f5f;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #f8fbfc;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(248, 251, 252, 0.9);
  border-bottom: 1px solid rgba(220, 228, 238, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(1040px, 100%);
  color: #425066;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a,
.nav-parent {
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 8px;
}

.site-nav a:hover,
.nav-group:focus-within .nav-parent,
.nav-group:hover .nav-parent,
.text-link:hover {
  color: var(--teal);
  background: rgba(0, 109, 119, 0.07);
}

.nav-group {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  display: none;
  min-width: 230px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.submenu::before {
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.submenu a {
  display: block;
  padding: 11px 12px;
  color: #425066;
  font-size: 0.9rem;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  display: block;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
  min-height: calc(100vh - 73px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(40px, 6vw, 72px);
  background:
    linear-gradient(112deg, rgba(0, 109, 119, 0.1), rgba(229, 107, 111, 0.07) 45%, rgba(217, 164, 65, 0.08)),
    #f8fbfc;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.6vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 670px;
  color: #425066;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(0, 109, 119, 0.2);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  color: #425066;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-visual {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #f1f6f8;
  border-bottom: 1px solid var(--line);
}

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

.window-bar span:nth-child(2) {
  background: var(--gold);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.window-bar strong {
  margin-left: auto;
  color: #566276;
  font-size: 0.82rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.metric-card,
.score-panel,
.timeline-card,
.feature-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric-card {
  min-height: 136px;
  padding: 18px;
  color: #fff;
}

.metric-card.teal {
  background: var(--teal);
}

.metric-card.coral {
  background: var(--coral);
}

.metric-card span,
.metric-card small,
.timeline-card span,
.timeline-card small {
  display: block;
  opacity: 0.84;
}

.metric-card strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 2.5rem;
}

.score-panel {
  grid-column: 1 / -1;
  padding: 18px;
}

.score-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 800;
}

.score-header strong {
  color: var(--green);
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 170px) 1fr;
  align-items: center;
  gap: 12px;
  margin: 13px 0;
  color: #4b586c;
  font-size: 0.82rem;
  font-weight: 700;
}

.bar-row i {
  position: relative;
  display: block;
  height: 9px;
  overflow: hidden;
  background: #e9eef4;
  border-radius: 999px;
}

.bar-row i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: inherit;
}

.timeline-card {
  grid-column: 1 / -1;
  padding: 18px;
  background: #fff8ee;
}

.timeline-card strong {
  display: block;
  margin: 8px 0;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.intro,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro p,
.workflow-copy p,
.contact p {
  color: #526176;
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.feature-band {
  background: #fff;
}

.seo-content {
  background: #fff;
}

.solutions {
  background: #fff;
}

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

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

.solution-card,
.seo-grid article {
  padding: 24px;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-card {
  display: grid;
  gap: 10px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 109, 119, 0.35);
  box-shadow: 0 14px 38px rgba(20, 33, 61, 0.1);
}

.solution-card strong {
  font-size: 1.05rem;
}

.solution-card span {
  color: #5e6b7e;
  line-height: 1.6;
}

.feature-index {
  background: #fff;
}

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

.capability-card {
  padding: 22px;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.capability-card h3 {
  margin-bottom: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 8px 10px;
  color: #425066;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.segment-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.segment-links a {
  padding: 10px 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #425066;
  font-weight: 800;
}

.segment-links a:hover {
  color: var(--teal);
  border-color: rgba(0, 109, 119, 0.35);
}

.seo-grid p,
.faq-list p {
  color: #5e6b7e;
  line-height: 1.7;
}

.feature-card {
  min-height: 220px;
  padding: 24px;
}

.feature-card p {
  color: #5e6b7e;
  line-height: 1.65;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.split {
  background: var(--mist);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 800;
}

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

.workflow-item {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: #fff;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(20, 33, 61, 0.08);
}

.workflow-item span {
  color: #5e6b7e;
  line-height: 1.6;
}

.modules {
  background: #fff;
}

.module-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.module-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) 1fr;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.module-table div:last-child {
  border-bottom: 0;
}

.module-table span:first-child {
  font-weight: 800;
}

.module-table span:last-child {
  color: #5e6b7e;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--ink);
  color: #fff;
}

.outcome {
  padding: 8px 0;
}

.outcome strong {
  display: block;
  margin-bottom: 10px;
  color: #8ee3ef;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.outcome span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  line-height: 1.5;
}

.faq {
  background: var(--mist);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(20, 33, 61, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact {
  background: linear-gradient(180deg, #f8fbfc, #eef5f7);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #435168;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 109, 119, 0.14);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #0d1729;
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 800;
}

.subhero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(112deg, rgba(0, 109, 119, 0.11), rgba(229, 107, 111, 0.06) 50%, rgba(217, 164, 65, 0.08)),
    #f8fbfc;
}

.subhero h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.subhero p {
  max-width: 760px;
  color: #425066;
  font-size: 1.08rem;
  line-height: 1.75;
}

.subhero-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.subhero-panel strong {
  display: block;
  margin-bottom: 16px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 24px;
  color: #526176;
  line-height: 1.55;
  position: relative;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  content: ">";
  color: var(--teal);
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-card p {
  color: #5e6b7e;
  line-height: 1.7;
}

.keyword-band {
  background: var(--mist);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-cloud span {
  padding: 10px 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #425066;
  font-weight: 700;
}

@media (max-width: 920px) {
  .hero,
  .subhero,
  .intro,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-visual {
    max-width: 720px;
  }

  .feature-grid,
  .solution-grid,
  .capability-grid,
  .seo-grid,
  .content-grid,
  .outcomes {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    max-width: none;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .nav-parent {
    padding: 13px;
  }

  .nav-group {
    width: 100%;
  }

  .nav-parent {
    display: block;
    color: var(--ink);
    background: #f8fbfc;
    font-weight: 800;
  }

  .submenu {
    position: static;
    display: grid;
    min-width: 0;
    gap: 2px;
    margin: 4px 0 10px;
    padding: 4px 0 4px 12px;
    background: transparent;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .submenu::before {
    display: none;
  }

  .submenu a {
    padding: 10px 12px;
  }

  .dashboard-grid,
  .feature-grid,
  .solution-grid,
  .capability-grid,
  .seo-grid,
  .content-grid,
  .outcomes,
  .module-table div {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }
}


