:root {
  --navy: #07173b;
  --navy-2: #10244f;
  --navy-3: #162d61;
  --ink: #101827;
  --text: #2d3446;
  --muted: #657088;
  --gold: #bd8e3a;
  --gold-dark: #926727;
  --blue-soft: #e8edf7;
  --green-soft: #e5eee7;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #d9dfeb;
  --shadow: 0 18px 50px rgba(7, 23, 59, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid rgba(217, 223, 235, 0.84);
  backdrop-filter: blur(14px);
}

.header-top {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 7px 20px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 128px;
}

.brand img,
.panel-head img,
.site-footer img {
  object-fit: contain;
  background: var(--navy);
}

.brand img {
  width: 118px;
  height: 62px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 750;
}

.site-nav a {
  transition: color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-dark);
}

.nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  color: var(--white) !important;
  background: var(--gold);
  border-radius: 8px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.74fr);
  gap: 56px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 56px;
}

.hero-home {
  min-height: calc(100vh - 116px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(3rem, 6.8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-dark);
}

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

.hero-checks {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-weight: 750;
}

.hero-checks li {
  position: relative;
  padding-left: 28px;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}

.credit-panel,
.analysis-panel,
.lead-form-card {
  padding: 24px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.panel-head img {
  width: 72px;
  height: 58px;
  border-radius: 8px;
}

.panel-head strong,
.panel-head span {
  display: block;
}

.panel-head span {
  color: #cdd5ea;
  font-size: 0.92rem;
}

.route-card {
  padding: 22px;
  border-radius: 8px;
}

.route-card + .route-card {
  margin-top: 14px;
}

.route-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 1;
}

.route-card h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.55rem;
}

.route-card p {
  margin-bottom: 0;
  color: #dce4f5;
}

.route-card-dark {
  background: var(--navy-2);
}

.route-card-gold {
  background: linear-gradient(135deg, var(--gold), #d2ad68);
}

.route-card-gold span,
.route-card-gold h2,
.route-card-gold p {
  color: var(--navy);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 36px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-bar div {
  padding: 22px;
  background: var(--white);
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  color: var(--navy);
}

.trust-bar span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 86px 0;
}

.section > * {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.section-light {
  background: var(--blue-soft);
}

.section-white {
  background: var(--white);
}

.section-navy {
  color: #eef3ff;
  background: var(--navy);
}

.section-muted {
  background: var(--green-soft);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy p {
  color: #cdd5ea;
}

.section-intro {
  max-width: 830px;
  margin-bottom: 42px;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-navy .section-intro p:not(.eyebrow) {
  color: #cdd5ea;
}

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

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

.solution-card,
.issue-grid article,
.confidence-grid article,
.process-list article,
.audience-card,
.requirement-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-card {
  min-height: 320px;
}

.solution-card span,
.audience-card span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.solution-card h3 {
  color: var(--navy);
  font-size: 2.2rem;
}

.solution-card p,
.issue-grid p,
.confidence-grid p,
.process-list p,
.audience-card p,
.requirement-card p {
  color: var(--muted);
}

.solution-featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.solution-featured h3,
.solution-featured span {
  color: var(--gold);
}

.solution-featured p {
  color: #dce4f5;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 850;
}

.solution-featured .text-link {
  color: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-list article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 950;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100% - 40px));
  margin: 70px auto;
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.final-cta h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: #cdd5ea;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  padding: 44px max(20px, calc((100% - 1180px) / 2));
  color: #cdd5ea;
  background: #061126;
}

.site-footer img {
  width: 108px;
  height: 62px;
  margin-bottom: 16px;
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

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

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

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 17px;
  color: var(--white);
  background: #177c50;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.document-preview {
  padding: 20px;
  margin-bottom: 20px;
  background: var(--paper);
  border-radius: 8px;
}

.document-preview span {
  display: block;
  height: 12px;
  margin-bottom: 13px;
  background: #c9d1df;
  border-radius: 99px;
}

.document-preview span:nth-child(1) {
  width: 64%;
  background: var(--gold);
}

.document-preview span:nth-child(2) {
  width: 92%;
}

.document-preview span:nth-child(3) {
  width: 78%;
}

.document-preview span:nth-child(4) {
  width: 46%;
  margin-bottom: 0;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #eef3ff;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}

.panel-note {
  margin: 0;
  color: #cdd5ea;
  font-size: 0.92rem;
}

.issue-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--gold-dark);
  font-size: 2.8rem;
  font-weight: 950;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: 60px;
  align-items: start;
}

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

.document-list,
.comparison-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-list li,
.comparison-list li {
  padding: 16px 18px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

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

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.lead-form-card h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 2rem;
}

.lead-form-card p {
  color: #dce4f5;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: #dce4f5;
  font-size: 0.9rem;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
}

.lead-form textarea {
  min-height: 88px;
  resize: vertical;
}

.lead-form small {
  color: #cdd5ea;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-table > div {
  padding: 18px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-table > div:nth-child(3n) {
  border-right: 0;
}

.comparison-table .table-head {
  color: var(--white);
  background: var(--navy);
  font-weight: 850;
}

.comparison-table strong {
  color: var(--navy);
}

@media (max-width: 980px) {
  .header-top {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-shell {
    min-height: 72px;
  }

  .menu-button {
    display: inline-flex;
  }

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

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

  .site-nav a {
    padding: 12px 10px;
  }

  .hero,
  .split,
  .site-footer,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: 0;
  }

  .trust-bar,
  .issue-grid,
  .confidence-grid,
  .process-list,
  .audience-grid,
  .requirement-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .hero,
  .trust-bar,
  .section > *,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    width: 104px;
  }

  .brand img {
    width: 98px;
    height: 50px;
  }

  .hero {
    gap: 28px;
    padding: 34px 0 36px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .section {
    padding: 58px 0;
  }

  .credit-panel,
  .analysis-panel,
  .lead-form-card,
  .solution-card,
  .issue-grid article,
  .confidence-grid article,
  .process-list article,
  .audience-card,
  .requirement-card,
  .final-cta {
    padding: 20px;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .comparison-table > div,
  .comparison-table > div:nth-child(3n) {
    border-right: 0;
  }

  .floating-whatsapp {
    display: none;
  }
}
