/* ============================================================
   CLOSA — Shared Stylesheet
   tryclosa.com
   ============================================================ */

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0D1B2A;
  --orange:  #E8470A;
  --slate:   #3D5A80;
  --cream:   #F8F4EF;
  --white:   #FFFFFF;
  --charcoal:#2C2C2C;
  --gray-100:#F5F5F5;
  --gray-200:#E8E8E8;
  --gray-400:#9E9E9E;
  --gray-600:#616161;
  --border:  #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --radius:  12px;
  --radius-sm: 8px;
  --transition: 0.18s ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.text-orange { color: var(--orange); }
.text-slate  { color: var(--slate); }
.text-navy   { color: var(--navy); }

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: #cc3c08;
  border-color: #cc3c08;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,71,10,.30);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 17px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.nav__logo span {
  color: var(--orange);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav__links a:hover { color: var(--white); }

.nav__cta { margin-left: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,71,10,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(61,90,128,.20) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,71,10,.14);
  color: #f4845a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(232,71,10,.22);
  margin-bottom: 28px;
}

.hero__headline {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__headline em {
  font-style: normal;
  color: var(--orange);
}

.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.60);
  font-size: 14px;
  font-weight: 500;
}

.hero__trust-item svg, .hero__trust-item .check {
  color: #4CAF82;
  font-weight: 700;
  font-size: 15px;
}

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.65;
}

/* ── How It Works ── */
.hiw { background: var(--cream); }

.hiw__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.hiw__grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(33.33% - 24px);
  width: calc(33.33% + 48px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: .3;
  pointer-events: none;
}

.hiw__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.hiw__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.hiw__step-num {
  position: absolute;
  top: -16px;
  left: 32px;
  background: var(--orange);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.hiw__icon {
  width: 52px;
  height: 52px;
  background: rgba(13,27,42,.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.hiw__title {
  font-size: 20px;
  margin-bottom: 12px;
}

.hiw__desc {
  color: var(--gray-600);
  line-height: 1.65;
  font-size: 15px;
}

/* ── Industries + Pricing ── */
.industries { background: var(--white); }

.industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.industry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.industry-card:hover {
  border-color: rgba(232,71,10,.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.industry-card:hover::before { transform: scaleX(1); }

.industry-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.industry-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.industry-card__price {
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}

.industry-card__label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 4px;
}

.industries__footer {
  margin-top: 40px;
  text-align: center;
}

.industries__footer a {
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid rgba(232,71,10,.3);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.industries__footer a:hover { border-color: var(--orange); }

/* ── Social Proof ── */
.proof { background: var(--cream); }

.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
  border: 1px solid var(--border);
}

.proof__stat {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
}

.proof__stat-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.proof__stat-label {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial__stars {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}

.testimonial__co {
  font-size: 13px;
  color: var(--gray-600);
}

/* ── Anti-Pitch ── */
.antipitch {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.antipitch::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,71,10,.10) 0%, transparent 70%);
  pointer-events: none;
}

.antipitch__inner {
  max-width: 740px;
}

.antipitch__headline {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.antipitch__headline em {
  font-style: normal;
  color: var(--orange);
}

.antipitch__body {
  font-size: 18px;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 40px;
}

.antipitch__highlight {
  color: rgba(255,255,255,.90);
  font-weight: 600;
}

/* ── FAQ ── */
.faq { background: var(--white); }

.faq__list {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  transition: background var(--transition);
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq__question:hover { background: var(--gray-100); }

.faq__question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq__item.open .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}

.faq__item.open .faq__answer {
  padding: 0 28px 24px;
  max-height: 300px;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
  color: rgba(255,255,255,.60);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer__brand-name {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer__brand-name span { color: var(--orange); }

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,.45);
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.60);
  transition: color var(--transition);
  font-weight: 500;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   START PAGE — Onboarding Form
   ============================================================ */

.start-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.start-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.start-nav__logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.start-nav__logo span { color: var(--orange); }

.start-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 80px;
}

/* Progress Bar */
.progress-bar-wrap {
  width: 100%;
  max-width: 560px;
  margin-bottom: 40px;
}

.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.progress-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.progress-count {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

.progress-track {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}

/* Form Card */
.form-card {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step__headline {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.form-step__sub {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 36px;
  line-height: 1.55;
}

/* Form Fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.form-label .optional {
  font-weight: 400;
  color: var(--gray-400);
  font-size: 12px;
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,.08);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,.10);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239E9E9E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.55;
}

.field-hint {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 5px;
}

.field-error {
  display: none;
  font-size: 12px;
  color: #E53E3E;
  margin-top: 5px;
  font-weight: 500;
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.checkbox-item:hover {
  border-color: var(--slate);
  background: rgba(61,90,128,.04);
}

.checkbox-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-item.checked {
  border-color: var(--orange);
  background: rgba(232,71,10,.05);
}

.checkbox-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}

/* Plan Cards */
.plan-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.plan-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.plan-card:hover {
  border-color: rgba(232,71,10,.4);
}

.plan-card.selected {
  border-color: var(--orange);
  background: rgba(232,71,10,.03);
}

.plan-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.plan-card__radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.plan-card.selected .plan-card__radio {
  border-color: var(--orange);
  background: var(--orange);
}

.plan-card.selected .plan-card__radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.plan-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.plan-card__badge {
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.plan-card__price {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.plan-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 6px;
  line-height: 1.5;
}

.pack-options {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.pack-card.selected ~ .pack-options,
.plan-card.selected .pack-options {
  display: flex;
}

.pack-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.pack-option:hover { border-color: var(--slate); }
.pack-option.selected {
  border-color: var(--orange);
  background: rgba(232,71,10,.04);
}

.pack-option__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.pack-option__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

/* Payment Step */
.stripe-mount {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  min-height: 52px;
  background: #FAFAFA;
  margin-bottom: 20px;
  position: relative;
}

.stripe-mount__label {
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
}

.tos-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  margin-bottom: 28px;
}

.tos-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.tos-row label {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
  cursor: pointer;
}

.tos-row a { color: var(--orange); font-weight: 600; }

/* Form Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  justify-content: center;
}

/* Confirmation Step */
.confirm-step {
  text-align: center;
}

.confirm-check {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: checkPop 0.5s cubic-bezier(.17,.67,.29,1.35) forwards;
}

@keyframes checkPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.confirm-check svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: checkDraw 0.4s 0.3s ease forwards;
}

@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}

.confirm-headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.confirm-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 400px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.confirm-next {
  text-align: left;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.confirm-next__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.confirm-next__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.5;
}

.confirm-next__item:last-child { margin-bottom: 0; }

.confirm-next__check {
  color: #22C55E;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1.5;
}

/* Form nav */
.form-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  cursor: pointer;
  margin-top: 16px;
  transition: color var(--transition);
  background: none;
  border: none;
  padding: 4px 0;
}
.form-back:hover { color: var(--navy); }

/* ============================================================
   DASHBOARD PAGE
   ============================================================ */

.dashboard-page { background: var(--gray-100); min-height: 100vh; }

.dash-nav {
  background: var(--navy);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  justify-content: space-between;
}

.dash-nav__logo {
  font-size: 20px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.dash-nav__logo span { color: var(--orange); }

.dash-nav__user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.70);
}

.dash-nav__avatar {
  width: 34px;
  height: 34px;
  background: var(--slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.dash-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px;
}

.dash-setup-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  border-radius: var(--radius);
  padding: 40px 40px;
  color: white;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.dash-setup-banner::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232,71,10,.18) 0%, transparent 70%);
}

.dash-setup-banner__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}

