/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --color-primary: #1a3c2a;
    --color-primary-light: #2d5a3f;
    --color-primary-dark: #0f2419;
    --color-accent: #d97706;
    --color-accent-hover: #b45309;
    --color-accent-light: #fef3c7;
    --color-cream: #faf8f4;
    --color-cream-dark: #f0ece4;
    --color-white: #ffffff;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-lighter: #9ca3af;
    --color-border: #e5e2db;
    --color-red: #dc2626;
    --color-red-light: #fef2f2;
    --color-green-light: #f0fdf4;
    --color-green-badge: #15803d;

    --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --max-width: 1140px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
}

img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }

/* ============================================
   UTILITY
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
}

.section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 640px;
    line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-border);
}
.btn-ghost:hover {
    border-color: var(--color-primary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}
.nav.scrolled {
    box-shadow: var(--shadow-md);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-primary-dark);
}
.nav-logo span {
    color: var(--color-accent);
}
.nav-badge {
    display: inline-block;
    background: var(--color-accent-light);
    color: var(--color-accent-hover);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 100px;
    margin-left: 10px;
    text-transform: uppercase;
    vertical-align: middle;
}
.nav-cta {
    display: none;
}
@media (min-width: 640px) {
    .nav-cta { display: inline-flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(170deg, var(--color-cream) 0%, var(--color-white) 60%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,60,42,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}
.badge-beta {
    background: var(--color-primary);
    color: var(--color-white);
}
.badge-price {
    background: var(--color-accent-light);
    color: var(--color-accent-hover);
}
.hero h1 {
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1.05;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}
.hero-sub {
    font-size: clamp(17px, 2vw, 19px);
    color: var(--color-text-light);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-sub strong {
    color: var(--color-primary-dark);
    font-weight: 700;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.hero-ctas .btn {
    flex: 1 1 240px;
    min-width: 240px;
    white-space: nowrap;
}
@media (max-width: 480px) {
    .hero-ctas .btn { flex: 1 1 100%; }
}
.hero-trust {
    font-size: 14px;
    color: var(--color-text-lighter);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-trust svg {
    flex-shrink: 0;
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-white);
}
.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
    min-width: 100%;
    position: relative;
}
.carousel-slide img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}
@media (max-width: 640px) {
    .carousel-slide img {
        height: 260px;
    }
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s ease;
    z-index: 2;
}
.carousel-btn:hover {
    background: var(--color-white);
}
.carousel-btn-prev { left: 12px; }
.carousel-btn-next { right: 12px; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    background: var(--color-white);
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--color-border);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.active {
    background: var(--color-primary);
    transform: scale(1.25);
}

/* Product appearance disclaimer */
.product-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 8px;
    font-style: italic;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}
.step-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: box-shadow 0.3s ease;
}
.step-card:hover {
    box-shadow: var(--shadow-md);
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 20px;
}
.step-card h3 {
    font-size: 22px;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}
.step-card p {
    color: var(--color-text-light);
    font-size: 15px;
}

/* ============================================
   INCLUDED CARDS
   ============================================ */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.included-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all 0.2s ease;
}
.included-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-sm);
}
.included-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-primary);
}
.included-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--color-primary-dark);
}
.included-card p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ============================================
   NOT INCLUDED
   ============================================ */
.not-included-section {
    background: var(--color-cream);
}
.not-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 36px;
}
.not-included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--color-text-light);
}
.not-included-item svg {
    flex-shrink: 0;
    color: var(--color-text-lighter);
}
.not-included-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--color-text-lighter);
    font-style: italic;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.pricing-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: box-shadow 0.3s ease;
}
.pricing-card:hover {
    box-shadow: var(--shadow-md);
}
.pricing-card.featured {
    border: 2px solid var(--color-primary);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--color-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}
.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}
.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-light);
}
.pricing-desc {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}
.pricing-features {
    list-style: none;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 12px;
}
.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-green-badge);
}
.pricing-card .btn {
    width: 100%;
    margin-top: 28px;
}

/* ============================================
   ROI
   ============================================ */
.roi-section {
    background: var(--color-primary-dark);
    color: var(--color-white);
}
.roi-section .section-label {
    color: var(--color-accent);
}
.roi-section .section-title {
    color: var(--color-white);
}
.roi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    align-items: center;
}
@media (max-width: 768px) {
    .roi-content { grid-template-columns: 1fr; gap: 32px; }
}
.roi-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}
.roi-text p + p { margin-top: 16px; }
.roi-callout {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.roi-callout-title {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--color-white);
}
.roi-stat {
    margin-bottom: 20px;
}
.roi-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.roi-stat-value {
    font-size: 20px;
    font-weight: 600;
}
.roi-disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 20px;
    font-style: italic;
}

/* ============================================
   YARD QUALIFICATION
   ============================================ */
.qual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
@media (max-width: 768px) {
    .qual-grid { grid-template-columns: 1fr; }
}
.qual-box {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
}
.qual-good {
    background: var(--color-green-light);
    border: 1px solid #bbf7d0;
}
.qual-bad {
    background: var(--color-red-light);
    border: 1px solid #fecaca;
}
.qual-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.qual-list {
    list-style: none;
}
.qual-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--color-text);
}
.qual-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================
   FORM
   ============================================ */
.form-section {
    background: var(--color-cream);
}
.form-container {
    max-width: 680px;
    margin: 40px auto 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
}
@media (max-width: 640px) {
    .form-container { padding: 28px 20px; }
}
.form-row {
    margin-bottom: 22px;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 500px) {
    .form-row-2 { grid-template-columns: 1fr; }
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}
.form-label .required {
    color: var(--color-red);
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color 0.2s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26,60,42,0.1);
}
.form-input.error,
.form-select.error {
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.form-error {
    font-size: 13px;
    color: var(--color-red);
    margin-top: 4px;
    display: none;
}
.form-textarea {
    min-height: 100px;
    resize: vertical;
}
.form-hint {
    font-size: 13px;
    color: var(--color-text-lighter);
    margin-top: 4px;
}
.form-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 32px 0;
}
.form-section-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}
.radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    cursor: pointer;
}
.radio-option input {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
}
.form-submit-area {
    margin-top: 32px;
    text-align: center;
}
.form-submit-area .btn {
    min-width: 280px;
}
.form-legal {
    font-size: 12px;
    color: var(--color-text-lighter);
    margin-top: 16px;
}

/* Thank you message */
.thank-you {
    display: none;
    text-align: center;
    padding: 48px 24px;
}
.thank-you.visible {
    display: block;
}
.thank-you-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.thank-you h3 {
    font-size: 26px;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}
.thank-you p {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   RESERVATION
   ============================================ */
.reservation-section {
    background: linear-gradient(170deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}
.reservation-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 768px) {
    .reservation-inner { grid-template-columns: 1fr; }
}
.reservation-text h2 {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--color-white);
    margin-bottom: 16px;
}
.reservation-text p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    line-height: 1.7;
}
.reservation-features {
    list-style: none;
    margin-top: 24px;
}
.reservation-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 14px;
}
.reservation-features li svg {
    flex-shrink: 0;
    color: var(--color-accent);
}
.reservation-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
}
.reservation-price {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}
.reservation-price-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.reservation-card .btn-primary {
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
    background: var(--color-accent);
}
.reservation-card .btn-primary:hover {
    background: var(--color-accent-hover);
}
.reservation-card-note {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
    line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 720px;
    margin: 48px auto 0;
}
.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.faq-item:hover {
    box-shadow: var(--shadow-sm);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    gap: 16px;
}
.faq-question:hover {
    background: var(--color-cream);
}
.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: var(--color-cream);
    text-align: center;
}
.final-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}
.final-cta p {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.6);
    padding: 48px 0 32px;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 8px;
}
.footer-brand span {
    color: var(--color-accent);
}
.footer-beta {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.footer-contact p {
    font-size: 14px;
    margin-bottom: 4px;
}
.footer-contact a {
    color: rgba(255,255,255,0.7);
}
.footer-contact a:hover {
    color: var(--color-white);
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.footer-links a:hover {
    color: var(--color-white);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 32px;
    padding-top: 24px;
    font-size: 13px;
    line-height: 1.7;
}
.footer-disclaimer {
    max-width: 700px;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ROOT CITY SELECTOR
   ============================================ */
.city-selector {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: linear-gradient(170deg, var(--color-cream) 0%, var(--color-white) 60%);
}
.city-selector-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 56px 44px;
    text-align: center;
    max-width: 520px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}
.city-selector-brand {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-primary-dark);
    margin-bottom: 6px;
}
.city-selector-brand span {
    color: var(--color-accent);
}
.city-selector h1 {
    font-size: clamp(24px, 3.5vw, 30px);
    color: var(--color-primary-dark);
    margin: 28px 0 12px;
}
.city-selector p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-size: 16px;
}
.city-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.city-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 28px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    line-height: 1.1;
}
.city-btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.city-btn-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.city-btn-state {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
}
.city-coming-soon {
    font-size: 13px;
    color: var(--color-text-lighter);
    letter-spacing: 0.04em;
}

/* ============================================
   THANK YOU PAGE (standalone)
   ============================================ */
.thanks-page {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 24px 64px;
    background: linear-gradient(170deg, var(--color-cream) 0%, var(--color-white) 60%);
    text-align: center;
}
.thanks-page-inner {
    max-width: 560px;
}
.thanks-page-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--color-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}
.thanks-page h1 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}
.thanks-page p {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ============================================
   FILE UPLOAD (custom-styled, replaces native UI)
   ============================================ */
.file-upload-wrapper {
    position: relative;
}
.file-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}
.file-upload-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-cream);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.file-upload-label:hover {
    border-color: var(--color-primary-light);
    background: var(--color-white);
}
.file-upload-input:focus + .file-upload-label {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26,60,42,0.1);
}
.file-upload-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}
.file-upload-status {
    font-size: 14px;
    color: var(--color-text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ============================================
   LEGAL PAGES (privacy, terms)
   ============================================ */
.legal-page {
    background: var(--color-white);
    min-height: 100vh;
}
.legal-content {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-primary-dark);
    margin: 36px 0 12px;
}
.legal-content p {
    margin-bottom: 16px;
}
.legal-content ul {
    margin: 8px 0 20px;
    padding-left: 24px;
}
.legal-content li {
    margin-bottom: 8px;
}
.legal-content strong {
    color: var(--color-primary-dark);
    font-weight: 600;
}
.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}
.legal-content a:hover {
    color: var(--color-accent-hover);
}

/* ============================================
   RESERVATION CARD — secure-note + phone fallback
   ============================================ */
.reservation-secure-note {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reservation-phone-fallback {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.12);
    line-height: 1.6;
}
.reservation-phone-fallback a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}
.reservation-phone-fallback a:hover {
    color: var(--color-accent-light);
    text-decoration: underline;
}

/* ============================================
   OPT 1 — STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta { display: none; }
@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        align-items: center;
        justify-content: center;
        padding: 14px 20px;
        background: var(--color-accent);
        color: var(--color-white);
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.12);
    }
    body { padding-bottom: 64px; } /* prevent footer overlap */
}

/* ============================================
   OPT 2 — HERO TWO-COLUMN GRID + IMAGE
   ============================================ */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero-image { position: relative; }
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}
.hero-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(26,60,42,0.9);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

/* ============================================
   OPT 3 — TRUST STRIP
   ============================================ */
.trust-strip {
    background: var(--color-cream);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 18px 0;
}
.trust-strip-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 16px 32px;
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}
.trust-pill svg {
    flex-shrink: 0;
    color: var(--color-green-badge);
}
@media (max-width: 640px) {
    .trust-strip-inner { display: grid; grid-template-columns: 1fr 1fr; }
    .trust-pill { font-size: 13px; }
}

/* ============================================
   OPT 4 — FORM 2-STEP PROGRESSIVE DISCLOSURE
   ============================================ */
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--color-text-light);
}
.form-step-progress {
    flex: 1;
    margin: 0 16px;
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.form-step-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--color-accent);
    transition: width 0.3s ease;
}
.form-step-back {
    background: none;
    border: none;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
}
.form-step-back:hover { text-decoration: underline; }

/* ============================================
   OPT 5 — PRICING FEATURED EMPHASIS
   ============================================ */
.pricing-card.featured { box-shadow: var(--shadow-lg); }
@media (min-width: 1024px) {
    .pricing-card.featured {
        /* Replaced scale (caused horizontal overflow) with translateY for elevation */
        transform: translateY(-8px);
        z-index: 2;
    }
    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }
}

/* ============================================
   ROI — CUMULATIVE COST CHART + PRODUCT HERO
   ============================================ */
.roi-lead {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-top: 12px;
    margin-bottom: 0;
    max-width: 720px;
    line-height: 1.7;
}
.roi-lead strong { color: var(--color-white); font-weight: 600; }

.roi-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: stretch;
    margin-top: 48px;
}
@media (max-width: 900px) {
    .roi-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ----- card containers (left chart + right product) ----- */
.roi-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
}
.roi-card-product {
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 55%),
        linear-gradient(160deg, rgba(167,209,184,0.10), rgba(45,90,63,0.04));
    border-color: rgba(255,255,255,0.16);
    position: relative;
    overflow: hidden;
}
.roi-card-product::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 65%);
    pointer-events: none;
}

/* ----- chart ----- */
.roi-chart {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}
.roi-chart-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: start;
}
.roi-chart-row-label {
    padding-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.roi-chart-row-title {
    font-family: var(--font-display);
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
}
.roi-break-even {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--color-accent);
    background: rgba(217,119,6,0.14);
    border: 1px solid rgba(217,119,6,0.35);
    border-radius: 100px;
    padding: 2px 6px;
    align-self: flex-start;
    line-height: 1.2;
    white-space: nowrap;
}
.roi-chart-row-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.roi-bar {
    /* Animated: starts at 0 width, transitions to var(--w) when .animated added */
    width: 0;
    min-width: 0;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white);
    transition: width 0.9s cubic-bezier(0.4,0,0.2,1) var(--d, 0ms),
                min-width 0s linear var(--d, 0ms),
                padding 0.9s cubic-bezier(0.4,0,0.2,1) var(--d, 0ms);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    overflow: hidden;
    white-space: nowrap;
}
.roi-chart.animated .roi-bar {
    width: var(--w);
    min-width: 96px;
    padding: 0 14px;
}
.roi-bar-traditional {
    background: linear-gradient(90deg, #A93226, #6E1F18);
}
.roi-bar-lopkincare {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
}
.roi-bar-label {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 10px;
    opacity: 0.85;
}
.roi-bar-value {
    font-size: 13px;
    font-weight: 700;
}
.roi-chart-summary {
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}
.roi-chart-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 4px;
}
.roi-chart-dot-traditional { background: #A93226; }
.roi-chart-dot-lopkincare { background: var(--color-accent); }

/* ----- price showcase (no product image) ----- */
.roi-product {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 100%;
    padding: 24px 0;
}
.roi-product-tagline {
    margin-top: 22px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    letter-spacing: 0.01em;
    text-align: center;
    max-width: 280px;
}
.roi-savings {
    margin-top: 10px;
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    text-align: center;
    letter-spacing: 0.01em;
}
.roi-savings strong {
    color: var(--color-accent);
    font-weight: 700;
}

/* Affirm financing line */
.roi-financing {
    margin-top: 18px;
    padding: 8px 14px;
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    letter-spacing: 0.01em;
}
.roi-financing strong {
    color: var(--color-white);
    font-weight: 600;
}
.roi-financing sup {
    font-size: 9px;
    margin-left: 1px;
    color: rgba(255,255,255,0.5);
}

/* Value stack under price */
.roi-stack {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.10);
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.78);
    width: 100%;
    max-width: 320px;
}
.roi-stack li {
    position: relative;
    padding-left: 18px;
    line-height: 1.5;
}
.roi-stack li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 8px;
    border-left: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

