@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --red: #e11d2e;
  --red-dark: #b91c1c;
  --black: #0f172a;
  --gray: #64748b;
  --light-gray: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --green: #047857;
  --green-bg: #ecfdf5;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.section {
  padding: 86px 0;
}

.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(42px, 6vw, 68px);
  max-width: 780px;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

.lead {
  font-size: 19px;
  color: var(--gray);
  margin-top: 20px;
  max-width: 720px;
}

.red-text {
  color: var(--red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(225, 29, 46, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}

.header .container {
  width: 100%;
  max-width: none;
  padding: 0 40px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px) scale(1.03);
  opacity: 0.9;
}

.logo-nav {
  width: 128px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.nav-links a {
  font-weight: 600;
  position: relative;
  color: #0f172a;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav .btn {
  flex: 0 0 auto;
  padding: 13px 24px;
  border-radius: 14px;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(225, 29, 46, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 65%, #f1f5f9 100%);
  border-bottom: 1px solid var(--border);
  padding: 70px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.hero-card-top small {
  color: var(--gray);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.proof-badge {
  background: var(--green-bg);
  color: var(--green);
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 13px;
  white-space: nowrap;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat {
  background: var(--light-gray);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #edf2f7;
}

.stat-label {
  color: var(--gray);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-number {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.stat p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.45;
}

/* General Cards / Grids */
.section-header {
  max-width: 780px;
  margin-bottom: 42px;
}

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

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

.card,
.module,
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.card.light {
  background: var(--light-gray);
}

.card p,
.module p,
.faq-item p {
  color: var(--gray);
  margin-top: 14px;
}

.circle-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

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

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

.dark .lead,
.dark p {
  color: #cbd5e1;
}

.dark .eyebrow {
  color: #fca5a5;
}

.center {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

/* Trust */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  font-weight: 800;
  color: #475569;
}

/* Results */
.result-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius);
  padding: 28px;
  min-height: 230px;
}

.result-card .title {
  color: #94a3b8;
  font-weight: 800;
  font-size: 14px;
}

.result-card .big {
  font-size: 42px;
  color: var(--white);
  font-weight: 900;
  margin: 12px 0;
  letter-spacing: -0.05em;
}

/* Training */
.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: start;
}

.module {
  border-radius: 22px;
  padding: 24px;
  margin-top: 14px;
}

.pill-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.pill {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 15px 16px;
  color: #475569;
  font-weight: 700;
}

.promise {
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px;
}

.promise small {
  color: #cbd5e1;
  font-weight: 800;
}

.promise p {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
}

ul.clean {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: var(--gray);
}

ul.clean li::before {
  content: "•";
  color: var(--red);
  font-weight: 900;
  margin-right: 10px;
}

/* Case Studies */
.case-box {
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 44px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}

.case-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
}

.metric small {
  color: var(--gray);
  font-weight: 800;
}

.metric strong {
  display: block;
  font-size: 34px;
  margin-top: 8px;
  letter-spacing: -0.05em;
}

.quote {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 800;
  color: var(--black);
}

.faq-list {
  display: grid;
  gap: 16px;
}

/* Lead Magnet */
.lead-box {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

/* Final CTA */
.final-cta {
  background:
    linear-gradient(rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(225, 29, 46, 0.22), transparent 30%),
    #0f172a;
  color: white;
  padding: 55px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 520px;
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(38deg);
  top: -120px;
}

.final-cta::before {
  left: -80px;
}

.final-cta::after {
  right: -40px;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.cta-accent {
  width: 72px;
  height: 5px;
  background: var(--red);
  margin: 0 auto 32px;
  border-radius: 999px;
}

.final-cta h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: white;
  max-width: 860px;
  margin: 0 auto;
}

.final-cta h2 span {
  color: var(--red);
}

.final-cta p {
  margin: 24px auto 0;
  color: #dbeafe;
  font-size: 20px;
}

.cta-button {
  margin-top: 32px;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 16px;
}

.cta-points {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-align: left;
}

.cta-points strong {
  color: var(--red);
  font-size: 32px;
  line-height: 1;
}

.cta-points p {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  color: white;
}

/* Footer */
.elite-footer {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  color: var(--gray);
  font-size: 14px;
}

.logo-footer {
  width: 180px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -40px;
  margin-bottom: 60px;
}

.footer-description {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  max-width: 380px;
  margin-top: 0;
}

.footer-copy {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  width: 100%;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-contact p {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact a.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.footer-contact a.footer-phone:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.footer-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 11px 20px;
  border: 1.5px solid var(--red);
  color: var(--red);
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s;
}

.footer-cta:hover {
  background: var(--red);
  color: white;
}

/* Contact Page */
.section.center {
  text-align: center;
}

.contact-form {
  max-width: 620px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #dbe3ec;
  font-size: 15px;
  font-family: inherit;
  background: #f9fbfd;
  transition: all 0.2s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form button {
  margin-top: 10px;
  width: 100%;
  font-size: 16px;
  padding: 16px;
  border-radius: 14px;
  background: var(--red);
  color: white;
  border: none;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 14px 30px rgba(225, 29, 46, 0.25);
}

.contact-form button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.section.center h2 {
  margin-top: 40px;
}

.contact-page .container {
  text-align: center;
}

.honeypot {
  display: none;
}

.contact-page .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-page .cta-accent {
  margin-left: auto;
  margin-right: auto;
}

.form-note {
  margin-top: 14px;
  font-size: 14px;
  color: #64748b;
  text-align: center;
}

.form-hint {
  font-size: 12px;
  color: #94a3b8;
  margin-top: -10px;
}

.form-errors {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-left: 4px solid #dc2626;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.form-errors-title {
  font-size: 13px;
  font-weight: 800;
  color: #991b1b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.form-error {
  color: #b91c1c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/* Thank You Page */
.thank-you-action {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.thank-you-action .btn {
  width: auto;
  padding: 14px 36px;
  font-size: 16px;
}

/* Helpers */
.included-card,
.positioning-card {
  margin-top: 22px;
}

.quote-source {
  color: var(--gray);
  margin-top: 14px;
}

.about-section .card.light .lead {
  max-width: none;
}

section[id],
#top {
  scroll-margin-top: 95px;
}

.lead-box .btn {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .case-grid,
  .lead-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-4,
  .stat-grid,
  .metric-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 78px;
  }

  .nav-links {
    display: none;
  }

  .nav .btn {
    padding: 12px 18px;
    width: auto;
  }

  .brand {
    flex: 0 0 auto;
  }

  .logo-nav {
    width: 125px;
  }

  .logo-footer {
    width: clamp(160px, 40vw, 210px);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-description {
    margin: 0 auto;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .final-cta {
    padding: 70px 0;
  }

  .cta-points {
    flex-direction: column;
    align-items: center;
  }

  .cta-points div {
    width: 260px;
  }
}

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

  .section,
  .hero {
    padding: 62px 0;
  }

  .hero-card,
  .case-box {
    padding: 22px;
  }

  .nav {
    min-height: 72px;
    gap: 16px;
  }

  .logo-nav {
    width: 110px;
  }

  .nav .btn {
    font-size: 14px;
    padding: 10px 14px;
    width: auto;
  }

  .btn {
    width: 100%;
  }

  .header .container {
    padding: 0 16px;
  }

  .stat-number,
  .result-card .big {
    font-size: 34px;
  }

  .lead-box .btn,
  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .contact-form {
    padding: 22px;
  }
}
