/* =========================================================================
   Express Asphalt Solutions, Pothole Repair Service
   Brand-matched to useasphalt.com
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand palette, extracted from useasphalt.com */
  --brand-gold: #F8B526;
  --brand-gold-dark: #d99a15;
  --brand-navy: #121E36;
  --brand-navy-deep: #0A1428;
  --brand-teal-navy: #1A303C;
  --brand-navy-overlay: rgba(18, 30, 54, 0.88);

  /* Neutrals */
  --ink: #212D45;
  --ink-2: #4B4F58;
  --ink-3: #7a7f8a;
  --line: #e4e6ea;
  --bg: #F5F5F5;
  --bg-card: #ffffff;

  /* Support */
  --success: #16a34a;
  --danger: #dc2626;

  /* Typography */
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 18px;
  --text-lg: 22px;
  --text-xl: 28px;
  --text-2xl: 36px;
  --text-3xl: 48px;
  --text-hero: 64px;

  /* Layout */
  --radius: 7px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(18, 30, 54, 0.08);
  --shadow-md: 0 6px 20px rgba(18, 30, 54, 0.12);
  --shadow-lg: 0 12px 40px rgba(18, 30, 54, 0.18);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 16px;
  line-height: 1.15;
}
h1 { font-size: var(--text-hero); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--text-2xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-lg); }
p { margin: 0 0 12px; }
a { color: var(--brand-navy); text-decoration: none; }
a:hover { color: var(--brand-gold-dark); }
img { max-width: 100%; height: auto; display: block; }

/* ========== LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 72px 0;
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  h1 { font-size: 42px; }
  h2 { font-size: 28px; }
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-sub {
  font-size: var(--text-md);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto;
}
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-gold-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--brand-gold); }

/* ========== TOP CALL BAR (mirrors useasphalt.com) ========== */
.top-bar {
  background: var(--bg);
  padding: 10px 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--line);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.top-bar-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-gold-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--text-sm);
}
.top-bar-phone a { color: var(--brand-gold-dark); }
.top-bar-social {
  display: flex;
  gap: 14px;
  color: var(--ink-3);
}
.top-bar-social a {
  color: var(--ink-3);
  transition: color 0.15s;
}
.top-bar-social a:hover { color: var(--brand-gold-dark); }
@media (max-width: 600px) {
  .top-bar-social { display: none; }
}

/* ========== HEADER (mirrors useasphalt.com) ========== */
.site-header {
  background: #ffffff;
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 58px;
  height: 70px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--brand-navy);
  font-size: var(--text-md);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brand-gold-dark);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .brand-sub { font-size: 9px; letter-spacing: 0.06em; }
}
@media (max-width: 480px) {
  .brand-sub { white-space: normal; line-height: 1.2; }
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--brand-gold-dark); }
.main-nav .nav-active { color: var(--brand-gold-dark); }

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--brand-gold);
  color: var(--brand-navy);
  border-color: var(--brand-gold);
}
.btn-primary:hover {
  background: var(--brand-gold-dark);
  border-color: var(--brand-gold-dark);
  color: var(--brand-navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(248, 181, 38, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}
.btn-outline:hover {
  background: var(--brand-navy);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--brand-navy);
  border-color: #fff;
}
.btn-lg {
  padding: 18px 36px;
  font-size: var(--text-base);
}
.btn-block { width: 100%; }
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(18, 30, 54, 0.92) 0%, rgba(10, 20, 40, 0.94) 100%),
              url('assets/hero-bg.jpg') center/cover no-repeat, var(--brand-navy);
  color: #fff;
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero::before {
  /* Yellow diagonal stripe accent, echoing useasphalt.com */
  content: '';
  position: absolute;
  bottom: -20px;
  left: -5%;
  right: -5%;
  height: 6px;
  background: var(--brand-gold);
  transform: rotate(-3deg);
  opacity: 0.9;
  z-index: 1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero-copy .eyebrow { color: var(--brand-gold); }
.hero-title {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero-title-accent {
  color: var(--brand-gold);
  display: block;
}
@media (max-width: 768px) {
  .hero-title { font-size: 40px; }
}
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: var(--text-md);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 500px;
}
.trust-item-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.7);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Hero quote card (matches useasphalt.com hero form card) */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand-gold);
}
.hero-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--brand-navy);
  margin-bottom: 6px;
}
.hero-card-sub {
  color: var(--ink-2);
  font-size: var(--text-sm);
  margin-bottom: 20px;
}
.hero-card-preview {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.preview-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: var(--text-sm);
  color: var(--ink-2);
}
.preview-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 2px dashed var(--line);
}
.preview-total-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--brand-navy);
}
.preview-total-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--brand-navy);
}
.preview-note {
  font-size: var(--text-xs);
  color: var(--ink-3);
  margin-top: 4px;
  text-align: center;
}