/* CTA row below both ROI cards */
.roi-cta-row {
    margin-top: 36px;
    text-align: center;
}
.roi-cta-btn {
    box-shadow: 0 12px 32px rgba(217,119,6,0.35);
}
.roi-cta-note {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.01em;
}
.roi-product-badge {
    background: var(--color-cream);
    color: var(--color-primary-dark);
    border-radius: var(--radius-lg);
    padding: 28px 44px 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
    text-align: center;
    line-height: 1;
    position: relative;
    z-index: 2;
}
.roi-product-badge-price {
    display: block;
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 400;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}
.roi-product-badge-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(15,36,25,0.12);
    color: var(--color-text-light);
}

.roi-compare-disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 36px;
    font-style: italic;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================
   HERO GALLERY (main image + clickable thumbs)
   ============================================ */
.hero-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4 / 3;
    background: var(--color-cream-dark);
}
.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.25s ease;
}
.hero-image-main img.swapping {
    opacity: 0;
}
.hero-image-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 14px;
}
@media (max-width: 768px) {
    .hero-image-thumbs { grid-template-columns: repeat(3, 1fr); }
}
.hero-thumb {
    position: relative;
    padding: 0;
    border: 2px solid transparent;
    background: transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
    aspect-ratio: 4 / 3;
}
.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.hero-thumb:hover {
    border-color: rgba(217,119,6,0.5);
}
.hero-thumb:hover img {
    transform: scale(1.05);
}
.hero-thumb.active {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(217,119,6,0.18);
}
.hero-thumb:focus-visible {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(217,119,6,0.35);
}
@media (max-width: 480px) {
    .hero-image-thumbs { gap: 6px; }
}

/* ============================================
   WHY LOPKIN CARE (mission section)
   ============================================ */
.why-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
    padding: 80px 0;
}
.why-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.why-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 38px);
    color: var(--color-primary-dark);
    margin: 12px 0 28px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.why-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    text-align: left;
    max-width: 640px;
    margin: 0 auto;
}
.why-body p {
    margin-bottom: 18px;
}
.why-body p:last-child {
    margin-bottom: 0;
}
.why-body strong {
    color: var(--color-primary-dark);
    font-weight: 700;
}
.why-signoff {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-text-light);
    text-transform: uppercase;
}
.why-signoff span {
    color: var(--color-accent);
    margin: 0 4px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-section {
    background: var(--color-white);
    padding: 80px 0;
}
.compare-table {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}
.compare-row {
    display: contents;
}
.compare-cell {
    padding: 18px 18px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
    display: flex;
    align-items: center;
}
.compare-row:last-child .compare-cell {
    border-bottom: none;
}
.compare-cell-label {
    background: var(--color-cream);
    font-weight: 600;
    color: var(--color-primary-dark);
    border-right: 1px solid var(--color-border);
}
.compare-cell-corner {
    background: var(--color-cream-dark);
    border-right: 1px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
}
.compare-cell-head {
    background: var(--color-cream-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 22px 18px;
    border-bottom: 2px solid var(--color-border);
}
.compare-cell-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--color-primary-dark);
    line-height: 1.2;
}
.compare-cell-sub {
    font-size: 12px;
    color: var(--color-text-lighter);
    letter-spacing: 0.02em;
}
.compare-cell-highlight {
    background: rgba(217, 119, 6, 0.06);
    font-weight: 600;
}
.compare-cell-head.compare-cell-highlight {
    background: var(--color-accent);
    color: var(--color-white);
}
.compare-cell-head.compare-cell-highlight .compare-cell-title {
    color: var(--color-white);
}
.compare-cell-head.compare-cell-highlight .compare-cell-sub {
    color: rgba(255,255,255,0.85);
}
.compare-cell-dim {
    color: var(--color-text-lighter);
}
.compare-x {
    color: var(--color-text-light);
}
.compare-x::before {
    content: '✕';
    color: var(--color-red);
    font-weight: 700;
    margin-right: 8px;
    font-size: 12px;
}
.compare-check::before {
    content: '✓';
    color: var(--color-green-badge);
    font-weight: 700;
    margin-right: 8px;
}
.compare-disclaimer {
    margin-top: 24px;
    font-size: 13px;
    color: var(--color-text-lighter);
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    /* Stack table as cards */
    .compare-table {
        grid-template-columns: 1fr;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 16px;
    }
    .compare-row {
        display: grid;
        grid-template-columns: 1fr;
        background: var(--color-white);
        border-radius: var(--radius-md);
        border: 1px solid var(--color-border);
        overflow: hidden;
    }
    .compare-row-head { display: none; }
    /* On mobile, restructure each row to show the label + 3 columns */
    .compare-cell {
        display: flex;
        justify-content: space-between;
        padding: 12px 16px;
        border-bottom: 1px solid var(--color-border);
        border-right: none;
    }
    .compare-cell-label {
        background: var(--color-cream);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .compare-cell::before {
        content: attr(data-mobile-label);
        font-weight: 600;
        color: var(--color-text-light);
    }
}

/* ============================================
   RESERVATION GUARANTEE (inside reservation card)
   ============================================ */
.reservation-guarantee {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}
.reservation-guarantee-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 1px;
}
.reservation-guarantee-text {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
}
.reservation-guarantee-text strong {
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ============================================
   FOOTER LLC LINE
   ============================================ */
.footer-llc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.footer-llc strong {
    color: var(--color-white);
    font-weight: 600;
}

/* ============================================
   T2.5 — TRUST STRIP THEMED ICONS
   ============================================ */
.trust-pill svg.trust-icon {
    color: var(--color-accent);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.trust-pill {
    gap: 10px;
}

/* ============================================
   T2.6 — TEXAS-LOCAL INSTALLER SECTION
   ============================================ */
.installer-section {
    background: var(--color-white);
    padding: 80px 0;
}
.installer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}
@media (max-width: 860px) {
    .installer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    /* Image goes on top on mobile */
    .installer-grid .installer-image { order: -1; }
}
.installer-text .section-label {
    margin-bottom: 12px;
}
.installer-text h2 {
    font-size: clamp(26px, 3.6vw, 34px);
    color: var(--color-primary-dark);
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.installer-bullets {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
.installer-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.55;
    margin-bottom: 14px;
}
.installer-bullets li svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--color-accent);
}
.installer-citation {
    margin-top: 20px;
    font-size: 13px;
    color: var(--color-text-lighter);
    font-style: italic;
    line-height: 1.5;
}
.installer-image {
    position: relative;
}
.installer-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.installer-image-caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(26,60,42,0.92);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
}

/* ============================================
   T2.7 — HERO H1 EMPHASIS
   ============================================ */
.hero h1 {
    line-height: 1.15;
}
.hero-h1-emphasis {
    font-weight: 700;
    color: var(--color-primary-dark);
    background: linear-gradient(180deg, transparent 70%, rgba(217,119,6,0.22) 70%);
    padding: 0 2px;
    letter-spacing: -0.005em;
}

/* ============================================
   T3.10 — SECTION DIVIDERS (subtle SVG curves)
   ============================================ */
.section-divider {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}
.section-divider.divider-cream-to-white { background: var(--color-cream); }
.section-divider.divider-white-to-cream { background: var(--color-white); }
.section-divider.divider-white-to-dark   { background: var(--color-white); }
.section-divider.divider-dark-to-white   { background: var(--color-primary-dark); }

/* ============================================
   T3.15 — FORM PROGRESS POLISH
   ============================================ */
.form-step-progress-fill {
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-step-label-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.form-step-check {
    display: none;
    width: 16px;
    height: 16px;
    color: var(--color-green-badge);
    flex-shrink: 0;
}
.form-step-indicator.step-2 .form-step-check {
    display: inline-block;
    animation: stepCheckPop 0.3s ease;
}
@keyframes stepCheckPop {
    0%   { transform: scale(0.4); opacity: 0; }
    60%  { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes stepSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}
.form-step.active.step-entering {
    animation: stepSlideIn 0.4s ease both;
}

/* ============================================
   T3.16 — SCROLL ACCENT FLASH (high-impact numbers)
   ============================================ */
.accent-flash { display: inline-block; position: relative; }
@keyframes accentFlashPulse {
    0%   { background-position: 0 0;     box-shadow: 0 0 0 0 rgba(217,119,6,0); }
    25%  { background-color: rgba(217,119,6,0.18); }
    100% { background-color: transparent; box-shadow: 0 0 0 0 rgba(217,119,6,0); }
}
.accent-flash.is-flashed {
    animation: accentFlashPulse 1.4s ease-out both;
    border-radius: 4px;
    padding: 0 2px;
}

/* ============================================
   T4.17 — TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--color-cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
@media (max-width: 860px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-cream-dark);
    flex-shrink: 0;
}
.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.testimonial-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--color-primary-dark);
    line-height: 1.3;
    margin-bottom: 2px;
}
.testimonial-city {
    font-size: 13px;
    color: var(--color-text-lighter);
    letter-spacing: 0.02em;
}
.testimonial-quote {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.65;
    font-style: italic;
    margin: 0;
}
.testimonial-quote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-accent);
    line-height: 0;
    vertical-align: -8px;
    margin-right: 4px;
}

/* ============================================
   T4.19 — BEFORE / AFTER LAWN COMPARISON
   ============================================ */
.before-after-section {
    background: var(--color-cream);
}
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 640px) {
    .before-after-grid { grid-template-columns: 1fr; }
}
.before-after-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-white);
    aspect-ratio: 4 / 3;
}
.before-after-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.before-after-label {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(26,60,42,0.92);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}
.before-after-label.is-after {
    background: var(--color-accent);
}
.before-after-caption {
    margin-top: 24px;
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   T4.20 — SERVICE AREA MAP
   ============================================ */
.service-map-section {
    background: var(--color-white);
    padding: 64px 0;
    border-top: 1px solid var(--color-border);
}
.service-map-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.service-map-image {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-cream);
}
.service-map-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.service-map-caption {
    margin-top: 20px;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}
.service-map-caption a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}
.service-map-caption a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* ============================================
   T4.21 — MEDIA MENTIONS STRIP
   ============================================ */
.media-strip {
    background: var(--color-white);
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}
.media-strip-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-lighter);
    margin-bottom: 16px;
}
.media-strip-image {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
.media-strip-image img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
    filter: grayscale(0.15);
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.media-strip-image img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ================================================================
   AESTHETIC v2 — UNIFIED CARDS
   These rules define a single card system + apply that system to
   existing components by overriding their visual treatment.
   Functional layout/HTML untouched; only visual normalization here.
   ================================================================ */

/* ---------- Base unified card variants ---------- */
.u-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.u-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15,36,25,0.08);
    border-color: var(--color-primary-light);
}

/* Feature card — accent left-edge bar, deeper shadow */
.u-card-feature {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
.u-card-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
}

/* Glass card — for dark sections */
.u-card-glass {
    background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 32px 28px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

/* ---------- Apply unified card to .included-card ---------- */
.included-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.included-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15,36,25,0.08);
    border-color: var(--color-primary-light);
}
/* Soft cream rounded square for icon */
.included-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--color-primary);
}
.included-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

/* ---------- Pricing cards — featured = u-card-feature ---------- */
.pricing-card {
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pricing-card:not(.featured):hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15,36,25,0.08);
    border-color: var(--color-primary-light);
}
.pricing-card.featured {
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 32px rgba(15,36,25,0.10);
    position: relative;
    /* overflow visible so the "Most Popular" badge above the card is not clipped */
    overflow: visible;
}
.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    border-radius: 16px 0 0 16px;
    z-index: 1;
}

/* ---------- Yard qualification cards — clean unified, badge-driven ---------- */
.qual-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.qual-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15,36,25,0.08);
    border-color: var(--color-primary-light);
}
.qual-good,
.qual-bad {
    background: var(--color-white);
    border-color: var(--color-border);
}
.qual-box h3 {
    font-size: 22px;
    color: var(--color-primary-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.qual-good-badge,
.qual-bad-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    line-height: 1;
}
.qual-good-badge {
    color: var(--color-green-badge);
    background: rgba(21, 128, 61, 0.08);
    border: 1px solid rgba(21, 128, 61, 0.20);
}
.qual-bad-badge {
    color: var(--color-red);
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.18);
}
.qual-good-badge svg,
.qual-bad-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.qual-good-badge svg { color: var(--color-green-badge); }
.qual-bad-badge svg  { color: var(--color-red); }

/* List icon colors */
.qual-good .qual-list li svg { color: var(--color-green-badge); }
.qual-bad .qual-list li svg  { color: var(--color-red); }

/* ---------- Testimonial card alignment ---------- */
.testimonial-card {
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15,36,25,0.08);
    border-color: var(--color-primary-light);
}

/* ---------- FAQ alignment ---------- */
.faq-item {
    border-radius: 16px;
}
.faq-item:hover {
    box-shadow: 0 8px 20px rgba(15,36,25,0.06);
    border-color: var(--color-primary-light);
}

/* ================================================================
   AESTHETIC v2 — HERO H1 (bigger, tighter)
   ================================================================ */
.hero h1 {
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}
.hero-h1-emphasis {
    background: linear-gradient(180deg, transparent 76%, rgba(217,119,6,0.28) 76%, rgba(217,119,6,0.28) 92%, transparent 92%);
    padding: 0 3px;
}

/* LP pages have a slightly milder treatment via body class */
body.lp .hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

/* ================================================================
   AESTHETIC v2 — HERO TRUST ROW (embedded trust pills)
   ================================================================ */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}
.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.01em;
}
.hero-trust-pill svg {
    color: var(--color-accent);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* ================================================================
   AESTHETIC v2 — COMPARISON TABLE BREAK-OUT
   Lopkin Care column elevated, RECOMMENDED badge, asymmetric grid
   ================================================================ */
.compare-table {
    grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
    overflow: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    gap: 0;
    margin-top: 64px;
}
.compare-cell {
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}
.compare-cell-head {
    padding: 24px 20px;
    background: var(--color-white);
    border-bottom: 2px solid var(--color-border);
}
.compare-cell-head.compare-cell-highlight {
    padding: 28px 20px 22px;
    background: var(--color-accent);
    color: var(--color-white);
    border-bottom: 2px solid var(--color-accent);
}
.compare-cell-corner {
    background: transparent;
    border-right: none;
    border-bottom: 2px solid var(--color-border);
}
.compare-cell-label {
    background: var(--color-cream);
    border-right: 1px solid var(--color-border);
}
.compare-cell-highlight {
    background: rgba(217, 119, 6, 0.05);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.10);
    position: relative;
}
.compare-row-recommended-badge {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
    line-height: 1.2;
}
/* Strong $ moment in Lopkin Care column */
.compare-cell-highlight.compare-cell-price strong {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
/* Inline check/x icons replacing unicode glyphs */
.compare-x::before,
.compare-check::before {
    content: '';
    margin-right: 0;
}
.compare-icon-svg {
    flex-shrink: 0;
    margin-right: 8px;
    width: 16px;
    height: 16px;
}
.compare-icon-x { color: var(--color-red); }
.compare-icon-check { color: var(--color-green-badge); }
.compare-cell-highlight .compare-icon-check { color: var(--color-accent); }

/* Desktop elevation for the Lopkin Care column */
@media (min-width: 769px) {
    .compare-table { padding-top: 12px; padding-bottom: 12px; }
    .compare-cell-highlight {
        transform: translateY(-12px);
    }
    .compare-row:last-child .compare-cell-highlight {
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }
    .compare-cell-head.compare-cell-highlight {
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }
}

@media (max-width: 768px) {
    .compare-table {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }
    .compare-cell-highlight {
        transform: none;
    }
}

/* ================================================================
   AESTHETIC v2 — LUCIDE-STYLE SVG NORMALIZATION
   Decorative SVGs inherit currentColor + 1.5 stroke
   ================================================================ */
.icon-lucide {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    width: 24px;
    height: 24px;
}
.icon-lucide-sm {
    width: 16px;
    height: 16px;
}
.icon-lucide-22 {
    width: 22px;
    height: 22px;
}

/* ============================================
   SERVICE NEIGHBORHOODS
   ============================================ */
.nbhd-section {
    background: var(--color-cream);
    padding: 64px 0;
}
.nbhd-grid {
    list-style: none;
    padding: 0;
    margin: 32px auto 0;
    max-width: 880px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
}
.nbhd-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
.nbhd-pill:hover {
    border-color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15,36,25,0.06);
}
.nbhd-pill svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
    flex-shrink: 0;
}
.nbhd-note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--color-text-lighter);
    font-style: italic;
}