.dash-setup-banner__headline {
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.dash-setup-banner__sub {
  font-size: 15px;
  color: rgba(255,255,255,.68);
  max-width: 520px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.dash-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.dash-card__header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.dash-card__badge {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
}

.dash-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gray-100);
  border-bottom: 1px solid var(--border);
}

.dash-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.dash-table tr:last-child td { border-bottom: none; }

.dash-empty {
  padding: 64px 24px;
  text-align: center;
  color: var(--gray-400);
}

.dash-empty__icon {
  font-size: 40px;
  margin-bottom: 12px;
  opacity: .4;
}

.dash-empty__msg {
  font-size: 15px;
  font-weight: 500;
}

.dash-settings {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  margin-top: 24px;
}

.dash-settings__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.settings-row:last-child { border-bottom: none; }

.settings-row__label { color: var(--gray-600); font-weight: 500; }
.settings-row__value { color: var(--navy); font-weight: 600; }

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

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hiw__grid { grid-template-columns: 1fr; }
  .hiw__grid::before { display: none; }

  .proof__stats { grid-template-columns: 1fr 1fr; }
  .proof__testimonials { grid-template-columns: 1fr; }

  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero { padding: 64px 0; }

  .industries__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .proof__stats { grid-template-columns: 1fr 1fr; }
  .proof__stat { padding: 24px 16px; }
  .proof__stat-num { font-size: 32px; }

  .footer__top { flex-direction: column; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .antipitch__headline { font-size: 26px; }

  .dash-setup-banner { padding: 28px 24px; }
  .dash-nav { padding: 0 16px; }
  .dash-body { padding: 24px 16px; }
}

@media (max-width: 480px) {
  .industries__grid { grid-template-columns: 1fr; }
  .hero__trust { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* Mobile nav open state */
.nav.open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  z-index: 99;
}

.nav.open .nav__cta {
  display: block;
  padding: 0 24px 24px;
  position: fixed;
  top: calc(68px + 160px);
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 99;
}