/* ========== TRUSTED BY STRIP ========== */
.trusted-strip {
  background: var(--brand-navy);
  padding: 20px 0;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.trusted-strip::before,
.trusted-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.trusted-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--brand-navy), transparent);
}
.trusted-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--brand-navy), transparent);
}
.trusted-track {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trusted-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.trusted-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-gold);
}

/* ========== HOW IT WORKS ========== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
}
.how-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.how-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--brand-gold);
  color: var(--brand-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
}
.how-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--brand-navy);
  margin-bottom: 8px;
}
.how-desc {
  color: var(--ink-2);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ========== QUOTE WIZARD SECTION ========== */
.quote-section {
  background: var(--bg);
}
.quote-shell {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--brand-gold);
}
@media (max-width: 640px) {
  .quote-shell { padding: 24px 20px; }
}
.quote-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.progress-step {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
}
.progress-step.active { background: var(--brand-gold); }
.progress-step.completed { background: var(--brand-navy); }

.step-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-gold-dark);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--brand-navy);
  margin-bottom: 8px;
}
.step-help {
  color: var(--ink-2);
  font-size: var(--text-sm);
  margin-bottom: 24px;
}

.form-row {
  margin-bottom: 20px;
}
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .form-row-2col { grid-template-columns: 1fr; }
}
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--brand-navy);
  margin-bottom: 6px;
}
.form-label-optional {
  font-weight: 400;
  color: var(--ink-3);
  font-size: var(--text-xs);
  margin-left: 4px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(248, 181, 38, 0.15);
}
.form-textarea { min-height: 90px; resize: vertical; }
.form-hint {
  font-size: var(--text-xs);
  color: var(--ink-3);
  margin-top: 4px;
}
.form-error {
  font-size: var(--text-sm);
  color: var(--danger);
  margin-top: 6px;
  display: none;
}
.form-error.show { display: block; }

.file-drop {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--bg);
}
.file-drop:hover {
  border-color: var(--brand-gold);
  background: rgba(248, 181, 38, 0.04);
}
.file-drop-icon { font-size: 32px; color: var(--brand-gold-dark); margin-bottom: 8px; }
.file-drop-text {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brand-navy);
  font-size: var(--text-sm);
}
.file-drop-sub {
  color: var(--ink-3);
  font-size: var(--text-xs);
  margin-top: 4px;
}
.file-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.file-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
}
.file-thumb img { width: 100%; height: 100%; object-fit: cover; }
.file-thumb-remove {
  position: absolute;
  top: 3px; right: 3px;
  width: 18px; height: 18px;
  background: rgba(18, 30, 54, 0.85);
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}

.counter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .counter-row { grid-template-columns: 1fr; }
}
.counter-card {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.counter-card-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-navy);
  font-size: var(--text-sm);
}
.counter-card-sub {
  color: var(--ink-3);
  font-size: var(--text-xs);
}
.counter-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.counter-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-navy);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.counter-btn:hover { background: var(--brand-gold-dark); }
.counter-btn:disabled { background: var(--line); color: var(--ink-3); cursor: not-allowed; }
.counter-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--brand-navy);
  min-width: 30px;
  text-align: center;
}

.opt-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.opt-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
}
.opt-card:hover {
  border-color: var(--brand-gold);
  background: rgba(248, 181, 38, 0.03);
}
.opt-card input[type="checkbox"],
.opt-card input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--brand-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.opt-card.selected {
  border-color: var(--brand-gold);
  background: rgba(248, 181, 38, 0.06);
}
.opt-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-navy);
  font-size: var(--text-sm);
  margin-bottom: 2px;
}
.opt-desc {
  color: var(--ink-2);
  font-size: var(--text-xs);
  line-height: 1.5;
}
.opt-price {
  margin-left: auto;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-navy);
  font-size: var(--text-sm);
  white-space: nowrap;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Quote summary sidebar (visible from step 3 onward) */
.quote-summary {
  background: var(--brand-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.summary-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--brand-gold);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,.85);
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.summary-total-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: var(--text-md);
}
.summary-total-value {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--brand-gold);
  font-size: var(--text-2xl);
}