/* ============================================
   YARD QUAL — SPECIAL CASES (softened from "May not fit")
   ============================================ */
.qual-special {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.qual-special:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15,36,25,0.08);
    border-color: var(--color-primary-light);
}
.qual-special-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    line-height: 1;
    color: var(--color-accent-hover);
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.22);
}
.qual-special-badge svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent-hover);
    flex-shrink: 0;
}
/* List icon color in special-cases — amber/text-light, not red */
.qual-special .qual-list li svg {
    color: var(--color-text-lighter);
}
.qual-special-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-text-light);
    font-style: italic;
    line-height: 1.6;
}

/* ============================================
   WHAT'S INCLUDED — caveat line
   ============================================ */
.included-caveat {
    margin: 32px auto 0;
    max-width: 720px;
    text-align: center;
    font-size: 13px;
    color: var(--color-text-lighter);
    font-style: italic;
    line-height: 1.6;
    padding: 14px 20px;
    background: var(--color-cream);
    border: 1px dashed var(--color-border);
    border-radius: 12px;
}

/* ============================================
   COST CONTRAST — same lawn, different bill (rebuilt 2026-05-01)
   ============================================ */
.before-after-section {
    padding-top: 64px;
    padding-bottom: 64px;
}
.ba-eyebrow {
    text-align: center;
    margin: 0 auto 28px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-light, #5a6a5e);
    font-weight: 600;
}
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}
.ba-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    box-shadow: 0 8px 30px rgba(15, 36, 25, 0.10);
}
.ba-before {
    background: linear-gradient(180deg, #213a2a 0%, #15281c 100%);
    color: #f4ede0;
}
.ba-after {
    background: linear-gradient(180deg, #fdf6e9 0%, #f4e7c9 100%);
    color: #2c5e3f;
    border: 1px solid rgba(44, 94, 63, 0.12);
}
.ba-card-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
}
.ba-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    opacity: 0.85;
}
.ba-card-sub {
    font-size: 15px;
    opacity: 0.7;
}
/* Repeating "$200" bills — visual hammer of "every month, forever" */
.ba-bills {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-content: flex-start;
    padding: 12px 4px;
    overflow: hidden;
    /* Soft fade-out at bottom signals "...keeps going" */
    mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}
.ba-bill {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(244, 237, 224, 0.08);
    border: 1px solid rgba(244, 237, 224, 0.14);
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(244, 237, 224, 0.78);
}
/* AFTER: one big number */
.ba-big-number {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 0.95;
    margin: 8px 0;
    color: var(--color-primary, #2c5e3f);
}
.ba-currency {
    font-size: 48px;
    font-weight: 700;
    margin-top: 18px;
    opacity: 0.72;
}
.ba-num {
    font-size: 120px;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-family: var(--font-heading, "DM Serif Display"), "Georgia", serif;
}
.ba-once {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent, #b8472f);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.ba-card-foot {
    border-top: 1px solid rgba(244, 237, 224, 0.18);
    padding-top: 18px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ba-card-foot-after {
    border-top-color: rgba(44, 94, 63, 0.18);
}
.ba-foot-line {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.7;
    font-weight: 600;
}
.ba-foot-amount {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}
.ba-before .ba-foot-amount {
    color: #f6c177;
}
.ba-after .ba-foot-amount {
    color: var(--color-primary, #2c5e3f);
}
.ba-foot-sub {
    font-size: 14px;
    opacity: 0.78;
    margin-top: 4px;
}
.ba-caption {
    text-align: center;
    margin: 36px auto 0;
    max-width: 640px;
    font-size: 18px;
    color: var(--color-text-light, #5a6a5e);
    font-style: italic;
}

@media (max-width: 760px) {
    .ba-grid { grid-template-columns: 1fr; gap: 16px; }
    .ba-card { min-height: 0; padding: 26px 22px; }
    .ba-num { font-size: 88px; }
    .ba-currency { font-size: 36px; margin-top: 14px; }
    .ba-once { font-size: 20px; }
    .ba-foot-amount { font-size: 24px; }
    .ba-caption { font-size: 16px; }
    .ba-bills { padding: 10px 0; }
    .ba-bill { font-size: 12px; padding: 4px 8px; }
}

/* ============================================
   STEP-CARD photos in How It Works
   ============================================ */
.step-card .step-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(15, 36, 25, 0.08);
}
.step-card .step-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.step-card:hover .step-photo img {
    transform: scale(1.04);
}
@media (max-width: 720px) {
    .step-card .step-photo { height: 180px; }
}

/* ============================================
   WHAT'S INCLUDED — banner image
   ============================================ */
.included-banner {
    margin: 40px auto 48px;
    max-width: 1100px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(15, 36, 25, 0.10);
}
.included-banner img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}
@media (max-width: 720px) {
    .included-banner { margin: 28px auto 32px; border-radius: 12px; }
    .included-banner img { height: 220px; }
}

/* ============================================
   WHY-SECTION — 2-column with image
   ============================================ */
.why-card-with-image {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
}
.why-card-with-image .why-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.why-card-with-image .section-label {
    text-align: left;
}
.why-card-with-image .why-body {
    text-align: left;
    margin-left: 0;
}
.why-card-with-image .why-signoff {
    text-align: left;
    justify-content: flex-start;
}
.why-image {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(15, 36, 25, 0.18);
}
.why-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}
@media (max-width: 900px) {
    .why-card-with-image {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .why-card-with-image .section-label,
    .why-card-with-image .why-title,
    .why-card-with-image .why-body,
    .why-card-with-image .why-signoff {
        text-align: center;
    }
    .why-card-with-image .why-signoff { justify-content: center; }
    .why-image img { min-height: 240px; max-height: 320px; }
}

/* ============================================
   HERO with content-width background image (added 2026-05-01)
   The image is constrained to the .container width — same as the rest
   of the page; outside that card the page uses a neutral page color.
   ============================================ */
.hero.hero-bg {
    background: var(--color-cream);
    padding: 64px 0 80px;
    color: #fff;
    overflow: visible;
    min-height: 0;
}
.hero.hero-bg::before {
    /* Disable the legacy hero ambient blob */
    display: none;
}
.hero.hero-bg .hero-bg-container {
    position: relative;
    /* Stretch image to fill the card exactly — accept aspect distortion if
       the source isn't perfectly sized. */
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a3c2a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 36, 25, 0.18);
    padding: 96px 56px 80px;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.hero.hero-bg .hero-bg-container::before {
    /* Strong dark overlay focused on the left/text side for legibility,
       with a softer right side so the image still reads through. */
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 24, 16, 0.92) 0%, rgba(10, 24, 16, 0.80) 45%, rgba(10, 24, 16, 0.55) 75%, rgba(10, 24, 16, 0.40) 100%),
        linear-gradient(180deg, rgba(10, 24, 16, 0.15) 0%, rgba(10, 24, 16, 0.55) 100%);
    z-index: 0;
}
.hero.hero-bg .hero-bg-container > * {
    position: relative;
    z-index: 1;
}
.hero.hero-bg .hero-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
}
.hero.hero-bg .hero-content {
    color: #fff;
    max-width: 640px;
}
.hero.hero-bg h1 {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.40);
}
.hero.hero-bg .hero-h1-emphasis {
    color: #f6c177;
}
.hero.hero-bg .hero-sub {
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55), 0 4px 14px rgba(0, 0, 0, 0.35);
}
.hero.hero-bg .hero-sub strong {
    color: #fff;
}
.hero.hero-bg .hero-trust {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.hero.hero-bg .hero-trust-pill {
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    backdrop-filter: blur(8px);
}
.hero.hero-bg .badge-beta {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
}
.hero.hero-bg .badge-price {
    background: var(--color-accent, #d97706);
    color: #fff;
}
.hero.hero-bg .included-caveat {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.78);
}
.hero.hero-bg .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
}
.hero.hero-bg .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 720px) {
    .hero.hero-bg {
        padding: 40px 0 56px;
    }
    .hero.hero-bg .hero-bg-container {
        padding: 64px 24px 56px;
        min-height: 460px;
        border-radius: 16px;
    }
    .hero.hero-bg .hero-bg-container::before {
        background:
            linear-gradient(180deg, rgba(15, 36, 25, 0.62) 0%, rgba(15, 36, 25, 0.78) 100%);
    }
}

/* ============================================
   Divider — dark (ROI) to cream (installer)
   ============================================ */
.section-divider.divider-dark-to-cream {
    background: var(--color-primary-dark);
}

/* ============================================
   Divider — cream (installer) to dark (ROI)
   ============================================ */
.section-divider.divider-cream-to-dark {
    background: var(--color-cream);
}

/* ============================================
   WHY THIS SERVICE EXISTS (added 2026-05-01 rewrite)
   ============================================ */
.why-service-section {
    padding: 80px 0;
}
.why-service-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}
.why-service-text { text-align: left; }
.why-service-title {
    font-family: var(--font-heading, "DM Serif Display"), Georgia, serif;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.15;
    color: var(--color-primary-dark, #15281c);
    margin: 12px 0 20px;
    letter-spacing: -0.02em;
}
.why-service-body p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text, #2c3a30);
    margin-bottom: 14px;
}
.why-service-cta {
    display: inline-block;
    margin-top: 12px;
    color: var(--color-primary, #2c5e3f);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.why-service-cta:hover { color: var(--color-accent, #b8472f); }
.why-service-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 36, 25, 0.14);
}
.why-service-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}
@media (max-width: 900px) {
    .why-service-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .why-service-image img { min-height: 240px; max-height: 320px; }
}

/* ============================================
   HOMEOWNER STORIES — replaces fake testimonials
   ============================================ */
