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

/* ===== BRAND VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --gold: #d4a534;
  --gold-hover: #b8911e;
  --gray: #4a4a4a;
  --concrete-gray: #8b8b8b;
  --light-bg: #f5f5f3;
  --white: #ffffff;
  --red: #c0392b;
  --green: #27ae60;
}

/* ===== BODY ===== */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--gray);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* ===== SOCIAL PROOF TICKER ===== */
.ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  height: 40px;
  overflow: hidden;
}

.ticker-track {
  position: relative;
  height: 100%;
}

.ticker-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 0 1rem;
}

.ticker-item.active {
  opacity: 1;
  transform: translateY(0);
}

.ticker-stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding-top: 40px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin-bottom: 1.5rem;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-eyebrow-large {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 4px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-micro {
  font-size: 0.75rem;
  color: #888;
  margin-top: 1rem;
  font-style: italic;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
}

.cta-small {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.cta-full {
  width: 100%;
  text-align: center;
}

.cta-large {
  padding: 1.25rem 3rem;
  font-size: 1.15rem;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--black);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 2px solid var(--gold);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== SECTION TAG (reusable) ===== */
.section-tag {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  background: var(--black);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.stat {
  flex: 1;
  max-width: 250px;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid #333;
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
  margin-top: 0.25rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 5rem 2rem;
  background: var(--white);
}

.how-it-works-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works .section-tag {
  font-size: 1rem;
  letter-spacing: 4px;
}

.how-it-works h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.steps-list {
  text-align: left;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
}

.step-item:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.step-text h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.step-text p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.steps-bridge {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 8px;
  text-align: center;
}

.steps-bridge p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.5rem;
}

/* ===== VALUE STACK SECTION ===== */
.value-stack-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: var(--white);
}

.value-stack-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.value-stack-section h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.value-stack-section .section-tag {
  font-size: 1rem;
  letter-spacing: 4px;
}

.value-stack-sub {
  font-size: 1.05rem;
  color: #bbb;
  margin-bottom: 3rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.value-stack-list {
  text-align: left;
  margin-bottom: 2rem;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

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

.value-row-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.value-check {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-row-left strong {
  font-size: 1rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.15rem;
}

.value-row-left p {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.4;
}

.value-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 1rem;
}

/* Value total + strikethrough */
.value-total {
  margin: 2rem 0 3rem;
  padding: 1.5rem;
  background: rgba(212, 165, 52, 0.1);
  border: 2px solid var(--gold);
  border-radius: 8px;
}

.value-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.value-total-crossed {
  text-decoration: line-through;
  color: var(--red);
  font-size: 1.3rem;
}

.value-total-real {
  border-top: 1px solid var(--gold);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.value-total-free {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ===== 3-STEP LEAD FORM ===== */
.three-step-form {
  max-width: 440px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  color: var(--black);
  text-align: center;
}

/* Progress bar */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
}

.progress-step.active {
  background: var(--gold);
  color: var(--black);
}

.progress-step.completed {
  background: var(--green);
  color: var(--white);
}

.progress-line {
  height: 3px;
  width: 40px;
  background: #e0e0e0;
  transition: background 0.3s;
}

.progress-line.active {
  background: var(--gold);
}

/* Selection group labels */
.selection-group-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--concrete-gray);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  text-align: left;
}

/* Value fine print */
.value-fine-print {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-bottom: 3rem;
}

.form-step {
  display: none;
}

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

.form-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.form-step h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"] {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 0.65rem;
  transition: border-color 0.3s;
}

.form-step input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-note {
  font-size: 0.75rem;
  color: var(--concrete-gray);
  margin-top: 0.75rem;
}

.form-step-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Project type radio grid */
.project-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.project-type-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  transition: border-color 0.2s, background-color 0.2s;
}

.project-type-option:hover {
  border-color: var(--gold);
}

.project-type-option input[type="radio"] {
  display: none;
}

.project-type-option input[type="radio"]:checked + span {
  color: var(--gold);
}

.project-type-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212, 165, 52, 0.08);
}

.skip-link {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: var(--concrete-gray);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 0.75rem;
  padding: 0.5rem;
}

.skip-link:hover {
  color: var(--black);
}

/* Success state */
.success-icon {
  width: 60px;
  height: 60px;
  background: var(--green);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-step-success h3 {
  color: var(--black);
}

.form-step-success p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Success next steps */
.success-next-steps {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  margin-top: 1.5rem;
}

.success-next-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.success-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.success-list li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.5;
}

.success-list li:last-child {
  border-bottom: none;
}

.trust .section-tag {
  font-size: 1rem;
  letter-spacing: 4px;
}

/* ===== TRUST / ABOUT ===== */
.trust {
  padding: 5rem 2rem;
  background: var(--light-bg);
  text-align: center;
}

.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.trust h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-intro {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #e8e8e8;
  transition: transform 0.3s, box-shadow 0.3s;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 5rem 2rem;
  background: var(--white);
  text-align: center;
}

.testimonials-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-section h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 3rem;
}

.testimonial-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 2rem;
  width: 300px;
  text-align: left;
  border: 2px solid transparent;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.featured-testimonial {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212, 165, 52, 0.15);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-meta strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
}

.testimonial-meta span {
  font-size: 0.8rem;
  color: var(--concrete-gray);
}