/* ========== PAYMENT OPTIONS ========== */
.pay-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.pay-option {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
}
.pay-option:hover {
  border-color: var(--brand-gold);
}
.pay-option.selected {
  border-color: var(--brand-gold);
  background: rgba(248, 181, 38, 0.05);
  box-shadow: 0 0 0 3px rgba(248, 181, 38, 0.12);
}
.pay-option-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pay-option-radio {
  margin-top: 3px;
  accent-color: var(--brand-gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.pay-option-body {
  flex: 1;
}
.pay-option-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-navy);
  font-size: var(--text-md);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pay-option-badge {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}
.pay-option-desc {
  color: var(--ink-2);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin-bottom: 8px;
}
.pay-option-detail {
  color: var(--ink-3);
  font-size: var(--text-xs);
  font-style: italic;
}
.pay-option-amount {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}
.pay-option-amount-value {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--brand-navy);
  font-size: var(--text-lg);
  line-height: 1;
}
.pay-option-amount-label {
  color: var(--ink-3);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.pay-details {
  margin-top: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  display: none;
}
.pay-details.show { display: block; }
.pay-details-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-navy);
  font-size: var(--text-sm);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pay-note {
  padding: 14px 16px;
  background: rgba(248, 181, 38, 0.1);
  border-left: 3px solid var(--brand-gold);
  border-radius: 4px;
  font-size: var(--text-sm);
  color: var(--ink);
  margin-top: 16px;
  line-height: 1.5;
}
.pay-note strong { color: var(--brand-navy); font-weight: 700; }

/* ========== SUCCESS STATE ========== */
.success-state {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.success-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--brand-navy);
  margin-bottom: 12px;
}
.success-msg {
  color: var(--ink-2);
  font-size: var(--text-md);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.success-details {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.7;
}
.success-details strong { color: var(--brand-navy); }

/* ========== PROOF (Before/After) ========== */
.proof-section { background: var(--bg); }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-top: 40px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.proof-project {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.proof-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
@media (max-width: 640px) {
  .proof-pair { grid-template-columns: 1fr; gap: 14px; }
  .proof-arrow { transform: rotate(90deg); justify-self: center; }
}
.proof-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: #1a1a1a;
}
.proof-card picture,
.proof-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.proof-svg { display: block; width: 100%; height: 100%; }
.proof-label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(18,30,54,.92);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.proof-label-after {
  background: var(--brand-gold);
  color: var(--brand-navy);
}
.proof-arrow {
  color: var(--brand-navy);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.85;
}
.proof-meta {
  text-align: center;
  padding: 0 8px;
}
.proof-meta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--brand-navy);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.proof-meta-desc {
  color: var(--ink-2);
  font-size: var(--text-sm);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto;
}