.homeowner-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.homeowner-card {
    background: var(--color-white);
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid var(--color-border, #e3e5ea);
    box-shadow: 0 4px 14px rgba(15, 36, 25, 0.05);
    text-align: left;
}
.homeowner-card .homeowner-icon {
    width: 36px;
    height: 36px;
    color: var(--color-primary, #2c5e3f);
    margin-bottom: 14px;
}
.homeowner-card .homeowner-icon svg { width: 100%; height: 100%; }
.homeowner-quote {
    font-family: var(--font-heading, "DM Serif Display"), Georgia, serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-primary-dark, #15281c);
    margin: 0 0 10px;
}
.homeowner-sub {
    font-size: 14px;
    color: var(--color-text-light, #5a6a5e);
    margin: 0;
}
@media (max-width: 900px) {
    .homeowner-stories-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================
   30-DAY SETUP SUPPORT
   ============================================ */
.setup-support-section { padding: 80px 0; }
.setup-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.setup-support-card {
    background: var(--color-cream, #f6f1e2);
    padding: 24px 22px;
    border-radius: 14px;
    border: 1px solid var(--color-border, #e3e5ea);
}
.setup-support-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary, #2c5e3f);
    margin-bottom: 12px;
}
.setup-support-icon svg { width: 100%; height: 100%; }
.setup-support-card h4 {
    font-size: 15px;
    margin: 0 0 6px;
    color: var(--color-primary-dark, #15281c);
}
.setup-support-card p {
    font-size: 14px;
    color: var(--color-text-light, #5a6a5e);
    margin: 0;
    line-height: 1.55;
}
.setup-support-fineprint {
    margin: 32px auto 0;
    max-width: 720px;
    text-align: center;
    font-size: 13px;
    color: var(--color-text-lighter, #8b8c89);
    font-style: italic;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .setup-support-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================
   ROI: soft-framing paragraph styling
   ============================================ */
.roi-soft-framing {
    margin: 28px auto 0;
    max-width: 740px;
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ============================================================
   V2 REDESIGN (added 2026-05-01) — full landing rebuild
   All styles prefixed `.v2-` so they don't collide with legacy.
   ============================================================ */

:root {
    --v2-green:        #21a447;
    --v2-green-hover:  #1c8e3e;
    --v2-green-soft:   #e6f4ea;
    --v2-dark:         #0f2d1c;
    --v2-charcoal:     #1a2024;
    --v2-text:         #1f2933;
    --v2-text-muted:   #6b7280;
    --v2-text-soft:    #94a3b8;
    --v2-border:       #e3e7ed;
    --v2-border-soft:  #eef1f5;
    --v2-bg-soft:      #f7f8fa;
    --v2-amber:        #d97706;
    --v2-amber-soft:   #fef3e7;
}

.v2-page {
    background: #fff;
    color: var(--v2-text);
    font-family: "Plus Jakarta Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}
.v2-page .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.v2-row { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.v2-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.v2-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: start; }
.v2-row-included-pricing { display: grid; grid-template-columns: 1.05fr 1.15fr; gap: 48px; align-items: start; }
.v2-row-fit-how { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }

.v2-h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.2; font-weight: 700; color: var(--v2-charcoal); margin: 0 0 18px; letter-spacing: -0.01em; }
.v2-h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25; font-weight: 700; color: var(--v2-charcoal); margin: 0 0 8px; letter-spacing: -0.01em; }
.v2-h4 { font-size: 22px; font-weight: 700; color: var(--v2-charcoal); margin: 0 0 16px; letter-spacing: -0.005em; }
.v2-muted { color: var(--v2-text-muted); margin: 0 0 18px; }

/* buttons */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    line-height: 1;
}
.v2-btn-large { padding: 16px 30px; font-size: 16px; border-radius: 10px; }
.v2-btn-primary { background: var(--v2-green); color: #fff; }
.v2-btn-primary:hover { background: var(--v2-green-hover); }
.v2-btn-outline { background: transparent; color: var(--v2-charcoal); border-color: var(--v2-border); }
.v2-btn-outline:hover { background: var(--v2-bg-soft); border-color: var(--v2-text-muted); }
.v2-btn-text { background: transparent; color: #fff; padding: 12px 8px; }
.v2-btn-text:hover { color: var(--v2-green); }
.v2-btn-white { background: #fff; color: var(--v2-charcoal); }
.v2-btn-white:hover { background: #f1f3f5; }
.v2-btn-block { width: 100%; }

/* TOP BAR */
.v2-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 18px 0;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}
.v2-topbar-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.v2-brand {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-decoration: none;
    margin-right: auto;
}
.v2-brand span { color: var(--v2-green); }
.v2-nav { display: flex; gap: 28px; }
.v2-nav a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease;
}
.v2-nav a:hover { color: #fff; }
.v2-nav-cta { padding: 10px 18px; font-size: 13px; }
.v2-nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    width: 40px; height: 40px;
    cursor: pointer;
}
.v2-nav-toggle svg { width: 24px; height: 24px; }
.v2-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 18px 32px;
    background: rgba(15, 45, 28, 0.95);
    backdrop-filter: blur(8px);
}
.v2-mobile-nav a { color: #fff; text-decoration: none; font-size: 15px; }
.v2-mobile-nav .v2-btn { margin-top: 6px; align-self: flex-start; }
.v2-topbar-solid {
    background: rgba(15, 45, 28, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* HERO */
.v2-hero {
    position: relative;
    overflow: hidden;
    background-color: #1a3c2a;
    color: #fff;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    min-height: 640px;
}
.v2-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* cover for visual punch; object-position pulls the focal point slightly
       lower so the mower + lawn stay visible when the container crops. */
    object-fit: cover;
    object-position: 50% 65%;
    z-index: 0;
    display: block;
}
.v2-hero-shade {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 22, 14, 0.55) 0%, rgba(8, 22, 14, 0.20) 45%, rgba(8, 22, 14, 0) 75%),
        linear-gradient(180deg, rgba(8, 22, 14, 0.05) 0%, rgba(8, 22, 14, 0.18) 100%);
    pointer-events: none;
}
.v2-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}
.v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--v2-green);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.v2-eyebrow-dot {
    width: 8px; height: 8px;
    background: var(--v2-green);
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(33, 164, 71, 0.18);
}
.v2-hero-h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(42px, 6.4vw, 70px);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    max-width: 760px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.v2-h1-price { color: var(--v2-green); }
.v2-hero-sub {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 540px;
    margin: 0 0 32px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.v2-hero-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.v2-hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
}
.v2-trust-dot {
    width: 8px; height: 8px;
    background: var(--v2-green);
    border-radius: 999px;
    box-shadow: 0 0 0 3px rgba(33, 164, 71, 0.20);
}

/* TRUST PILLS */
.v2-pills { background: #fff; border-bottom: 1px solid var(--v2-border-soft); padding: 28px 0; }
.v2-pills-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.v2-pill { display: flex; align-items: center; gap: 14px; }
.v2-pill-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--v2-green-soft);
    color: var(--v2-charcoal);
}
.v2-pill-icon svg { width: 24px; height: 24px; display: block; }
.v2-pill h4 { font-size: 14px; font-weight: 700; margin: 0 0 4px; color: var(--v2-charcoal); }
.v2-pill p { font-size: 13px; color: var(--v2-text-muted); margin: 0; line-height: 1.5; }

/* WHY SETUP IS HARD */
.v2-why { padding: 72px 0; background: #fff; }
.v2-why-photo { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 30px rgba(15, 36, 25, 0.10); }
.v2-why-photo img { display: block; width: 100%; height: auto; min-height: 380px; object-fit: cover; }
.v2-why-text p { color: var(--v2-text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.v2-checklist { list-style: none; padding: 0; margin: 22px 0 0; }
.v2-checklist li { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--v2-charcoal); font-weight: 500; font-size: 15px; }
.v2-checklist svg { width: 22px; height: 22px; flex-shrink: 0; }

/* WHAT'S INCLUDED + PRICING */
.v2-included-pricing { padding: 64px 0; background: var(--v2-bg-soft); }
.v2-included-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px;
}
.v2-incl-card {
    background: #fff; border: 1px solid var(--v2-border); border-radius: 12px;
    padding: 18px 14px; text-align: center;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.v2-incl-card:hover { box-shadow: 0 6px 18px rgba(15, 36, 25, 0.08); transform: translateY(-2px); }
.v2-incl-icon {
    width: 44px; height: 44px;
    margin: 0 auto 14px;
    color: var(--v2-green);
    border: 1.5px solid rgba(33, 164, 71, 0.30);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.v2-incl-icon svg { width: 22px; height: 22px; }
.v2-incl-card h4 { font-size: 13px; font-weight: 700; margin: 0 0 4px; color: var(--v2-charcoal); }
.v2-incl-card p { font-size: 12px; color: var(--v2-text-muted); margin: 0; line-height: 1.5; }

.v2-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; align-items: stretch; }
.v2-price-card {
    background: #fff; border: 1px solid var(--v2-border); border-radius: 14px;
    padding: 24px 18px; text-align: center; display: flex; flex-direction: column; position: relative;
}
.v2-price-featured {
    border: 2px solid var(--v2-green);
    box-shadow: 0 8px 28px rgba(33, 164, 71, 0.18);
    transform: translateY(-4px);
}
.v2-price-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--v2-green); color: #fff;
    padding: 4px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
}
.v2-price-name { font-size: 14px; font-weight: 700; color: var(--v2-charcoal); margin: 0 0 4px; }
.v2-price-acres { font-size: 12px; color: var(--v2-text-muted); margin: 0 0 14px; }
.v2-price-amount { font-size: 32px; font-weight: 800; color: var(--v2-charcoal); margin: 0 0 18px; letter-spacing: -0.02em; }
.v2-price-bullets { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; flex: 1; }
.v2-price-bullets li { font-size: 13px; color: var(--v2-text); padding: 6px 0; padding-left: 22px; position: relative; }
.v2-price-bullets li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 14px; height: 14px;
    background: var(--v2-green); border-radius: 999px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 6.5 5 8.5 9 4'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
}
.v2-pricing-note { margin: 14px 0 0; font-size: 12px; color: var(--v2-text-muted); text-align: right; }

/* COST COMPARISON + MAP */
.v2-cost-service { padding: 64px 0; background: #fff; }
.v2-cost-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.v2-cost-table th, .v2-cost-table td {
    padding: 14px 8px; text-align: left; font-size: 14px;
    border-bottom: 1px solid var(--v2-border-soft);
}
.v2-cost-table thead th {
    color: var(--v2-text-muted); font-weight: 600; font-size: 13px;
    border-bottom: 2px solid var(--v2-border); padding-bottom: 12px;
}
.v2-cost-table .v2-vs { color: var(--v2-text-soft); font-size: 12px; text-align: center; width: 30px; }
.v2-cost-table .v2-lc-col { color: var(--v2-green); font-weight: 600; }
.v2-cost-table thead th.v2-lc-col { color: var(--v2-green); }
.v2-cost-row-label { display: inline-flex; align-items: center; gap: 8px; color: var(--v2-text); font-weight: 600; }
.v2-cost-row-label svg { width: 16px; height: 16px; color: var(--v2-text-muted); }

/* Right column wraps title + map. Map flexes to fill the column so its bottom
   aligns with the left column (table + footnote) regardless of footnote length. */
.v2-service-area { display: flex; flex-direction: column; min-width: 0; }
.v2-map {
    margin: 12px 0 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--v2-border-soft);
    box-shadow: 0 4px 14px rgba(15, 36, 25, 0.04);
    flex: 1 1 auto;
    min-height: 305px;
    display: block;
    background: #f5f7f5;
}
.v2-map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1024px) {
    /* When stacking, restore an explicit aspect ratio so the map looks natural */
    .v2-map { height: auto; aspect-ratio: 16 / 10; }
    .v2-map img { height: auto; max-height: 100%; }
}

/* YARD FIT + HOW IT WORKS */
.v2-fit-how { padding: 64px 0; background: var(--v2-bg-soft); }
.v2-fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
.v2-fit-col { background: #fff; border-radius: 12px; padding: 18px 16px; border: 1px solid var(--v2-border); }
.v2-fit-good { border-color: rgba(33, 164, 71, 0.30); background: var(--v2-green-soft); }
.v2-fit-needs { border-color: rgba(217, 119, 6, 0.30); background: var(--v2-amber-soft); }
.v2-fit-head { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; margin: 0 0 12px; color: var(--v2-charcoal); }
.v2-fit-dot { width: 10px; height: 10px; border-radius: 999px; }
.v2-fit-dot-good { background: var(--v2-green); }
.v2-fit-dot-needs { background: var(--v2-amber); }
.v2-fit-col ul { list-style: none; padding: 0; margin: 0; }
.v2-fit-col li { padding: 6px 0; font-size: 14px; color: var(--v2-text); padding-left: 18px; position: relative; }
.v2-fit-good li::before {
    content: "\2713"; position: absolute; left: 0; top: 6px;
    color: var(--v2-green); font-weight: 800; font-size: 13px;
}
.v2-fit-needs li::before {
    content: "!"; position: absolute; left: 4px; top: 6px;
    color: var(--v2-amber); font-weight: 800; font-size: 14px;
}
.v2-fit-note { color: var(--v2-text-muted); font-size: 13px; margin: 12px 0 0; text-align: center; }

.v2-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 16px; }
.v2-step { background: #fff; border-radius: 12px; padding: 18px 14px; text-align: center; border: 1px solid var(--v2-border); }
.v2-step-num {
    width: 32px; height: 32px;
    background: var(--v2-green); color: #fff;
    border-radius: 999px; margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px;
}
.v2-step h4 { font-size: 14px; font-weight: 700; color: var(--v2-charcoal); margin: 0 0 6px; }
.v2-step p { font-size: 13px; color: var(--v2-text-muted); margin: 0; line-height: 1.5; }

/* HOMEOWNERS + RESULTS + FAQ */
.v2-bottom-row { padding: 64px 0; background: #fff; }
.v2-care-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.v2-care-card { background: var(--v2-bg-soft); border-radius: 10px; padding: 16px 12px; text-align: center; }
.v2-care-icon { width: 28px; height: 28px; margin: 0 auto 8px; }
.v2-care-icon svg { width: 100%; height: 100%; }
.v2-care-card h5 { font-size: 13px; font-weight: 700; margin: 0 0 6px; color: var(--v2-charcoal); }
.v2-care-card p { font-size: 11px; color: var(--v2-text-muted); margin: 0; line-height: 1.5; }

.v2-results-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.v2-result-card { margin: 0; position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 5 / 4; background: var(--v2-bg-soft); }
.v2-result-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-result-tag {
    position: absolute; bottom: 8px; left: 8px;
    background: rgba(15, 45, 28, 0.85); color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.v2-result-tag-after { background: var(--v2-green); }
.v2-results-caption { margin: 14px 0 0; text-align: center; color: var(--v2-text-muted); font-size: 13px; }

.v2-faq-list .faq-item {
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--v2-border-soft);
    border-radius: 0;
    background: transparent;
    overflow: hidden;
}
.v2-faq-list .faq-item:last-child { border-bottom: 0; }
.v2-faq-list .faq-question {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--v2-charcoal);
}
.v2-faq-list .faq-question:hover { color: var(--v2-green); }
.v2-faq-list .faq-icon { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s ease; color: var(--v2-text-muted); }
.v2-faq-list .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--v2-green); }
.v2-faq-list .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.v2-faq-list .faq-answer-inner { padding: 0 0 12px; font-size: 13px; color: var(--v2-text-muted); line-height: 1.6; }
.v2-faq-toggle {
    background: transparent;
    border: 0;
    color: var(--v2-green);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    margin-top: 12px;
    padding: 4px 0;
    text-align: right;
    width: 100%;
}
.v2-faq-toggle:hover { color: var(--v2-green-hover); }

/* FORM bg adjust */
.v2-form-section { background: var(--v2-bg-soft) !important; padding: 64px 0; }

/* FINAL CTA BAR */
.v2-final-cta {
    background: var(--v2-green);
    padding: 32px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.v2-final-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.v2-final-text { display: flex; align-items: center; gap: 14px; color: #fff; }
.v2-final-icon {
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
}
.v2-final-icon svg { width: 22px; height: 22px; }
.v2-final-text h3 { font-size: 22px; font-weight: 700; margin: 0 0 2px; color: #fff; }
.v2-final-text p { margin: 0; color: rgba(255, 255, 255, 0.92); font-size: 14px; }

/* FOOTER V2 */
.v2-footer { background: var(--v2-dark); color: rgba(255, 255, 255, 0.78); padding: 48px 0 24px; }
.v2-footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px;
}
.v2-footer-col h5 {
    font-size: 13px; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin: 0 0 14px;
}
.v2-footer-col ul { list-style: none; padding: 0; margin: 0; }
.v2-footer-col li { padding: 4px 0; font-size: 14px; }
.v2-footer-col a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.v2-footer-col a:hover { color: #fff; }
.v2-footer-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.v2-footer-contact li { display: flex; align-items: center; gap: 8px; }
.v2-footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }
.v2-footer-brand { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 8px; letter-spacing: 0.02em; }
.v2-footer-brand span { color: var(--v2-green); }
.v2-footer-tag { font-size: 13px; color: rgba(255, 255, 255, 0.62); margin: 0 0 16px; line-height: 1.5; }
.v2-footer-social { display: flex; gap: 10px; }
.v2-footer-social a {
    width: 32px; height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.v2-footer-social a:hover { background: rgba(255, 255, 255, 0.16); }
.v2-footer-social svg { width: 16px; height: 16px; }
.v2-footer-bottom {
    max-width: 1200px; margin: 24px auto 0;
    padding: 16px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
    font-size: 12px; color: rgba(255, 255, 255, 0.55);
}
.v2-footer-bottom p { margin: 0; }
.v2-footer-legal a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
.v2-footer-legal a:hover { color: #fff; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .v2-row-included-pricing,
    .v2-row-fit-how,
    .v2-row-2 { grid-template-columns: 1fr; gap: 36px; }
    .v2-pills-inner { grid-template-columns: repeat(2, 1fr); }
    .v2-included-grid { grid-template-columns: repeat(3, 1fr); }
    .v2-pricing-grid { grid-template-columns: 1fr; }
    .v2-price-featured { transform: none; }
    .v2-steps { grid-template-columns: repeat(2, 1fr); }
    .v2-row-3 { grid-template-columns: 1fr; }
    .v2-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .v2-nav, .v2-nav-cta { display: none; }
    .v2-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .v2-mobile-nav:not([hidden]) { display: flex; }
    .v2-mobile-nav[hidden] { display: none !important; }
    .v2-hero { padding: 130px 0 80px; min-height: 600px; }
    .v2-pills-inner { grid-template-columns: 1fr; gap: 16px; }
    .v2-included-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-care-cards { grid-template-columns: 1fr; }
    .v2-steps { grid-template-columns: 1fr; }
    .v2-footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .v2-final-inner { flex-direction: column; align-items: flex-start; }
    .v2-cost-table th, .v2-cost-table td { font-size: 12px; padding: 10px 6px; }
}

/* hide legacy nav while V2 page is active */
.v2-page #nav.nav { display: none; }

/* ============================================================
   V2 POLISH (added 2026-05-01) — modal + microadjustments
   ============================================================ */

/* ---- microadjustments ---- */
.v2-hero-h1 {
    font-size: clamp(46px, 7vw, 78px);
    line-height: 1.04;
}
.v2-hero { padding: 120px 0 60px; }
.v2-why { padding: 64px 0; }
.v2-included-pricing { padding: 56px 0; }
.v2-cost-service { padding: 56px 0; }
.v2-fit-how { padding: 56px 0; }
.v2-bottom-row { padding: 56px 0; }

.v2-incl-card h4 { font-size: 14px; margin-bottom: 5px; }
.v2-incl-card p { font-size: 12px; line-height: 1.5; }

/* Equalize pricing card heights */
.v2-pricing-grid { align-items: stretch; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================
   YARD CHECK MODAL
   ============================================ */
.v2-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 5vh 16px;
}
.v2-modal[hidden] { display: none; }

.v2-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 22, 14, 0.62);
    backdrop-filter: blur(2px);
    animation: v2-modal-fade 180ms ease-out;
    z-index: 0;
}
.v2-modal-window {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
    max-width: 720px;
    width: 100%;
    overflow: visible;
    animation: v2-modal-pop 220ms cubic-bezier(.2,.9,.3,1.1);
}
.v2-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border: 0;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-charcoal);
    transition: background 0.15s ease;
    z-index: 2;
}
.v2-modal-close:hover { background: rgba(0, 0, 0, 0.12); }
.v2-modal-close svg { width: 18px; height: 18px; }

/* The form section, when nested inside the modal, drops its outer chrome */
.v2-modal #qualify-form.v2-form-section {
    background: #fff !important;
    padding: 36px 36px 24px;
}
.v2-modal #qualify-form .container { padding: 0; }
.v2-modal #qualify-form .text-center { text-align: left; margin-bottom: 16px; }
.v2-modal #qualify-form .section-label { color: var(--v2-green); margin: 0 0 4px; font-size: 11px; }
.v2-modal #qualify-form .section-title { font-size: 22px; margin: 0 0 6px; color: var(--v2-charcoal); }
.v2-modal #qualify-form .section-subtitle { font-size: 13px; color: var(--v2-text-muted); margin: 0; max-width: none; }
.v2-modal .form-container { box-shadow: none !important; padding: 0 !important; background: transparent !important; }

/* lock body scroll when modal open */
body.v2-modal-open { overflow: hidden; }

@keyframes v2-modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes v2-modal-pop {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 720px) {
    .v2-modal { padding: 0; align-items: stretch; }
    .v2-modal-window { border-radius: 0; max-width: 100%; min-height: 100vh; }
    .v2-modal #qualify-form.v2-form-section { padding: 56px 20px 20px; }
}

/* ============================================================
   V2 OPTIMIZATIONS (added 2026-05-01) — wave A/B/C/D polish
   ============================================================ */

/* ---- Hero: ghost CTA (phone) and trust line ---- */
.v2-btn-ghost {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(6px);
}
.v2-btn-ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.65); }
.v2-btn-ghost svg { width: 16px; height: 16px; flex-shrink: 0; }