.testimonial-fear-label {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(212, 165, 52, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 5rem 2rem;
  background: var(--black);
  text-align: center;
  color: var(--white);
}

.final-cta-inner {
  max-width: 650px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.final-cta-inner > p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.final-cta-scarcity {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 1.25rem;
  font-style: italic;
}

.final-cta-phone {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.final-cta-phone a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.final-cta-phone a:hover {
  color: var(--white);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--black);
  color: #aaa;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-img {
  width: 200px;
  height: auto;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--concrete-gray);
  margin-bottom: 0.5rem;
}

.footer-location {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.footer-contact-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-left p {
  margin-bottom: 0.3rem;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-nav-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s;
  white-space: nowrap;
}

.footer-nav-link:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 1rem 2rem;
  border-top: 1px solid #333;
  font-size: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== LEAD MAGNET POPUP ===== */
.lm-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lm-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lm-popup {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.lm-popup-overlay.active .lm-popup {
  transform: translateY(0);
}

.lm-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
}

.lm-popup-close:hover {
  color: var(--black);
}

.lm-popup-logo {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.lm-popup-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.lm-popup h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.lm-popup > p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.lm-note {
  font-size: 0.75rem;
  color: var(--concrete-gray);
  margin-top: 0.75rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ticker-item {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    max-width: none;
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid #333;
  }

  .how-it-works h2 {
    font-size: 1.6rem;
  }

  .value-stack-section h2 {
    font-size: 1.6rem;
  }

  .value-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .value-price {
    margin-left: 2.1rem;
  }

  .project-type-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust h2 {
    font-size: 1.6rem;
  }

  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 100%;
    max-width: 400px;
  }

  .testimonials-section h2 {
    font-size: 1.6rem;
  }

  .final-cta h2 {
    font-size: 1.6rem;
  }

  .sticky-cta span {
    display: none;
  }

  .lm-popup {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-eyebrow-large {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .how-it-works .section-tag,
  .value-stack-section .section-tag,
  .trust .section-tag {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .value-total {
    padding: 1.25rem;
  }

  .value-total-crossed {
    font-size: 1.1rem;
  }

  .value-total-free {
    font-size: 1.6rem;
  }

  .progress-step {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .progress-line {
    width: 30px;
  }

  .success-list li {
    font-size: 0.8rem;
  }

  .sticky-cta {
    padding: 0.6rem 1rem;
  }

  .sticky-cta .cta-small {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
  }

  .project-type-option {
    padding: 0.85rem 1rem;
    min-height: 44px;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }

  .final-cta-scarcity {
    font-size: 0.8rem;
  }

  .lm-popup h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-eyebrow,
  .hero-eyebrow-large {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .hero-logo {
    width: 160px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .how-it-works {
    padding: 3rem 1.25rem;
  }

  .how-it-works h2 {
    font-size: 1.35rem;
  }

  .step-item {
    gap: 0.75rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .value-stack-section {
    padding: 3rem 1.25rem;
  }

  .three-step-form {
    padding: 1.5rem 1.25rem;
  }

  .trust {
    padding: 3rem 1.25rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust h2 {
    font-size: 1.35rem;
  }

  .testimonials-section {
    padding: 3rem 1.25rem;
  }

  .final-cta {
    padding: 3rem 1.25rem;
  }

  .final-cta h2 {
    font-size: 1.35rem;
  }

  .value-stack-section h2 {
    font-size: 1.35rem;
  }

  .value-total-line {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .value-total-crossed {
    font-size: 1rem;
  }

  .value-total-free {
    font-size: 1.4rem;
  }

  .value-fine-print {
    font-size: 0.75rem;
    margin-bottom: 2rem;
  }

  .progress-step {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }

  .progress-line {
    width: 24px;
    height: 2px;
  }

  .form-step h3 {
    font-size: 1.1rem;
  }

  .form-step-label {
    font-size: 0.65rem;
  }

  .selection-group-label {
    font-size: 0.65rem;
  }

  .success-next-steps {
    padding: 1rem;
  }

  .success-next-label {
    font-size: 0.65rem;
  }

  .success-list li {
    font-size: 0.78rem;
    padding: 0.4rem 0;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .hero-micro {
    font-size: 0.7rem;
  }

  .steps-bridge {
    padding: 1.5rem 1rem;
  }

  .steps-bridge p {
    font-size: 0.95rem;
  }

  .cta-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ===== EXTRA SMALL (360px and below - iPhone SE, small Android) ===== */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.3rem;
  }

  .hero-eyebrow,
  .hero-eyebrow-large {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .hero-logo {
    width: 130px;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .cta-button {
    font-size: 0.85rem;
    padding: 0.8rem 1.2rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  .how-it-works h2,
  .value-stack-section h2,
  .trust h2,
  .testimonials-section h2,
  .final-cta h2 {
    font-size: 1.2rem;
  }

  .step-text h3 {
    font-size: 0.9rem;
  }

  .step-text p {
    font-size: 0.85rem;
  }

  .value-row-left strong {
    font-size: 0.9rem;
  }

  .value-row-left p {
    font-size: 0.8rem;
  }

  .three-step-form {
    padding: 1.25rem 1rem;
  }

  .form-step input[type="text"],
  .form-step input[type="email"],
  .form-step input[type="tel"] {
    font-size: 0.85rem;
    padding: 0.75rem 0.85rem;
  }

  .project-type-option {
    font-size: 0.78rem;
    padding: 0.7rem 0.85rem;
  }

  .testimonial-quote {
    font-size: 0.85rem;
  }

  .lm-popup {
    padding: 1.5rem 1rem;
  }

  .lm-popup h2 {
    font-size: 1.1rem;
  }

  .lm-popup > p {
    font-size: 0.85rem;
  }

  .footer-logo-img {
    width: 150px;
  }

  .footer-nav-link {
    font-size: 0.75rem;
  }
}
