/* =============================================
   PRIVACYSUIT.COM — Main Stylesheet
   Brand: Bold / Activist / Dark
   Fonts: Bebas Neue (display) + DM Sans (body)
   ============================================= */

:root {
  --red:        #E8281A;
  --red-dark:   #B8200F;
  --red-glow:   rgba(232, 40, 26, 0.18);
  --black:      #0C0C0C;
  --gray-deep:  #141414;
  --gray-dark:  #1C1C1C;
  --gray-mid:   #2C2C2C;
  --gray-line:  #262626;
  --gray-text:  #888;
  --white:      #F4EFE6;
  --white-dim:  #B0A89A;
  --yellow:     #F0C040;

  --nav-h: 64px;
  --container: 1200px;
  --radius: 0px;
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 500; }

/* ======================== TYPOGRAPHY ======================== */

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1;
}

h1 { font-size: clamp(3.5rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1rem; font-weight: 500; font-family: 'DM Sans', sans-serif; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* ======================== LAYOUT ======================== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 3.5rem;
  max-width: 680px;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header.light h2,
.section-header.light .eyebrow,
.section-header.light .section-sub { color: inherit; }
.section-sub {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.75;
}

/* ======================== BUTTONS ======================== */

.btn-primary, .btn-ghost, .nav-cta, .btn-submit {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 0.95rem 2.4rem;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid #3a3a3a;
  padding: 0.9rem 2rem;
}
.btn-ghost:hover { border-color: var(--white); }

/* ======================== NAV ======================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(12,12,12,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  white-space: nowrap;
  margin-left: 1rem;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--gray-deep);
  border-left: 1px solid var(--gray-line);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  transition: right 0.3s ease;
}
.nav-drawer.open { right: 0; }
.nav-drawer a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color var(--transition);
}
.nav-drawer a:hover { color: var(--white); }
.nav-drawer .drawer-cta {
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: center;
  margin-top: auto;
}
.drawer-close {
  background: none;
  border: none;
  color: var(--gray-text);
  font-size: 1.25rem;
  cursor: pointer;
  align-self: flex-end;
  padding: 0;
  line-height: 1;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 299;
}
.nav-overlay.visible { display: block; }

/* ======================== HERO ======================== */

.hero {
  min-height: calc(100vh - var(--nav-h));
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(232,40,26,0.025) 60px, rgba(232,40,26,0.025) 61px),
    repeating-linear-gradient(0deg,  transparent, transparent 60px, rgba(232,40,26,0.025) 60px, rgba(232,40,26,0.025) 61px);
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  from { transform: translate(0,0); }
  to   { transform: translate(61px, 61px); }
}

/* Big ghost text */
.hero::before {
  content: 'OPT OUT';
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 18vw, 20rem);
  color: transparent;
  -webkit-text-stroke: 1px #1e1e1e;
  pointer-events: none;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  animation: heroIn 0.7s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: heroIn 0.6s 0.05s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  margin-bottom: 1.75rem;
  animation: heroIn 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
  display: block;
  animation: glow 3s ease-in-out infinite alternate;
}
@keyframes glow {
  from { text-shadow: 0 0 30px rgba(232,40,26,0.3); }
  to   { text-shadow: 0 0 60px rgba(232,40,26,0.55); }
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--white-dim);
  max-width: 56ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: heroIn 0.6s 0.15s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroIn 0.6s 0.2s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}

/* ======================== STATS BAR ======================== */

.stats-title {
  grid-column: 1 / -1;
  padding: 1rem 2.5rem 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  background: var(--gray-deep);
}

.stat {
  padding: 2.25rem 2.5rem;
  border-right: 1px solid var(--gray-line);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-text);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* ======================== HOW IT WORKS ======================== */

.section-how {
  padding: 6rem 0;
  background: var(--black);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-line);
  transition: background var(--transition);
}
.how-step:last-child { border-bottom: 1px solid var(--gray-line); }
.how-step:hover { background: rgba(255,255,255,0.02); }

.how-connector { display: none; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: color: var(--red);
  line-height: 1;
  padding-top: 0.15rem;
  transition: color var(--transition);
}
.how-step:hover .step-num { color: var(--red); }

.step-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.step-body p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 55ch;
}

/* ======================== EVIDENCE ======================== */

.section-evidence {
  padding: 6rem 0;
  background: var(--gray-deep);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--gray-line);
  border: 1px solid var(--gray-line);
}

.evidence-card {
  background: var(--gray-deep);
  padding: 2rem;
  transition: background var(--transition);
}
.evidence-card:hover { background: #1a1a1a; }

.evidence-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}
.evidence-card h4 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}
.evidence-card p {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.65;
}

/* ======================== YOUR RIGHTS ======================== */

.section-rights {
  padding: 6rem 0;
  background: var(--red);
  color: var(--white);
}

.section-rights .eyebrow { color: rgba(255,255,255,0.65); }
.section-rights .eyebrow::before { background: rgba(255,255,255,0.4); }
.section-rights .section-sub { color: rgba(255,255,255,0.75); }

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.right-card {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition);
}
.right-card:hover {
  background: rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.3);
}

.right-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}
.right-card h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.right-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ======================== LAWS ======================== */

.section-laws {
  padding: 6rem 0;
  background: var(--black);
}