.v2-hero-trustline {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-top: 16px;
}
.v2-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.v2-hero-trust-item svg {
    width: 14px;
    height: 14px;
}
.v2-hero-trust-item strong {
    color: #fff;
    font-weight: 700;
    margin-right: 2px;
}
.v2-hero-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.22);
}
.v2-hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-style: italic;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.v2-pulse-dot {
    width: 8px; height: 8px;
    background: #fbbf24;
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25);
    animation: v2-pulse 1.6s ease-in-out infinite;
}
@keyframes v2-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0.05); }
}

/* ---- B2: Reduce green sprawl — convert non-CTA "decorative greens" to charcoal/grey ---- */
.v2-pill-icon {
    background: var(--v2-bg-soft);
    color: var(--v2-charcoal);
}
.v2-incl-icon {
    color: var(--v2-charcoal);
    border-color: rgba(26, 32, 36, 0.18);
}
/* Step numbers stay green (CTA-adjacent: process completion = green is fine) */

/* B4: Bigger Included card typography */
.v2-incl-card {
    padding: 22px 16px;
}
.v2-incl-card h4 { font-size: 15px; margin-bottom: 6px; }
.v2-incl-card p { font-size: 13px; line-height: 1.55; }
.v2-incl-icon { width: 48px; height: 48px; margin-bottom: 14px; }
.v2-incl-icon svg { width: 24px; height: 24px; }

/* ---- B3: View Pricing button replaced with phone CTA above. The hero CTA row
   now has 2 actions (Yard Check + phone) which improves contrast/clarity. */

/* ---- D: Real Results (full-width hero treatment) ---- */
.v2-results-section { padding: 64px 0; background: #fff; }
.v2-results-lead { margin-bottom: 24px; }
.v2-results-pair-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}
.v2-results-pair-wide .v2-result-card {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
}
.v2-results-pair-wide .v2-result-tag { font-size: 12px; padding: 4px 12px; }

.v2-faq-section { padding: 56px 0 72px; background: var(--v2-bg-soft); }
.v2-row-faq { max-width: 760px; padding: 0 24px; }

/* ---- Pricing card featured polish (Standard now featured) ---- */
.v2-price-card { padding: 28px 22px; }
.v2-price-amount { font-size: 36px; }
.v2-price-bullets li strong { color: var(--v2-charcoal); }
.v2-price-bullets li { font-size: 14px; }

/* C2 — Mobile fixes */
@media (max-width: 720px) {
    .v2-nav-toggle {
        width: 48px;
        height: 48px;
    }
    .v2-hero-h1 {
        font-size: clamp(32px, 8vw, 40px);
        line-height: 1.08;
    }
    .v2-hero-sub { font-size: 16px; }
    .v2-incl-card { padding: 16px 12px; }
    .v2-incl-card h4 { font-size: 14px; }
    .v2-incl-card p { font-size: 12px; }
    .v2-price-featured { transform: none; margin-top: 12px; }
    .v2-pricing-grid { gap: 16px; }
    .v2-results-pair-wide { grid-template-columns: 1fr; gap: 12px; }
    .v2-results-pair-wide .v2-result-card { aspect-ratio: 4 / 3; }
    .v2-hero-trustline {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        border-radius: 14px;
    }
    .v2-hero-divider { display: none; }
    .v2-hero-urgency { font-size: 12px; }
}

/* Urgency pill (4th pill, "Limited spots") gets a soft amber accent */
.v2-pill.v2-pill-urgent .v2-pill-icon {
    background: var(--v2-amber-soft);
    color: var(--v2-amber);
}
.v2-pill.v2-pill-urgent .v2-pill-icon svg {
    stroke: var(--v2-amber);
}
.v2-pill.v2-pill-urgent h4 {
    color: var(--v2-amber);
}

/* ============================================================
   Real Results gallery (4 photos, after only)
   ============================================================ */
.v2-results-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 24px auto 0;
}
.v2-results-gallery .v2-result-card {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
    background: var(--v2-bg-soft);
    box-shadow: 0 4px 14px rgba(15, 36, 25, 0.08);
}
.v2-results-gallery .v2-result-card img {
    width: 100%; height: 100%;
    display: block;
    object-fit: cover;
}
@media (max-width: 1024px) {
    .v2-results-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .v2-results-gallery { grid-template-columns: 1fr; }
}

/* Pills: enforce equal-height alignment + ensure no urgent variant differs */
.v2-pills-inner { align-items: stretch; }
.v2-pill { align-items: flex-start; }
.v2-pill > div:last-child { flex: 1; }
.v2-pill h4 { white-space: nowrap; }
@media (max-width: 1100px) {
    .v2-pill h4 { white-space: normal; }
}

/* ============================================================
   What's Included — premium horizontal card design (overrides earlier rules)
   2 columns inside the split section so the horizontal layout breathes.
   ============================================================ */
.v2-included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 28px;
}
.v2-incl-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    background: #fff;
    border: 1px solid var(--v2-border-soft);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 1px 3px rgba(15, 36, 25, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.v2-incl-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--v2-green) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.v2-incl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 36, 25, 0.10);
    border-color: rgba(33, 164, 71, 0.28);
}
.v2-incl-card:hover::before { opacity: 1; }

.v2-incl-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--v2-green-soft);
    color: var(--v2-green);
    border: 0;
    margin: 0;
}
.v2-incl-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--v2-green);
}
.v2-incl-body { min-width: 0; flex: 1; }
.v2-incl-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 2px 0 4px;
    color: var(--v2-charcoal);
    line-height: 1.3;
    letter-spacing: -0.005em;
}
.v2-incl-card p {
    font-size: 13px;
    color: var(--v2-text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .v2-included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .v2-included-grid { grid-template-columns: 1fr; }
    .v2-incl-card { padding: 16px 14px; }
}

/* ============================================================
   POLISH PASS — Pricing 2-tier, Yard Fit + How It Works,
   FAQ list, Cost Comparison, Service Map (added 2026-05-01)
   ============================================================ */

/* Pricing grid: 2 cards now */
.v2-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.v2-price-card { padding: 28px 22px; }
.v2-price-featured { transform: translateY(-4px); }
.v2-price-amount { font-size: 38px; }
.v2-price-acres { min-height: 18px; }

/* ---- Yard Fit boxes — add subtle accents + better lists ---- */
.v2-fit-col {
    padding: 22px 20px;
    border-radius: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.v2-fit-col:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 36, 25, 0.08);
}
.v2-fit-head {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.v2-fit-col li {
    padding: 7px 0;
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.4;
}
/* Replace plain ✓/! with colored chip */
.v2-fit-good li::before,
.v2-fit-needs li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 16px; height: 16px;
    border-radius: 999px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    font-size: 0;
}
.v2-fit-good li::before {
    background-color: var(--v2-green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 6.5 5 8.5 9 4'/%3E%3C/svg%3E");
}
.v2-fit-needs li::before {
    background-color: var(--v2-amber);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='6' y1='3' x2='6' y2='7'/%3E%3Cline x1='6' y1='9' x2='6' y2='9.01'/%3E%3C/svg%3E");
}
.v2-fit-note {
    font-size: 13px;
    margin-top: 16px;
    text-align: center;
    color: var(--v2-text-muted);
}

/* ---- How It Works steps — better step number + connector ---- */
.v2-steps {
    position: relative;
    gap: 12px;
}
.v2-step {
    padding: 22px 16px 20px;
    border-radius: 14px;
    border: 1px solid var(--v2-border-soft);
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 36, 25, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    position: relative;
    overflow: hidden;
}
.v2-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(15, 36, 25, 0.10);
    border-color: rgba(33, 164, 71, 0.25);
}
.v2-step-num {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    background: var(--v2-green);
    color: #fff;
    border-radius: 999px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(33, 164, 71, 0.30);
    position: relative;
    z-index: 1;
}
.v2-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--v2-charcoal);
    margin: 0 0 6px;
    line-height: 1.3;
}
.v2-step p {
    font-size: 12.5px;
    color: var(--v2-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---- FAQ — softer hover accent + button-style "View all FAQs" ---- */
.v2-faq-list .faq-item {
    transition: background 0.15s ease;
    padding-left: 8px;
    border-radius: 4px;
}
.v2-faq-list .faq-item:hover {
    background: rgba(33, 164, 71, 0.04);
}
.v2-faq-list .faq-question {
    padding: 16px 8px;
    font-size: 15px;
    font-weight: 600;
}
.v2-faq-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: auto;
    margin: 24px auto 0;
    padding: 10px 22px;
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: 999px;
    color: var(--v2-green);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.v2-faq-toggle:hover {
    background: var(--v2-green-soft);
    border-color: rgba(33, 164, 71, 0.35);
}
.v2-faq-section .v2-row-faq {
    text-align: center;
}
.v2-faq-toggle::after {
    content: "↓";
    font-size: 14px;
    margin-left: 4px;
}
.faq-list.expanded ~ .v2-faq-toggle::after,
[aria-expanded="true"].v2-faq-toggle::after { content: "↑"; }

/* ---- Cost Comparison table — Lopkin Care column subtle highlight ---- */
.v2-cost-table thead th.v2-lc-col,
.v2-cost-table tbody td.v2-lc-col {
    background: linear-gradient(180deg, rgba(33, 164, 71, 0.06) 0%, rgba(33, 164, 71, 0.04) 100%);
    border-left: 1px solid rgba(33, 164, 71, 0.12);
    border-right: 1px solid rgba(33, 164, 71, 0.12);
}
.v2-cost-table tbody tr:first-child td.v2-lc-col {
    border-top: 1px solid rgba(33, 164, 71, 0.20);
}
.v2-cost-table tbody tr:last-child td.v2-lc-col {
    border-bottom: 1px solid rgba(33, 164, 71, 0.20);
}
.v2-cost-table .v2-vs {
    color: var(--v2-text-soft);
    font-style: italic;
    text-align: center;
}
.v2-cost-table tbody tr {
    transition: background 0.12s ease;
}
.v2-cost-table tbody tr:hover {
    background: rgba(15, 36, 25, 0.02);
}
.v2-cost-table tbody tr:hover td.v2-lc-col {
    background: linear-gradient(180deg, rgba(33, 164, 71, 0.10) 0%, rgba(33, 164, 71, 0.06) 100%);
}

/* ---- Service Map nicer container ---- */
.v2-map {
    border: 1px solid rgba(33, 164, 71, 0.12);
    box-shadow: 0 6px 22px rgba(15, 36, 25, 0.06);
}

/* Mobile: pricing 2-card stacks fine */
@media (max-width: 1024px) {
    .v2-pricing-grid { grid-template-columns: 1fr; }
    .v2-price-featured { transform: none; }
}

/* ============================================================
   MOBILE OPTIMIZATION (added 2026-05-01)
   Aggressive mobile-first tweaks for phones (≤ 720px)
   ============================================================ */
@media (max-width: 720px) {
    /* HERO: tighter, content-led */
    .v2-hero {
        min-height: 520px;
        padding: 92px 0 36px;
    }
    .v2-hero-h1 {
        font-size: 30px;
        line-height: 1.1;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45), 0 2px 14px rgba(0, 0, 0, 0.35);
    }
    .v2-hero-sub {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 22px;
    }
    .v2-eyebrow { font-size: 12px; margin-bottom: 12px; }
    .v2-hero-bg { object-position: 65% 70%; }
    /* CTA buttons: full-width and tap-friendly */
    .v2-hero-ctas {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        margin-bottom: 14px;
    }
    .v2-hero-ctas .v2-btn-large {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
    }

    /* TOP NAV: compact + reachable */
    .v2-topbar { padding: 14px 0; }
    .v2-topbar-inner { padding: 0 18px; gap: 14px; }
    .v2-brand { font-size: 16px; }
    .v2-nav-toggle {
        width: 48px; height: 48px;
        background: rgba(0, 0, 0, 0.30);
        border-radius: 10px;
        backdrop-filter: blur(6px);
    }

    /* PILLS: vertical stack, larger + airier */
    .v2-pills { padding: 24px 0; }
    .v2-pills-inner { padding: 0 16px; gap: 12px; }
    .v2-pill { gap: 12px; padding: 4px 0; }
    .v2-pill-icon { width: 44px; height: 44px; }
    .v2-pill h4 { white-space: normal; font-size: 14px; }
    .v2-pill p { font-size: 12.5px; }

    /* WHY SETUP: tighten spacing, smaller heading */
    .v2-why { padding: 40px 0; }
    .v2-why-photo img { min-height: 220px; }
    .v2-h2 { font-size: 24px; line-height: 1.2; }
    .v2-why-text p { font-size: 15px; line-height: 1.6; }
    .v2-checklist li { font-size: 14px; }

    /* INCLUDED + PRICING: collapse to single column with comfortable spacing */
    .v2-included-pricing { padding: 36px 0; }
    .v2-row-included-pricing { gap: 28px; }
    .v2-included-grid { gap: 8px; grid-template-columns: 1fr; }
    .v2-incl-card { padding: 14px; gap: 12px; }
    .v2-incl-card h4 { font-size: 14px; }
    .v2-incl-card p { font-size: 13px; }
    .v2-pricing-grid { gap: 14px; }
    .v2-price-card { padding: 22px 18px; }
    .v2-price-amount { font-size: 30px; }

    /* COST + MAP: stack vertically with mobile-friendly cost table */
    .v2-cost-service { padding: 36px 0; }
    .v2-cost h2, .v2-service-area h2 { font-size: 21px; line-height: 1.25; }
    /* Convert table: hide thead, render each row as a stacked card */
    .v2-cost-table { display: block; }
    .v2-cost-table thead { display: none; }
    .v2-cost-table tbody, .v2-cost-table tr { display: block; }
    .v2-cost-table tr {
        border: 1px solid var(--v2-border-soft);
        border-radius: 12px;
        margin-bottom: 10px;
        padding: 12px 14px;
        background: #fff;
    }
    .v2-cost-table td { display: block; border: 0; padding: 4px 0; font-size: 14px; }
    .v2-cost-table td:first-child { font-weight: 700; color: var(--v2-charcoal); margin-bottom: 4px; }
    .v2-cost-table td:nth-child(2)::before {
        content: "Lawn service:";
        font-size: 11px; font-weight: 600;
        color: var(--v2-text-muted);
        text-transform: uppercase; letter-spacing: 0.06em;
        display: block; margin-bottom: 2px;
    }
    .v2-cost-table td.v2-lc-col::before {
        content: "Lopkin Care:";
        font-size: 11px; font-weight: 600;
        color: var(--v2-green);
        text-transform: uppercase; letter-spacing: 0.06em;
        display: block; margin-bottom: 2px;
    }
    .v2-cost-table td:nth-child(3) { display: none; } /* hide "vs." cell */
    .v2-cost-table td.v2-lc-col {
        background: rgba(33, 164, 71, 0.06);
        border-radius: 8px;
        padding: 8px 10px;
        margin-top: 6px;
    }
    .v2-map { aspect-ratio: 16/10; height: auto; min-height: 0; }

    /* YARD FIT + HOW: stack */
    .v2-fit-how { padding: 36px 0; }
    .v2-row-fit-how { gap: 28px; }
    .v2-fit-grid { grid-template-columns: 1fr; }
    .v2-steps { grid-template-columns: 1fr 1fr; gap: 10px; }
    .v2-step { padding: 16px 12px 14px; }
    .v2-step h4 { font-size: 14px; }
    .v2-step p { font-size: 12px; }

    /* RESULTS gallery: 2-col on phone for less scroll */
    .v2-results-section { padding: 36px 0; }
    .v2-results-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
    .v2-results-pair-wide { grid-template-columns: 1fr; }

    /* FAQ: bigger tap targets */
    .v2-faq-section { padding: 36px 0 56px; }
    .v2-faq-list .faq-question { padding: 18px 8px; font-size: 15px; }
    .v2-faq-list .faq-icon { width: 18px; height: 18px; }
    .v2-faq-toggle { padding: 12px 22px; font-size: 14px; }

    /* FINAL CTA bar: stacks */
    .v2-final-cta { padding: 22px 0; }
    .v2-final-inner { padding: 0 18px; gap: 14px; }
    .v2-final-text h3 { font-size: 18px; }
    .v2-final-text p { font-size: 13px; }
    .v2-btn-white { width: 100%; }

    /* FOOTER: compact */
    .v2-footer { padding: 32px 0 16px; }
    .v2-footer-inner { gap: 24px; padding: 0 18px; }
}

/* ============================================================
   REDESIGN: Yard Fit, How It Works, Why-Setup (added 2026-05-01)
   ============================================================ */

/* Override the old combined fit-how section so it doesn't render */
.v2-fit-how { display: none; }

/* ---- Yard Fit (full-width centered card) ---- */
.v2-fit-section {
    padding: 64px 0;
    background: #fff;
}
.v2-fit-card {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--v2-green-soft) 0%, #fff 70%);
    border: 1px solid rgba(33, 164, 71, 0.18);
    border-radius: 20px;
    padding: 42px 36px;
    box-shadow: 0 6px 24px rgba(15, 36, 25, 0.06);
}
.v2-fit-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--v2-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}
.v2-fit-eyebrow .v2-fit-dot { background: #fff; }
.v2-fit-eyebrow-neutral {
    background: var(--v2-charcoal);
    color: #fff;
}
.v2-fit-sub { margin-top: 4px; max-width: 540px; margin-left: auto; margin-right: auto; }
.v2-fit-checklist {
    list-style: none;
    padding: 0;
    margin: 28px auto 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    max-width: 820px;
}
.v2-fit-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.v2-fit-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--v2-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(33, 164, 71, 0.30);
}
.v2-fit-check svg { width: 22px; height: 22px; }
.v2-fit-checklist h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--v2-charcoal);
    margin: 4px 0 4px;
    line-height: 1.3;
}
.v2-fit-checklist p {
    font-size: 13px;
    color: var(--v2-text-muted);
    line-height: 1.5;
    margin: 0;
}
.v2-fit-note {
    text-align: center;
    margin: 24px auto 0;
    font-size: 13px;
    color: var(--v2-text-muted);
}
.v2-fit-note a { color: var(--v2-green); font-weight: 600; }
.v2-fit-note a:hover { color: var(--v2-green-hover); text-decoration: underline; }

