:root {
  --navy: #071426;
  --blue: #183f78;
  --gold: #c8a45d;
  --cream: #fbf8f1;
  --white: #ffffff;
  --muted: #64748b;
  --line: #e8dfcf;
  --shadow: 0 24px 60px rgba(7, 20, 38, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 38%, #fbf8f1 100%);
  line-height: 1.6;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
}

.nav-button {
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 90px 22px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

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

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

h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.lead, .section p, .contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
}

.primary {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 32px rgba(24, 63, 120, 0.24);
}

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

.mini-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-proof span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.hero-card {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: white;
  padding: 32px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.card-header img {
  width: 68px;
  height: 68px;
  background: white;
  border-radius: 20px;
  padding: 10px;
  object-fit: contain;
}

.card-header small {
  color: #d8e2ef;
  display: block;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.card-header strong {
  font-size: 24px;
}

.check-list p {
  color: #eef4fb;
  margin-bottom: 14px;
  font-weight: 700;
}

.industry-strip {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px 60px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.industry-strip span {
  border: 1px solid var(--line);
  background: white;
  color: var(--blue);
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 22px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.text-link {
  font-weight: 900;
  color: var(--blue);
}

.audit-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(7,20,38,0.08);
  overflow: hidden;
}

.audit-box div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.audit-box div:last-child { border-bottom: none; }

.audit-box strong {
  color: var(--gold);
}

.audit-box span {
  font-weight: 800;
}

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

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

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(7,20,38,0.06);
}

.card.featured {
  border-color: rgba(200,164,93,0.65);
  box-shadow: 0 24px 55px rgba(200,164,93,0.17);
}

.card small {
  color: var(--gold);
  font-weight: 900;
}

.card h3, .benefits h3 {
  font-size: 24px;
  margin: 12px 0 10px;
}

.dark-panel {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border-radius: 36px;
  box-shadow: var(--shadow);
  padding: 50px;
}

.dark-panel h2 {
  max-width: 780px;
}

.gold { color: #e4c77b; }

.benefits {
  margin-top: 28px;
}

.benefits div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  padding: 24px;
}

.benefits p {
  color: #dbe7f4;
}

.founder-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: start;
  box-shadow: var(--shadow);
}

.founder-initials {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
}

.guarantee {
  text-align: center;
  max-width: 900px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 14px;
}

input {
  border: 1px solid var(--line);
  background: #fffdf8;
  border-radius: 14px;
  padding: 14px;
  font: inherit;
}

button {
  border: none;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border-radius: 999px;
  padding: 16px;
  font-weight: 900;
  cursor: pointer;
  font-size: 16px;
}

.hidden { display: none; }

footer {
  text-align: center;
  padding: 42px 22px;
  background: white;
  border-top: 1px solid var(--line);
}

footer img {
  height: 56px;
  width: auto;
}

footer p {
  color: var(--muted);
  margin: 12px 0 4px;
}

footer small {
  color: #8b96a6;
}

@media (max-width: 850px) {
  .nav-links { display: none; }

  .brand img { height: 44px; }

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

  .hero {
    padding-top: 58px;
  }

  .cards, .benefits {
    grid-template-columns: 1fr;
  }

  .dark-panel {
    margin-left: 16px;
    margin-right: 16px;
    padding: 34px 24px;
  }

  .founder-initials {
    width: 86px;
    height: 86px;
  }
}