.laws-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.law-card {
  border: 1px solid var(--gray-line);
  padding: 2rem;
  background: var(--gray-deep);
  transition: border-color var(--transition), transform var(--transition);
}
.law-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.law-card.featured {
  border-color: var(--red);
  background: rgba(232,40,26,0.05);
}

.law-state {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.4rem;
}
.law-card h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.law-card p {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.law-damages {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.03em;
}

/* ======================== FORM ======================== */

.section-form {
  padding: 6rem 0;
  background: #e8e4dc;
  border-top: 4px solid var(--red);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.form-header h2 { margin-bottom: 1rem; }
.form-header p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.form-promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.form-promises li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #444;
}
.promise-check {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
}

.form-card {
  background: #ffffff;
  border: 1px solid #d0ccc4;
  padding: 2.5rem;
  color:var(--gray-dark);;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
}
.req { color: var(--red); }
.optional { color: #777; font-weight: 300; letter-spacing: 0; text-transform: none; font-size: 0.8em; }

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  background: #f5f2ee;
  border: 1px solid #ccc8c0;
  color: #1a1a1a;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
input::placeholder, textarea::placeholder { color: #aaa; }
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,40,26,0.1);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select option { background: #f5f2ee; color: #1a1a1a; }
textarea { resize: vertical; min-height: 110px; }

.field-hint {
  font-size: 0.77rem;
  color: #888;
  line-height: 1.5;
}

/* Deep Dive block */
.deep-dive-block {
  border: 1px solid #ccc8c0;
  background: #f0ece6;
  transition: border-color var(--transition);
}
.deep-dive-block:has(#deepDive:checked) {
  border-color: var(--red);
  background: rgba(232,40,26,0.04);
}

.deep-dive-toggle {
  padding: 1.25rem;
}
.deep-dive-label {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  color: var(--white);
}
.deep-dive-label input[type="checkbox"] { display: none; }

.deep-dive-check {
  width: 20px;
  height: 20px;
  border: 2px solid #bbb8b0;
  flex-shrink: 0;
  margin-top: 0.15rem;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.deep-dive-block:has(#deepDive:checked) .deep-dive-check {
  background: var(--red);
  border-color: var(--red);
}
.deep-dive-block:has(#deepDive:checked) .deep-dive-check::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 6px; height: 10px;
  border: 2px solid white;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

.deep-dive-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.deep-dive-text span {
  font-size: 0.83rem;
  color: var(--gray-text);
  line-height: 1.6;
  font-weight: 300;
}

.deep-dive-detail {
  display: none;
  border-top: 1px solid #ccc8c0;
  padding: 1.25rem;
}
.deep-dive-block:has(#deepDive:checked) .deep-dive-detail { display: block; }

.deep-dive-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.deep-dive-includes li {
  font-size: 0.83rem;
  color: var(--white-dim);
  line-height: 1.5;
}
.deep-dive-note {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.5;
  font-style: italic;
}

/* Consent checkbox */
.consent-group label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  color: #666;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 300;
  line-height: 1.55;
}
.consent-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  accent-color: var(--red);
  cursor: pointer;
}

/* Submit */
.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 1.1rem 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  justify-content: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--red-glow);
}
.btn-submit:disabled {
  background: #333;
  color: #555;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.visible { display: block; }
.success-icon {
  width: 60px;
  height: 60px;
  background: var(--red);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
}
.form-success h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.form-success p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 45ch;
  margin: 0 auto 0.75rem;
}
.success-sub { color: #444 !important; font-size: 0.82rem !important; }

/* ======================== FOOTER ======================== */

.site-footer {
  background: var(--gray-deep);
  border-top: 1px solid var(--gray-line);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-logo span { color: var(--red); }
.footer-tagline {
  font-size: 0.78rem;
  color: var(--gray-text);
  margin-top: 0.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact {
  text-align: right;
}
.footer-contact a {
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--gray-line);
  padding: 1.5rem 2rem;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 72ch;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-text);
}

.form-error {
  background: rgba(232, 40, 26, 0.1);
  border: 1px solid var(--red);
  color: var(--gray-mid);
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
}

/* ======================== RESPONSIVE ======================== */

@media (max-width: 900px) {
  .form-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
  .footer-contact { text-align: left; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--gray-line); padding: 1.25rem 1.5rem; }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 2.4rem; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem 3rem; }
  .container { padding: 0 1.25rem; }
  .form-card { padding: 1.5rem; }
  section { padding: 4rem 0; }
  .section-how, .section-evidence, .section-rights, .section-laws, .section-form { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════
   DEEP DIVE PRICE BADGE
══════════════════════════════════════════════ */
.deep-dive-price {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.15em 0.55em;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.4em;
}

/* ══════════════════════════════════════════════
   FORM FOOTER NOTE (free / stripe note)
══════════════════════════════════════════════ */
.form-footer-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted, #888);
  margin-top: 0.6rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════
   CONFIRMATION PAGE
══════════════════════════════════════════════ */
.hero--short {
  min-height: 70vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.confirm-state {
  margin-bottom: 3rem;
}

.confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.confirm-icon--free {
  background: rgba(108, 71, 255, 0.15);
  color: var(--red);
}
.confirm-icon--paid {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.confirm-next {
  margin-top: 3rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
}

.confirm-what-next-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.confirm-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.confirm-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.confirm-step .step-num {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--red);
  min-width: 2rem;
}


.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}