/* ---- How It Works (full-width, 4-step row with connector) ---- */
.v2-how-section {
    padding: 64px 0;
    background: var(--v2-bg-soft);
}
.v2-how-section .v2-row { max-width: 1200px; }
.v2-how-section .text-center { margin-bottom: 36px; }
.v2-steps-wide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative;
}
.v2-steps-wide::before {
    /* connector line behind step numbers */
    content: "";
    position: absolute;
    top: 39px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
        rgba(33, 164, 71, 0.30) 0 6px,
        transparent 6px 12px);
    z-index: 0;
}
.v2-steps-wide .v2-step {
    text-align: center;
    background: #fff;
    border: 1px solid var(--v2-border-soft);
    border-radius: 14px;
    padding: 22px 18px 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.v2-steps-wide .v2-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15, 36, 25, 0.10);
    border-color: rgba(33, 164, 71, 0.30);
}
.v2-steps-wide .v2-step-num {
    width: 44px;
    height: 44px;
    background: var(--v2-green);
    color: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 800;
    font-size: 17px;
    box-shadow: 0 6px 16px rgba(33, 164, 71, 0.30), 0 0 0 4px #fff;
}
.v2-steps-wide .v2-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--v2-charcoal);
    margin: 0 0 6px;
}
.v2-steps-wide .v2-step p {
    font-size: 13px;
    color: var(--v2-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ---- Why-Setup section beautify ---- */
.v2-why { padding: 72px 0; }
.v2-why-photo {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(15, 36, 25, 0.14);
}
.v2-why-photo img {
    transition: transform 0.4s ease;
    width: 100%;
}
.v2-why-photo:hover img { transform: scale(1.02); }
.v2-why-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 36, 25, 0.85);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
.v2-why-eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--v2-green-soft);
    color: var(--v2-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}
.v2-why-h2-accent {
    color: var(--v2-green);
}

/* ---- MOBILE adjustments for the new layouts ---- */
@media (max-width: 720px) {
    .v2-fit-section { padding: 36px 0; }
    .v2-fit-card { padding: 28px 22px; border-radius: 16px; }
    .v2-fit-checklist {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }
    .v2-fit-check { width: 32px; height: 32px; border-radius: 8px; }
    .v2-fit-check svg { width: 18px; height: 18px; }
    .v2-fit-checklist h4 { font-size: 14px; }
    .v2-fit-checklist p { font-size: 12.5px; }

    .v2-how-section { padding: 36px 0; }
    .v2-steps-wide {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .v2-steps-wide::before { display: none; } /* hide connector when stacked */
    .v2-steps-wide .v2-step { padding: 16px 12px 14px; }
    .v2-steps-wide .v2-step-num {
        width: 36px; height: 36px; font-size: 15px;
        box-shadow: 0 4px 10px rgba(33, 164, 71, 0.30), 0 0 0 3px #fff;
    }
    .v2-steps-wide .v2-step h4 { font-size: 14px; }
    .v2-steps-wide .v2-step p { font-size: 12px; }

    .v2-why { padding: 40px 0; }
    .v2-why-tag { font-size: 11px; padding: 4px 10px; }
    .v2-why-eyebrow { font-size: 11px; }
}

/* Tablet: 2-col steps with connector hidden */
@media (max-width: 1024px) and (min-width: 721px) {
    .v2-steps-wide {
        grid-template-columns: 1fr 1fr;
    }
    .v2-steps-wide::before { display: none; }
}

/* ============================================================
   THE MOWER WE INSTALL (added 2026-05-02)
   ============================================================ */
.v2-mower-section {
    padding: 72px 0;
    background: var(--v2-bg-soft);
}
.v2-mower-section .text-center { margin-bottom: 36px; }
.v2-mower-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--v2-charcoal);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}
.v2-mower-sub {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
}
.v2-mower-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.v2-mower-card {
    background: #fff;
    border: 1px solid var(--v2-border-soft);
    border-radius: 14px;
    padding: 22px 20px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.v2-mower-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 36, 25, 0.08);
    border-color: rgba(33, 164, 71, 0.28);
}
.v2-mower-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--v2-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.v2-mower-icon svg { width: 24px; height: 24px; }
.v2-mower-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--v2-charcoal);
    margin: 0 0 6px;
    line-height: 1.3;
}
.v2-mower-card p {
    font-size: 14px;
    color: var(--v2-text-muted);
    margin: 0;
    line-height: 1.5;
}
.v2-mower-disclaimer {
    margin: 28px auto 0;
    max-width: 720px;
    text-align: center;
    font-size: 12px;
    font-style: italic;
    color: var(--v2-text-muted);
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .v2-mower-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .v2-mower-section { padding: 40px 0; }
    .v2-mower-grid { grid-template-columns: 1fr; gap: 12px; }
    .v2-mower-card { padding: 18px 16px; }
    .v2-mower-card h4 { font-size: 15px; }
    .v2-mower-card p { font-size: 13px; }
    .v2-mower-icon { width: 40px; height: 40px; }
    .v2-mower-icon svg { width: 22px; height: 22px; }
}

/* ============================================================
   WAVE 4 — Visual rhythm + polish (added 2026-05-02)
   ============================================================ */

/* Section bg alternation: hero → white → soft → white → soft → white → soft → white */
.v2-why { background: #fff; }                 /* white */
.v2-mower-section { background: var(--v2-bg-soft); }   /* soft */
.v2-included-pricing { background: #fff; }    /* white  (was soft) */
.v2-cost-service { background: var(--v2-bg-soft); }    /* soft  (was white) */
.v2-fit-section { background: #fff; }         /* white */
.v2-how-section { background: var(--v2-bg-soft); }     /* soft */
.v2-results-section { background: #fff; }     /* white */
.v2-faq-section { background: var(--v2-bg-soft); }     /* soft (already) */

/* Sticky mobile CTA: switch from orange to brand green */
.sticky-mobile-cta {
    background: var(--v2-green) !important;
    color: #fff !important;
    box-shadow: 0 -2px 14px rgba(33, 164, 71, 0.30) !important;
}
.sticky-mobile-cta:hover {
    background: var(--v2-green-hover) !important;
}

/* Real Results disclaimer */
.v2-results-disclaimer {
    margin: 18px auto 0;
    max-width: 700px;
    text-align: center;
    font-size: 12px;
    font-style: italic;
    color: var(--v2-text-muted);
    line-height: 1.6;
}

/* Re-enable small Real Results tags on the gallery (we re-introduced figcaption) */
.v2-results-gallery .v2-result-card {
    position: relative;
}
.v2-results-gallery .v2-result-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(15, 36, 25, 0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

/* Pricing footer lines */
.v2-pricing-bigger {
    margin: 16px auto 4px;
    text-align: center;
    font-size: 13px;
    color: var(--v2-text);
}
.v2-pricing-bigger a {
    color: var(--v2-green);
    font-weight: 600;
    text-decoration: none;
}
.v2-pricing-bigger a:hover {
    text-decoration: underline;
}
.v2-pricing-note {
    margin: 0 auto;
    max-width: 660px;
    text-align: center;
    font-size: 12px;
    font-style: italic;
    color: var(--v2-text-muted);
    line-height: 1.6;
}

/* ============================================================
   New images integration (mower-detail + yard-qualify) — 2026-05-02
   ============================================================ */

/* Mower close-up banner above the 6 feature cards in The Mower section */
.v2-mower-hero {
    margin: 0 auto 32px;
    max-width: 880px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(15, 36, 25, 0.12);
}
.v2-mower-hero img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 720px) {
    .v2-mower-hero { margin-bottom: 24px; border-radius: 12px; }
}

/* Yard Fit visual (yard-qualify.webp) — sits right after title, above the 4 checks */
.v2-fit-visual {
    margin: 12px auto 24px;
    max-width: 720px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 36, 25, 0.08);
    border: 1px solid rgba(33, 164, 71, 0.15);
}
.v2-fit-visual img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 720px) {
    .v2-fit-visual { margin: 8px auto 18px; border-radius: 10px; }
}

/* ==========================================
   THE MOWER — gallery (added 2026-05-02)
   ========================================== */
.v2-mower-gallery {
    margin: 0 auto 32px;
    max-width: 880px;
    padding: 0;
}
.v2-mower-gallery-stage {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(15, 36, 25, 0.12);
    background: #f4f5f3;
    aspect-ratio: 16 / 10;
}
.v2-mower-gallery-main {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .18s ease;
}
.v2-mower-gallery-main.is-fading { opacity: 0; }
.v2-mower-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a2024;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: background .15s ease, transform .15s ease;
    z-index: 2;
}
.v2-mower-gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.v2-mower-gallery-arrow:focus-visible { outline: 2px solid #21a447; outline-offset: 2px; }
.v2-mower-gallery-arrow-prev { left: 14px; }
.v2-mower-gallery-arrow-next { right: 14px; }
.v2-mower-gallery-arrow svg { width: 22px; height: 22px; }
.v2-mower-gallery-counter {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(15, 36, 25, 0.72);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 2;
}
.v2-mower-gallery-thumbs {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}
.v2-mower-gallery-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: border-color .15s ease, transform .15s ease;
}
.v2-mower-gallery-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.v2-mower-gallery-thumb:hover { border-color: rgba(33, 164, 71, 0.45); }
.v2-mower-gallery-thumb.is-active { border-color: #21a447; }
.v2-mower-gallery-thumb:focus-visible { outline: 2px solid #21a447; outline-offset: 2px; }

@media (max-width: 720px) {
    .v2-mower-gallery-arrow { width: 38px; height: 38px; }
    .v2-mower-gallery-arrow-prev { left: 8px; }
    .v2-mower-gallery-arrow-next { right: 8px; }
    .v2-mower-gallery-arrow svg { width: 18px; height: 18px; }
    .v2-mower-gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 10px; }
    .v2-mower-gallery-counter { bottom: 10px; right: 10px; font-size: 12px; padding: 3px 8px; }
}

/* ==========================================
   THE MOWER — spec table (added 2026-05-02)
   ========================================== */
.v2-mower-specs {
    margin: 32px auto 12px;
    max-width: 880px;
    background: #fff;
    border: 1px solid rgba(15, 36, 25, 0.08);
    border-radius: 14px;
    padding: 28px 32px 12px;
    box-shadow: 0 6px 18px rgba(15, 36, 25, 0.05);
}
.v2-mower-specs-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #1a2024;
    letter-spacing: -0.01em;
}
.v2-mower-specs-sub {
    margin: 0 0 18px;
    color: #5b6770;
    font-size: 15px;
}
.v2-mower-specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
    row-gap: 0;
    margin: 0;
}
.v2-mower-specs-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 36, 25, 0.07);
    font-size: 15px;
}
.v2-mower-specs-row:last-child,
.v2-mower-specs-row:nth-last-child(2) {
    /* In 2-col layout the last two rows are visually the bottom row */
}
.v2-mower-specs-row dt {
    font-weight: 600;
    color: #1a2024;
    flex-shrink: 0;
}
.v2-mower-specs-row dd {
    margin: 0;
    color: #4b5560;
    text-align: right;
}
@media (max-width: 720px) {
    .v2-mower-specs { margin: 24px auto 8px; padding: 22px 18px 6px; border-radius: 12px; }
    .v2-mower-specs-title { font-size: 19px; }
    .v2-mower-specs-sub { font-size: 14px; margin-bottom: 14px; }
    .v2-mower-specs-list { grid-template-columns: 1fr; column-gap: 0; }
    .v2-mower-specs-row { padding: 11px 0; font-size: 14px; }
}

/* ============================================================
   CRO 2026-05-02 — Coverage note + Service & Warranty Terms
   ============================================================ */

/* Cost comparison footnote (small print under the table) */
.v2-cost-footnote {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: var(--v2-text-muted);
    font-style: italic;
}

