:root {
  --bg: #f7fafc;
  --surface: #ffffff;
  --surface-strong: #f1f6fb;
  --ink: #081326;
  --muted: #607085;
  --line: #d9e3ee;
  --navy: #071529;
  --navy-2: #12213a;
  --blue: #1f5fe5;
  --blue-dark: #184bb6;
  --teal: #09a99d;
  --teal-strong: #067d78;
  --teal-soft: #e6f7f5;
  --amber-soft: #fff2d2;
  --red-soft: #fff0ed;
  --shadow: none;
  --glow: none;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body,
input,
select,
textarea,
button {
  font: 400 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

::selection {
  color: #ffffff;
  background: var(--blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 238, 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-lockup {
  display: block;
  width: 232px;
  height: auto;
}

.nav-links {
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-cta {
  color: var(--blue) !important;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
  gap: 48px;
  align-items: start;
  min-height: auto;
  padding-top: 22px;
  padding-bottom: 58px;
}

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

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.65rem);
  line-height: 0.95;
  letter-spacing: -0.076em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
}

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

.button.secondary {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.button.secondary:hover {
  border-color: var(--blue);
}

.small-note,
.privacy-note,
.form-status {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel,
.service-card,
.standard-card,
.fit-grid,
.contact-form,
.proof-card,
.trust-strip,
.outcome-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  margin-top: -10px;
  border-radius: var(--radius-lg);
  border-top: 5px solid var(--teal);
  background: var(--surface);
}

.hero-panel::before {
  display: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel h2 {
  margin-bottom: 26px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.052em;
}

.panel-label,
.card-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-strong);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-list,
.check-list,
.mini-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.signal-list li,
.check-list li,
.mini-list li {
  position: relative;
  padding-left: 28px;
}

.signal-list li::before,
.check-list li::before,
.mini-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.signal-list li::before,
.check-list li::before,
.mini-list li::before {
  content: "+";
  color: var(--teal);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-md);
}

.trust-strip div {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: #ffffff;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 1rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.section-copy p,
.service-card p,
.standard-card p,
.proof-card p,
.contact-copy p,
.outcome-grid p {
  color: var(--muted);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.outcome-grid article,
.standard-card,
.service-card {
  padding: 26px;
  border-radius: var(--radius-md);
}

.outcome-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 900;
}

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

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

.cards,
.standards-grid {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 380px;
}

.featured-card {
  border-color: rgba(31, 95, 229, 0.38);
  background: #f8fbff;
}

.mini-list {
  margin-top: 22px;
  color: var(--ink);
  font-size: 0.94rem;
}

.standards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.standard-card {
  min-height: 225px;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 28px;
  padding: 32px;
  border-radius: var(--radius-lg);
}

.proof-section {
  padding-top: 20px;
}

.proof-card {
  max-width: 860px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.zoho-form-card {
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
}

.zoho-form-card iframe {
  display: block;
  width: 100%;
  height: 1900px;
  min-height: 1900px;
  border: 0;
  overflow: hidden;
  background: #ffffff;
}

.zoho-form-note {
  padding: 16px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
}

.zoho-form-note a,
.legal-card a,
.footer-link {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.zoho-form-note a:hover,
.legal-card a:hover,
.footer-link:hover {
  text-decoration: underline;
}

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

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(35, 95, 227, 0.14);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-weight: 750;
}

.form-status.success {
  color: #0f7b4f;
}

.form-status.error {
  color: #b42318;
}

.legal-section {
  padding-top: 48px;
}

.legal-card {
  max-width: 920px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.035em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-updated {
  margin-bottom: 28px;
  color: var(--teal-strong) !important;
  font-weight: 850;
}

.legal-actions {
  margin-top: 36px;
}

.site-footer {
  padding: 34px 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
}

.footer-lockup {
  display: block;
  width: 216px;
  height: auto;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  text-align: right;
}

.footer-link {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .contact-section,
  .trust-strip,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 58px;
  }

  .hero-panel {
    margin-top: 0;
  }

  .cards.three,
  .standards-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

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

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand-lockup {
    width: 190px;
  }

  .section {
    width: 100%;
    max-width: 100vw;
    padding: 64px 18px;
    overflow: hidden;
  }

  .hero {
    padding-top: 20px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(2.15rem, 9.5vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.09em;
  }

  .hero-text {
    font-size: 1.06rem;
  }

  .hero,
  .service-card,
  .standard-card,
  .proof-card,
  .contact-form,
  .outcome-grid,
  .outcome-grid article {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero-copy,
  .hero-panel {
    width: calc(100vw - 72px);
    max-width: 318px;
    margin-right: auto;
    margin-left: 0;
  }

  .hero-actions,
  .button {
    max-width: 318px;
  }

  .hero-panel {
    margin-top: 0;
    padding: 28px 22px;
  }

  .hero-panel::before {
    top: -86px;
    right: -96px;
    opacity: 0.68;
  }

  .hero-panel h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.85rem);
    line-height: 1.14;
  }

  .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .footer-lockup {
    width: 190px;
  }

  .hero-actions,
  .button,
  .form-grid.two {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .service-card,
  .fit-grid,
  .contact-form,
  .zoho-form-card,
  .legal-card,
  .proof-card {
    border-radius: 22px;
  }

  .legal-card {
    padding: 28px 22px;
  }

  .zoho-form-card iframe {
    height: 2250px;
    min-height: 2250px;
  }
}
