
:root {
  --red:       #DC1932;
  --red-dark:  #b0121f;
  --navy:      #0E2244;
  --navy-mid:  #152d58;
  --navy-deep: #080f1e;
  --white:     #ffffff;
  --off-white: #f7f8fa;
  --text:      #1a1a2e;
  --muted:     #6b7280;
  --border:    #e5e7eb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  padding: 0 32px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav img { height: 58px; width: auto; display: block; }

.nav-cta {
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 80px 24px 72px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── CTA GROUP ── */
.cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.form-specialist-cta {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin-top: 8px;
}
.form-specialist-cta a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid #d1d5db;
  transition: color 0.15s, border-color 0.15s;
}
.form-specialist-cta a:hover {
  color: var(--red);
  border-color: var(--red);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 40px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-strip-item {
  padding: 24px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex: 1;
  min-width: 160px;
}
.stat-strip-item:last-child { border-right: none; }

.stat-val {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  padding: 64px 24px 48px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ── TESTIMONIAL GRID ── */
.testimonial-section {
  background: var(--off-white);
  padding: 0 24px 72px;
}

.t-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.t-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  display: flex;
  flex-direction: column;
}

.t-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
  text-decoration: none;
}
.t-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.t-card:hover .t-thumb img { transform: scale(1.03); }

.t-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,15,30,0.4);
  transition: background 0.2s;
}
.t-card:hover .t-play { background: rgba(8,15,30,0.2); }

.t-play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(220,25,50,0.5);
}
.t-play-icon svg { margin-left: 3px; }

.t-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.t-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.t-company {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}

.t-location {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.t-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  border-left: 3px solid var(--red);
  padding-left: 14px;
  margin-bottom: 20px;
  flex: 1;
  font-style: italic;
}

.t-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.t-outcome {
  background: #fef2f4;
  border: 1px solid #fecdd3;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 2px;
}

.t-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.t-person strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.t-person span {
  font-size: 13px;
  color: var(--muted);
}

.t-watch {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.t-watch:hover { color: var(--red-dark); }

/* no-video card */
.t-card-text .t-body { padding: 28px; }

/* ── PROBLEM SECTION ── */
.problem-section {
  background: var(--navy);
  padding: 72px 24px;
}

.problem-section .section-header {
  padding: 0 0 48px;
}
.problem-section .section-header h2 { color: var(--white); }
.problem-section .section-header p { color: rgba(255,255,255,0.55); }
.problem-section .section-eyebrow { color: var(--red); }

.problem-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.problem-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.problem-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.7;
}

.problem-item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* ── GUIDE CTA + FORM ── */
.guide-section {
  background: var(--off-white);
  padding: 80px 24px;
}

.guide-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.guide-left h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.guide-left h2 em {
  font-style: normal;
  color: var(--red);
}

.guide-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.guide-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.guide-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* FORM */
.guide-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 36px;
}

.guide-form-wrap h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.guide-form-wrap .form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

.field input,
.field select {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus { border-color: var(--red); }
.field input::placeholder { color: #9ca3af; }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.field select:focus { background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23DC1932' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.field select option { color: var(--text); }

.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.15s;
  border-radius: 2px;
}
.btn-submit:hover { background: var(--red-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-note {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-top: 10px;
}

/* SUCCESS STATE */
.form-success {
  display: none;
  text-align: center;
  padding: 16px 0;
}
.check-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.btn-download {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 32px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-download:hover { background: var(--red-dark); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 3px solid var(--red);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer img { height: 48px; width: auto; }
footer p { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .t-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .guide-inner { grid-template-columns: 1fr; gap: 40px; }
  .stat-strip-item { padding: 18px 20px; min-width: 140px; }
  .hero { padding: 56px 20px 52px; }
  .guide-form-wrap { padding: 28px 24px; }
  .cta-group { flex-direction: column; align-items: center; }
  .btn-ghost { width: 100%; max-width: 320px; text-align: center; }
}

/* ── PRIVACY POLICY ── */
.privacy-hero {
  background: var(--navy);
  padding: 56px 24px 48px;
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.privacy-hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.privacy-hero .last-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.privacy-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.privacy-wrap .intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  border-left: 3px solid var(--red);
  padding-left: 18px;
  margin-bottom: 48px;
}

.privacy-section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.privacy-section h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.privacy-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 12px;
}
.privacy-section p:last-child { margin-bottom: 0; }

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  padding-left: 20px;
  position: relative;
}
.privacy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.7;
}

.privacy-section a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(220,25,50,0.25);
  transition: border-color 0.15s;
}
.privacy-section a:hover { border-color: var(--red); }

.contact-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
  border-radius: 0 2px 2px 0;
}
.contact-block a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(220,25,50,0.25);
}
.contact-block a:hover { border-color: var(--red); }

@media (max-width: 768px) {
  .privacy-hero { padding: 40px 20px 36px; }
  .privacy-wrap { padding: 40px 20px 64px; }
}