/* Coverage note: lives below the Mower Specs list */
.v2-coverage-note {
    margin: 28px auto 0;
    max-width: 820px;
    background: #f2f7f1;
    border: 1px solid #e3eae2;
    border-radius: 12px;
    padding: 22px 24px;
}
.v2-coverage-note-title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 600;
    color: #0f2419;
    line-height: 1.35;
}
.v2-coverage-note-body {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--v2-text);
}
.v2-coverage-note-body:last-of-type { margin-bottom: 14px; }
.v2-coverage-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.v2-coverage-chips li {
    font-size: 12.5px;
    font-weight: 500;
    color: #4b5560;
    background: #eef1ed;
    border-radius: 999px;
    padding: 6px 12px;
    line-height: 1.3;
}
@media (max-width: 600px) {
    .v2-coverage-note { padding: 18px 18px; border-radius: 10px; }
    .v2-coverage-note-title { font-size: 16px; }
    .v2-coverage-note-body { font-size: 14.5px; }
}

/* Service & Warranty Terms section */
.v2-terms-section {
    padding: 72px 0;
    background: #fff;
}
.v2-terms-sub {
    margin: 6px auto 36px;
    max-width: 620px;
}
.v2-terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}
.v2-terms-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 26px 26px;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.v2-terms-card:hover {
    border-color: rgba(33, 164, 71, 0.35);
    box-shadow: 0 6px 18px rgba(15, 36, 25, 0.06);
}
.v2-terms-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #21a447;
    background: rgba(33, 164, 71, 0.10);
    margin-bottom: 14px;
}
.v2-terms-icon svg { width: 22px; height: 22px; }
.v2-terms-card h4 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #1a2024;
    line-height: 1.3;
}
.v2-terms-card p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--v2-text-muted);
}
.v2-terms-card p + p { margin-top: 10px; }
.v2-terms-footer {
    margin: 26px auto 0;
    max-width: 760px;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--v2-text-muted);
}
@media (max-width: 720px) {
    .v2-terms-section { padding: 52px 0; }
    .v2-terms-grid { grid-template-columns: 1fr; gap: 14px; }
    .v2-terms-card { padding: 22px 20px; border-radius: 14px; }
    .v2-terms-card h4 { font-size: 16px; }
    .v2-terms-card p { font-size: 14px; }
    .v2-terms-sub { margin-bottom: 24px; }
    .v2-terms-footer { font-size: 12px; }
}

/* ============================================================
   CRO 2026-05-02 — Why Setup install gallery (replaces single photo)
   ============================================================ */
.v2-why-gallery {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.v2-why-gallery-title {
    margin: 0;
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    color: var(--v2-charcoal);
}
.v2-why-gallery-sub {
    margin: 0 0 6px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--v2-text-muted);
    max-width: 540px;
}
.v2-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.v2-why-shot {
    background: #fff;
    border: 1px solid #eef0ee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 36, 25, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.v2-why-shot-img {
    aspect-ratio: 4 / 3;
    background: #f0f2f0;
    overflow: hidden;
}
.v2-why-shot-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.v2-why-shot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 36, 25, 0.12);
}
.v2-why-shot:hover .v2-why-shot-img img { transform: scale(1.04); }
.v2-why-shot-cap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px 14px;
    border-top: 1px solid #eef0ee;
    background: #fff;
}
.v2-why-shot-num {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(33, 164, 71, 0.12);
    color: var(--v2-green);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.v2-why-shot-text { min-width: 0; }
.v2-why-shot-text h4 {
    margin: 0 0 4px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--v2-charcoal);
    line-height: 1.3;
}
.v2-why-shot-text p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--v2-text-muted);
}
@media (max-width: 720px) {
    .v2-why-grid { gap: 10px; }
    .v2-why-gallery-title { font-size: 19px; }
    .v2-why-gallery-sub { font-size: 13.5px; }
    .v2-why-shot { border-radius: 10px; }
    .v2-why-shot-cap { padding: 10px 12px 12px; gap: 8px; }
    .v2-why-shot-num { width: 20px; height: 20px; font-size: 11.5px; }
    .v2-why-shot-text h4 { font-size: 13px; }
    .v2-why-shot-text p { font-size: 12px; }
}

/* ============================================================
   CRO 2026-05-02 (round 2) — Reference Yard Results meta cards
   ============================================================ */
.v2-result-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
    background: #f0f2f0;
}
.v2-result-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-result-card {
    background: #fff;
    border: 1px solid #eef0ee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 36, 25, 0.05);
    display: flex;
    flex-direction: column;
}
.v2-result-meta {
    margin: 0;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
}
.v2-result-meta-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #f1f3f1;
    align-items: baseline;
}
.v2-result-meta-row:last-child { border-bottom: 0; }
.v2-result-meta-row dt {
    margin: 0;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--v2-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}
.v2-result-meta-row dd {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--v2-charcoal);
    line-height: 1.4;
}
@media (max-width: 720px) {
    .v2-result-meta { padding: 12px 14px; }
    .v2-result-meta-row { grid-template-columns: 100px 1fr; padding: 6px 0; }
    .v2-result-meta-row dt { font-size: 10px; }
    .v2-result-meta-row dd { font-size: 12.5px; }
}

/* Override prior aspect-ratio rule so cards grow to fit image + meta dl */
.v2-results-gallery .v2-result-card {
    aspect-ratio: auto;
    height: auto;
    background: #fff;
}
.v2-results-gallery .v2-result-card .v2-result-img img {
    aspect-ratio: 16 / 10;
}

/* ============================================================
   CRO 2026-05-02 (round 4) — Why-Setup single-column relayout
   Why text on top (centered), gallery 3x2 below
   ============================================================ */
.v2-why-text-centered {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}
.v2-why-text-centered .v2-why-eyebrow { margin-bottom: 16px; }
.v2-why-text-centered .v2-h2 { margin-bottom: 16px; }
.v2-why-text-centered p {
    color: var(--v2-text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto 12px;
    max-width: 720px;
}
.v2-checklist-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}
.v2-checklist-row li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--v2-charcoal);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.4;
}
.v2-checklist-row li svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Gallery head centered */
.v2-why-gallery-3col .v2-why-gallery-head {
    text-align: center;
    margin: 0 auto 22px;
    max-width: 760px;
}
.v2-why-gallery-3col .v2-why-gallery-title { font-size: 22px; }
.v2-why-gallery-3col .v2-why-gallery-sub {
    margin: 8px auto 0;
    max-width: 680px;
}
.v2-why-gallery-3col { gap: 22px; }

/* 3-column grid on desktop */
.v2-why-gallery-3col .v2-why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .v2-why-gallery-3col .v2-why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 720px) {
    .v2-why-text-centered { margin-bottom: 28px; }
    .v2-why-text-centered p { font-size: 15px; }
    .v2-checklist-row { flex-direction: column; align-items: center; gap: 10px; }
    .v2-why-gallery-3col .v2-why-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .v2-why-gallery-3col .v2-why-gallery-title { font-size: 19px; }
}

/* ============================================================
   CRO 2026-05-02 (round 3) — paid-ad conversion stack
   ============================================================ */

/* Hero $1,999 includes chip row */
.v2-hero-includes {
    list-style: none;
    margin: 18px 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}
.v2-hero-includes li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.3;
    background: rgba(33, 164, 71, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px 12px;
    backdrop-filter: blur(4px);
}
.v2-hero-includes svg {
    width: 14px;
    height: 14px;
    color: #6FE19A;
    flex-shrink: 0;
}

/* Hero CTAs equal-weight (mobile stacks 100% wide each) */
.v2-hero-ctas-equal { display: flex; flex-wrap: wrap; gap: 12px; }
.v2-hero-ctas-equal .v2-btn-large { min-width: 240px; }
@media (max-width: 720px) {
    .v2-hero-ctas-equal { flex-direction: column; }
    .v2-hero-ctas-equal .v2-btn-large { width: 100%; min-width: 0; }
}

/* Hero trust + local proof microcopy */
.v2-hero-trust {
    margin: 16px 0 4px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13.5px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.v2-hero-localproof {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12.5px;
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
@media (max-width: 720px) {
    .v2-hero-trust { font-size: 12.5px; }
    .v2-hero-localproof { font-size: 12px; }
    .v2-hero-includes { gap: 6px 8px; margin: 14px 0 18px; }
    .v2-hero-includes li { font-size: 12.5px; padding: 5px 10px; }
}

/* Pricing trust microcopy */
.v2-pricing-trust {
    margin: 14px auto 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--v2-green);
    letter-spacing: 0.01em;
}

/* Yard Check form — "What happens next" 3-step block */
.yc-next-steps {
    max-width: 720px;
    margin: 24px auto 28px;
    padding: 22px 24px;
    background: #f2f7f1;
    border: 1px solid #e3eae2;
    border-radius: 14px;
}
.yc-next-steps-title {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--v2-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.yc-next-steps-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.yc-next-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.4;
    color: var(--v2-charcoal);
    font-weight: 500;
}
.yc-next-num {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--v2-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}
.yc-next-steps-note {
    margin: 4px 0 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--v2-text);
}
.yc-next-steps-phone {
    margin: 0;
    font-size: 13.5px;
    color: var(--v2-text-muted);
}
.yc-next-steps-phone a {
    color: var(--v2-green);
    font-weight: 700;
    text-decoration: none;
}
.yc-next-steps-phone a:hover { text-decoration: underline; }
@media (max-width: 720px) {
    .yc-next-steps { padding: 18px 18px; margin: 18px auto 22px; border-radius: 12px; }
    .yc-next-steps-list { grid-template-columns: 1fr; gap: 10px; }
    .yc-next-steps-list li { font-size: 14px; }
}

/* Form helper text + friendly legal */
.form-helper {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--v2-text-muted);
    line-height: 1.45;
}
.form-legal-friendly {
    margin: 8px 0 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--v2-text);
    text-align: center;
}

/* Sticky mobile bar (CTA + phone icon button) */
.sticky-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: none;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(15, 36, 25, 0.08);
    box-shadow: 0 -4px 18px rgba(15, 36, 25, 0.10);
}
.sticky-mobile-bar .sticky-mobile-cta {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 999px;
    background: var(--v2-green);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(33, 164, 71, 0.30);
    position: static;
    bottom: auto;
}
.sticky-mobile-bar .sticky-mobile-cta:hover { background: var(--v2-green-hover, #1B8C3C); }
.sticky-mobile-call {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--v2-green);
    color: var(--v2-green);
    text-decoration: none;
}
.sticky-mobile-call svg { width: 22px; height: 22px; }
.sticky-mobile-call:hover { background: rgba(33, 164, 71, 0.08); }
@media (max-width: 720px) {
    .sticky-mobile-bar { display: flex; }
}
/* When form is in view, hide the sticky bar to avoid covering the submit button */
.sticky-mobile-bar.is-hidden {
    transform: translateY(120%);
    transition: transform 0.25s ease;
}

/* ============================================================
   CRO 2026-05-02 (round 5) — Lead-gen hero with inline form card
   ============================================================ */
.v2-hero-leadgen {
    padding: 120px 0 88px;
}
.v2-hero-leadgen .v2-hero-inner.v2-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    max-width: 1240px;
    padding: 0 32px;
    width: 100%;
    margin: 0 auto;
}
.v2-hero-col-text { max-width: 560px; }

/* Hero badge (founding yard checks) */
.v2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 6px 14px;
    background: rgba(33, 164, 71, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.v2-hero-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #6FE19A;
    box-shadow: 0 0 0 4px rgba(111, 225, 154, 0.18);
}

/* Hero H1 + sub for lead-gen */
.v2-hero-h1-leadgen {
    font-size: clamp(36px, 5.2vw, 60px);
    line-height: 1.04;
    margin: 0 0 18px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
    letter-spacing: -0.01em;
}
.v2-hero-sub-leadgen {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 17px;
    line-height: 1.55;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.v2-hero-priceline {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.v2-hero-priceline strong { font-weight: 700; }
.v2-hero-leadgen .v2-hero-localproof {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.v2-hero-phone-line {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.v2-hero-phone-line a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Hero form card */
.v2-hero-form-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 28px 24px;
    box-shadow: 0 24px 60px rgba(15, 36, 25, 0.30);
    max-width: 460px;
    width: 100%;
    margin-left: auto;
}
.v2-hero-form-eyebrow {
    margin: 0 0 4px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--v2-green);
    text-transform: uppercase;
    letter-spacing: 0.10em;
}
.v2-hero-form-title {
    margin: 0 0 6px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.15;
    color: var(--v2-charcoal);
}
.v2-hero-form-sub {
    margin: 0 0 18px;
    font-size: 13.5px;
    color: var(--v2-text-muted);
    line-height: 1.5;
}
.v2-hero-field { margin-bottom: 12px; }
.v2-hero-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--v2-charcoal);
    letter-spacing: 0.02em;
}
.v2-hero-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1.5px solid #d8dcd5;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--v2-charcoal);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.v2-hero-input:focus {
    outline: 0;
    border-color: var(--v2-green);
    box-shadow: 0 0 0 3px rgba(33, 164, 71, 0.18);
}
.v2-hero-input-error {
    border-color: #d83434;
    background: #fff7f7;
}
.v2-hero-error {
    display: none;
    margin: 4px 0 0;
    font-size: 12px;
    color: #b22a2a;
    line-height: 1.4;
}
.v2-hero-form-submit {
    display: block;
    width: 100%;
    margin-top: 8px;
    box-sizing: border-box;
}
.v2-hero-form-trust {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
.v2-hero-form-trust li {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--v2-text-muted);
}
.v2-hero-form-trust li::before {
    content: "✓ ";
    color: var(--v2-green);
    font-weight: 700;
}

/* Mobile hero */
@media (max-width: 1024px) {
    .v2-hero-leadgen { padding: 96px 0 64px; }
    .v2-hero-leadgen .v2-hero-inner.v2-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 22px;
    }
    .v2-hero-form-card { margin: 0 auto; }
    .v2-hero-col-text { max-width: 720px; margin: 0 auto; text-align: left; }
}
@media (max-width: 600px) {
    .v2-hero-leadgen { padding: 86px 0 48px; }
    .v2-hero-h1-leadgen { font-size: 32px; line-height: 1.08; }
    .v2-hero-sub-leadgen { font-size: 15.5px; }
    .v2-hero-form-card { padding: 22px 20px 20px; border-radius: 14px; }
    .v2-hero-form-title { font-size: 21px; }
    .v2-hero-input { font-size: 16px; padding: 11px 12px; }
}

/* Form label soft (or use ...) */
.form-label-soft {
    color: var(--color-text-lighter, #8a95a0);
    font-weight: 400;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 4px;
}

/* Why a Yard Check section */
.v2-yc-why {
    background: var(--v2-bg-soft);
    padding: 72px 0;
}
.v2-yc-why-eyebrow { color: var(--v2-green); }
.v2-yc-why-h2 {
    margin: 8px auto 12px;
    max-width: 820px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
}
.v2-yc-why-sub {
    margin: 0 auto 32px;
    max-width: 720px;
    color: var(--v2-text-muted);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}
.v2-yc-why-grid {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1080px;
}
.v2-yc-why-grid li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #eef0ee;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--v2-charcoal);
}
.v2-yc-why-grid li svg {
    width: 22px; height: 22px;
    color: var(--v2-green);
    flex-shrink: 0;
}
.v2-yc-why-promise {
    margin: 26px auto 0;
    max-width: 720px;
    text-align: center;
    font-size: 13.5px;
    color: var(--v2-text-muted);
    font-style: italic;
}
@media (max-width: 1024px) { .v2-yc-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .v2-yc-why-grid { grid-template-columns: 1fr; gap: 10px; } }