/* ========== PRICING ========== */
.pricing-section {
  background: var(--brand-navy);
  color: #fff;
}
.pricing-section h2 { color: #fff; }
.pricing-section .section-sub { color: rgba(255,255,255,.8); }
.pricing-section .eyebrow { color: var(--brand-gold); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-table {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: center;
  font-size: var(--text-sm);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row-head {
  background: rgba(255,255,255,.05);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-gold);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-service {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-heading);
}
.pricing-desc {
  color: rgba(255,255,255,.65);
  font-size: var(--text-xs);
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 400;
}
.pricing-value {
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-weight: 800;
  text-align: right;
  font-size: var(--text-md);
}
@media (max-width: 640px) {
  .pricing-row { grid-template-columns: 1fr auto; padding: 14px 18px; }
  .pricing-row > *:nth-child(2) { display: none; }
}

.pricing-fine-print {
  color: rgba(255,255,255,.65);
  font-size: var(--text-xs);
  text-align: center;
  margin-top: 24px;
  line-height: 1.7;
}

/* ========== INCLUDED / FAQ ========== */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .included-grid { grid-template-columns: 1fr; gap: 40px; }
}
.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: var(--text-base);
}
.included-list li:last-child { border-bottom: none; }
.included-check {
  color: var(--brand-gold-dark);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s;
  background: #fff;
}
.faq-list details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--brand-gold);
}
.faq-list summary {
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brand-navy);
  font-size: var(--text-sm);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  color: var(--brand-gold-dark);
  font-weight: 800;
  font-size: 20px;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after {
  content: '−';
}
.faq-list p {
  padding: 0 20px 16px;
  color: var(--ink-2);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

/* ========== FOOTER CTA ========== */
.footer-cta {
  background: linear-gradient(135deg, var(--brand-gold) 0%, #f4a800 100%);
  padding: 60px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta h2 {
  color: var(--brand-navy);
  font-size: 32px;
  margin: 0;
}
.footer-cta-eyebrow {
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  margin-bottom: 8px;
  opacity: 0.85;
}
.footer-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-cta .btn-primary {
  background: var(--brand-navy);
  color: #fff;
  border-color: var(--brand-navy);
}
.footer-cta .btn-primary:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.footer-cta .btn-outline {
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}
.footer-cta .btn-outline:hover {
  background: var(--brand-navy);
  color: #fff;
}

/* ========== SITE FOOTER ========== */
.site-footer {
  background: var(--brand-navy-deep);
  color: rgba(255,255,255,.75);
  padding: 60px 0 24px;
  font-size: var(--text-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: var(--text-base);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-brand img { width: 50px; height: auto; }
.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: var(--text-md);
  line-height: 1.2;
}
.footer-brand-sub {
  color: var(--brand-gold);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  padding: 4px 0;
}
.footer-col a {
  color: rgba(255,255,255,.7);
  transition: color 0.15s;
  font-size: var(--text-sm);
}
.footer-col a:hover { color: var(--brand-gold); }

.footer-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-gold);
  font-size: var(--text-md);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
}

/* ========== UTILITIES ========== */
.hide-desktop { display: none; }
@media (max-width: 768px) {
  .hide-desktop { display: block; }
  .hide-mobile { display: none; }
}

/* Mobile payment card layout fix - appended to end */
@media (max-width: 640px) {
  .pay-options .pay-option .pay-option-head { flex-wrap: wrap !important; }
  .pay-options .pay-option .pay-option-body { flex: 1 1 100% !important; order: 3 !important; min-width: 0 !important; }
  .pay-options .pay-option .pay-option-radio { order: 1 !important; }
  .pay-options .pay-option .pay-option-amount { order: 2 !important; margin-left: auto !important; }
  .pay-options .pay-option .pay-option-amount-value { font-size: var(--text-md) !important; }
  .pay-options .pay-option .pay-option-title { font-size: var(--text-sm) !important; }
}

/* ========== AUTH HERO + PO HERO PANELS ========== */
.auth-hero, .po-hero {
  background: linear-gradient(135deg, rgba(248, 181, 38, 0.08), rgba(248, 181, 38, 0.02));
  border: 1px solid rgba(248, 181, 38, 0.35);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 20px;
}
.po-hero {
  background: linear-gradient(135deg, rgba(26, 48, 60, 0.06), rgba(26, 48, 60, 0.02));
  border-color: rgba(26, 48, 60, 0.25);
}
.auth-hero-eyebrow, .po-hero-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.po-hero-eyebrow { color: var(--color-navy); }
.auth-hero-title, .po-hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
.auth-hero-desc, .po-hero-desc {
  font-size: var(--text-sm);
  color: var(--color-body);
  line-height: 1.55;
}

/* ========== SOFT OUT LINK ========== */
.soft-out {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(0,0,0,0.12);
  text-align: center;
}
.soft-out-link {
  display: inline-block;
  color: var(--color-navy);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.soft-out-link:hover { color: var(--color-primary); }

/* ========== LEAD MODAL ========== */
.lead-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 30, 54, 0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}
.lead-modal-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px 26px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: leadModalIn 0.2s ease-out;
}
@keyframes leadModalIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.lead-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: rgba(0,0,0,0.45);
  cursor: pointer;
  padding: 4px 8px;
}
.lead-modal-close:hover { color: var(--color-navy); }
.lead-modal-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.lead-modal-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
.lead-modal-desc {
  font-size: var(--text-sm);
  color: var(--color-body);
  line-height: 1.5;
  margin-bottom: 18px;
}
.lead-modal-fine {
  font-size: var(--text-xs);
  color: rgba(75,79,88,0.7);
  margin-top: 10px;
  text-align: center;
}

/* ========== HOT PATCH CTA ========== */
.hot-patch-cta {
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--color-navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  flex-wrap: wrap;
}
.hot-patch-cta-copy { flex: 1 1 340px; min-width: 0; }
.hot-patch-cta-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.hot-patch-cta-title {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}
.hot-patch-cta-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.hot-patch-cta .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: transparent;
  flex: 0 0 auto;
}
.hot-patch-cta .btn-outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-navy);
}

/* Business-type dropdown hint styling */
#hint-biztype {
  margin-top: 8px;
  font-size: var(--text-xs);
  color: var(--color-body);
  line-height: 1.5;
}
#hint-biztype.warn {
  color: var(--color-navy);
  background: rgba(248, 181, 38, 0.12);
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid var(--color-primary);
}