/* Thank-you photo upload card */
.thanks-photo-card {
    margin: 28px auto 12px;
    max-width: 540px;
    padding: 24px 24px 20px;
    background: #f2f7f1;
    border: 1px solid #dde5db;
    border-radius: 16px;
    text-align: left;
}
.thanks-photo-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #0f2419;
    line-height: 1.3;
}
.thanks-photo-sub {
    margin: 0 0 6px;
    font-size: 14.5px;
    line-height: 1.5;
    color: #2c3a30;
}
.thanks-photo-tips {
    margin: 0 0 16px;
    font-size: 12.5px;
    color: #5b6770;
    line-height: 1.5;
}
.thanks-photo-form { margin: 0; }
.thanks-photo-input { display: none; }
.thanks-photo-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 1.5px dashed #c5d2c2;
    background: #fff;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.thanks-photo-drop:hover {
    border-color: var(--v2-green, #21a447);
    background: #fbfdfa;
}
.thanks-photo-drop svg {
    width: 28px; height: 28px;
    color: var(--v2-green, #21a447);
    margin-bottom: 4px;
}
.thanks-photo-drop-main {
    font-size: 14.5px;
    font-weight: 600;
    color: #0f2419;
}
.thanks-photo-drop-sub {
    font-size: 12px;
    color: #5b6770;
}
.thanks-photo-list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}
.thanks-photo-item {
    font-size: 12.5px;
    color: #2c3a30;
    padding: 4px 0;
    border-bottom: 1px solid #e6ece4;
}
.thanks-photo-item:last-child { border-bottom: 0; }
.thanks-photo-item-warn { color: #b22a2a; }
.thanks-photo-submit {
    width: 100%;
    margin-top: 14px;
}
.thanks-photo-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.thanks-photo-note {
    margin: 10px 0 0;
    font-size: 12px;
    color: #5b6770;
    text-align: center;
}

/* ============================================================
   CRO 2026-05-02 (round 6) — Test variant pages (v1/v2/v5/v6)
   Shared minimal topbar, microcopy, thanks state, presale steps
   ============================================================ */

/* Variant topbar (replaces full v2 nav) */
.v2-topbar { /* exists; ensure inner layout for variants */ }
.v2-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    max-width: 1240px;
    margin: 0 auto;
}
.v2-topbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-decoration: none;
}
.v2-topbar-brand span { color: var(--v2-green); }
.v2-topbar-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    backdrop-filter: blur(4px);
}
.v2-topbar-call:hover { background: rgba(255, 255, 255, 0.08); }
.v2-topbar-call svg { width: 16px; height: 16px; }
.variant-topbar-tag {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
@media (max-width: 600px) {
    .v2-topbar-call span { display: none; }
    .v2-topbar-call { padding: 8px 10px; }
}

/* Variant form card refinements */
.variant-form-card .v2-hero-form-eyebrow { letter-spacing: 0.08em; }
.variant-microcopy {
    margin: 12px 0 8px;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--v2-text-muted);
    text-align: center;
}
.variant-consent {
    margin: 6px 0 0;
    font-size: 11.5px;
    line-height: 1.5;
    color: #8a95a0;
    text-align: center;
}
.variant-consent a {
    color: var(--v2-green);
    text-decoration: underline;
}
.variant-submit-error {
    margin-top: 10px;
    text-align: center;
}

/* Thanks state inside form card */
.variant-thanks {
    text-align: left;
}
.variant-thanks-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(33, 164, 71, 0.14);
    color: var(--v2-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.variant-thanks-icon svg { width: 26px; height: 26px; }
.variant-thanks-title {
    margin: 0 0 12px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    color: var(--v2-charcoal);
}
.variant-thanks-sub {
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--v2-text);
}
.variant-thanks-list {
    margin: 0 0 16px;
    padding-left: 20px;
    font-size: 14px;
    color: var(--v2-text-muted);
    line-height: 1.55;
}
.variant-thanks-list li { margin-bottom: 6px; }
.variant-thanks-list a { color: var(--v2-green); font-weight: 700; text-decoration: none; }
.variant-thanks-list a:hover { text-decoration: underline; }
.variant-thanks-cta-line {
    margin: 14px 0 12px;
    padding: 12px 14px;
    background: #f2f7f1;
    border: 1px solid #e3eae2;
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--v2-text);
    line-height: 1.5;
}

/* Step 2 form */
.variant-step2-form .v2-hero-field { margin-bottom: 10px; }
.variant-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 14px;
    color: var(--v2-charcoal);
}
.variant-radio-row label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #d8dcd5;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.variant-radio-row label:has(input:checked) {
    border-color: var(--v2-green);
    background: rgba(33, 164, 71, 0.08);
}
.variant-step2-saved {
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(33, 164, 71, 0.10);
    border: 1px solid rgba(33, 164, 71, 0.25);
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--v2-green);
    font-weight: 600;
    text-align: center;
}

/* Variant supporting section */
.variant-support {
    background: #fff;
    padding: 64px 0;
}
.variant-support-alt { background: var(--v2-bg-soft); }
.variant-support-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eef0ee;
    border-radius: 14px;
    padding: 28px 28px;
    box-shadow: 0 4px 14px rgba(15, 36, 25, 0.04);
}
.variant-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}
.variant-support-grid .variant-support-card { max-width: none; }
.variant-bullets {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}
.variant-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--v2-charcoal);
}
.variant-bullets-tight li { padding: 3px 0; font-size: 14px; }
.variant-bullets svg { width: 18px; height: 18px; margin-top: 1px; flex-shrink: 0; }
.variant-confirm-line {
    color: rgba(255, 255, 255, 0.78);
    display: block;
    margin-top: 4px;
    font-size: 12.5px;
}
.variant-confirm-foot {
    margin: 16px 0 0;
    font-size: 13px;
    color: var(--v2-text-muted);
    font-style: italic;
}

/* Presale steps + offer card */
.variant-presale-steps {
    list-style: none;
    margin: 28px auto 0;
    padding: 0;
    max-width: 820px;
    display: grid;
    gap: 16px;
}
.variant-presale-steps > li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eef0ee;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 4px 12px rgba(15, 36, 25, 0.04);
}
.variant-presale-num {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--v2-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.variant-presale-steps h4 {
    margin: 0 0 4px;
    font-size: 16px;
    color: var(--v2-charcoal);
    font-weight: 700;
}
.variant-presale-steps p {
    margin: 0;
    font-size: 14px;
    color: var(--v2-text-muted);
    line-height: 1.5;
}
.variant-offer-card {
    margin: 28px auto 0;
    max-width: 720px;
    background: #fff;
    border: 1.5px solid var(--v2-green);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 6px 18px rgba(33, 164, 71, 0.08);
}
.variant-offer-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--v2-green);
}
.variant-support-fineprint {
    margin-top: 14px;
    font-size: 13px;
    color: var(--v2-text-muted);
    line-height: 1.5;
    font-style: italic;
}
.variant-support-pricenote { background: #fff; padding: 56px 0; }
.variant-pricenote {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: var(--v2-bg-soft);
    border-radius: 14px;
    padding: 28px 28px;
}
.variant-pricenote p {
    margin: 0 0 16px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--v2-charcoal);
}
.variant-presale-cta { display: inline-flex; }
@media (max-width: 720px) {
    .variant-support { padding: 44px 0; }
    .variant-support-grid { grid-template-columns: 1fr; }
    .variant-support-card { padding: 22px 20px; }
    .variant-presale-steps > li { padding: 16px 18px; flex-direction: column; gap: 10px; }
    .variant-pricenote { padding: 22px 20px; }
}

/* Variant footer */
.variant-footer {
    background: #0F2419;
    color: rgba(255, 255, 255, 0.78);
    padding: 36px 0 32px;
    text-align: center;
}
.variant-footer-brand {
    margin: 0 0 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}
.variant-footer-brand span { color: var(--v2-green); }
.variant-footer-links {
    margin: 0 0 14px;
    font-size: 13.5px;
}
.variant-footer-links a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    margin: 0 4px;
}
.variant-footer-links a:hover { text-decoration: underline; }
.variant-footer-links span { opacity: 0.4; }
.variant-footer-fineprint {
    max-width: 760px;
    margin: 0 auto;
    font-size: 11.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 600px) {
    .variant-footer-links { font-size: 12.5px; line-height: 1.8; }
}

/* ============================================================
   CRO 2026-05-02 (round 7) — Presale variant additions
   ============================================================ */

/* FAQ accordion (compact) */
.variant-faq {
    max-width: 760px;
    margin: 24px auto 0;
}
.variant-faq-item {
    background: #fff;
    border: 1px solid #eef0ee;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    transition: box-shadow 0.15s ease;
}
.variant-faq-item[open] {
    box-shadow: 0 4px 14px rgba(15, 36, 25, 0.06);
    border-color: rgba(33, 164, 71, 0.30);
}
.variant-faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--v2-charcoal);
    padding-right: 30px;
    position: relative;
}
.variant-faq-item summary::-webkit-details-marker { display: none; }
.variant-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(33, 164, 71, 0.12);
    color: var(--v2-green);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.variant-faq-item[open] summary::after { content: "−"; }
.variant-faq-item p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--v2-text-muted);
}

/* Offer card body copy (added in v2-discount round) */
.variant-offer-copy {
    margin: 0 0 12px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--v2-text);
}
.variant-pricenote .v2-h3 { margin-bottom: 12px; }
.variant-pricenote-bullets {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
    text-align: left;
}
.variant-pricenote-bullets li::before {
    content: "·";
    margin-right: 8px;
    color: var(--v2-green);
    font-weight: 700;
}
@media (max-width: 600px) {
    .variant-faq-item summary { font-size: 14.5px; }
    .variant-faq-item p { font-size: 13.5px; }
}

/* ============================================================
   CRO 2026-05-07 — LOPKIN L2500 specs accordion (collapsible)
   ============================================================ */
.v2-specs-details {
    max-width: 880px;
    margin: 24px auto 0;
    border: 1px solid #e3eae2;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.18s ease;
}
.v2-specs-details[open] {
    box-shadow: 0 6px 22px rgba(15, 36, 25, 0.06);
    border-color: rgba(33, 164, 71, 0.32);
}
.v2-specs-details > summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--v2-charcoal);
    transition: background 0.15s ease;
}
.v2-specs-details > summary::-webkit-details-marker { display: none; }
.v2-specs-details > summary:hover { background: #f7fbf6; }
.v2-specs-summary-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.v2-specs-summary-hint {
    font-size: 12.5px;
    color: var(--v2-text-muted);
    font-weight: 500;
}
.v2-specs-details > summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(33, 164, 71, 0.12);
    color: var(--v2-green);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.v2-specs-details[open] > summary::after { content: "−"; }

.v2-specs-body {
    padding: 4px 22px 22px;
    border-top: 1px solid #eef0ee;
}
.v2-specs-intro {
    margin: 18px 0 18px;
    padding: 12px 14px;
    background: #f2f7f1;
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--v2-text);
}
.v2-specs-group {
    margin: 0 0 16px;
    padding: 14px 0 0;
    border-top: 1px solid #f1f3f1;
}
.v2-specs-group:first-of-type { border-top: 0; padding-top: 0; }
.v2-specs-group h4 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--v2-green);
}
.v2-specs-group dl {
    margin: 0;
    display: grid;
    grid-template-columns: minmax(140px, 0.9fr) 1fr;
    gap: 6px 18px;
    font-size: 14px;
    line-height: 1.5;
}
.v2-specs-group dl > div {
    display: contents;
}
.v2-specs-group dl dt {
    margin: 0;
    color: var(--v2-text-muted);
    padding: 4px 0;
    border-bottom: 1px dashed #eef0ee;
}
.v2-specs-group dl dd {
    margin: 0;
    color: var(--v2-charcoal);
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 1px dashed #eef0ee;
}
.v2-specs-group dl > div:last-child dt,
.v2-specs-group dl > div:last-child dd { border-bottom: 0; }
.v2-specs-source {
    margin: 18px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: var(--v2-text-muted);
    font-style: italic;
}
.v2-specs-source a {
    color: var(--v2-green);
    text-decoration: none;
}
.v2-specs-source a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .v2-specs-details > summary { padding: 16px 18px; }
    .v2-specs-summary-title { font-size: 15px; }
    .v2-specs-summary-hint { display: none; }
    .v2-specs-body { padding: 4px 18px 18px; }
    .v2-specs-group dl {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .v2-specs-group dl dt {
        padding: 8px 0 2px;
        border-bottom: 0;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .v2-specs-group dl dd {
        padding: 0 0 8px;
        border-bottom: 1px dashed #eef0ee;
    }
}

/* ============================================================
   CRO 2026-05-08 — Lean page polish
   (page now: hero -> why yard check -> pricing -> cost+map ->
    reference yards -> service & warranty terms -> FAQ -> final CTA)
   ============================================================ */

/* Ordered list inside an FAQ answer (used by "What does the on-site
   installation include?"). Prefer numbered, tight, easy to scan. */
.faq-step-list {
    margin: 12px 0 12px 0;
    padding-left: 22px;
    list-style: decimal;
}
.faq-step-list li {
    padding: 4px 0;
    line-height: 1.55;
    color: var(--v2-text);
}
.faq-step-list li strong { color: var(--v2-charcoal); }

/* Section padding rhythm — slightly tighter now that the page is leaner */
.v2-yc-why         { padding: 64px 0; }
.v2-included-pricing { padding: 64px 0; }
.v2-cost-service   { padding: 64px 0; }
.v2-results-section { padding: 64px 0; }
.v2-terms-section  { padding: 64px 0; }
.v2-faq-section    { padding: 56px 0 64px; }
@media (max-width: 720px) {
    .v2-yc-why,
    .v2-included-pricing,
    .v2-cost-service,
    .v2-results-section,
    .v2-terms-section { padding: 44px 0; }
    .v2-faq-section { padding: 40px 0 48px; }
}

/* Slightly slimmer FAQ links inside answers */
.faq-answer-inner a {
    color: var(--v2-green);
    font-weight: 600;
}
.faq-answer-inner a:hover { text-decoration: underline; }

/* ============================================================
   2026-05-08 — Lean section eyebrow + slimmer mower / install padding
   ============================================================ */

/* A small, quiet section eyebrow used above lean section H2 titles
   (replaces the old "YOUR MOWER PACKAGE" heavy chip). */
.v2-section-eyebrow {
    margin: 0 0 6px;
    text-align: center;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v2-green);
}

/* The mower section is asset-heavy (gallery + 6 cards + specs).
   Use slightly tighter top/bottom padding so it doesn't dwarf neighbours. */
.v2-mower-section.v2-mower-section-lean { padding: 64px 0 56px; }
.v2-mower-section-lean .text-center { margin-bottom: 22px; }
.v2-mower-section-lean .v2-mower-gallery { margin-top: 0; }
.v2-mower-section-lean .v2-mower-grid { margin-top: 28px; }
.v2-mower-section-lean .v2-mower-specs { margin-top: 28px; }
@media (max-width: 720px) {
    .v2-mower-section.v2-mower-section-lean { padding: 44px 0 36px; }
    .v2-mower-section-lean .v2-mower-grid { margin-top: 20px; }
    .v2-mower-section-lean .v2-mower-specs { margin-top: 20px; }
}

/* Install gallery: lean variant (no "Why Setup Matters" wrap). */
.v2-why.v2-install-section { padding: 56px 0 64px; background: var(--v2-bg-soft); }
.v2-install-section .text-center { margin-bottom: 22px; }
.v2-install-section .v2-why-gallery-3col .v2-why-grid { margin-top: 0; }
@media (max-width: 720px) {
    .v2-why.v2-install-section { padding: 36px 0 44px; }
}
