/* Santa Fe RubbleCrusher Campaign - Mobile-First CSS */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --4ce-green: #158815;
    --4ce-green-dark: #0E600E;
    --4ce-green-bright: #04b404;
    --4ce-orange: #E47200;
    --4ce-orange-light: #F58A1F;
    --4ce-orange-bg: #FFF3E6;
    --4ce-black: #000000;
    --4ce-white: #FFFFFF;
    --4ce-green-light: #E8F5E9;
    --4ce-neutral: #F3F5F4;
    --4ce-nav-band: #E1E4E2;
    --4ce-text: #1D241F;
    --4ce-radius-sm: 6px;
    --4ce-radius-md: 12px;
    --4ce-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 18px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
}

html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--4ce-text);
    background: var(--4ce-white);
    padding-top: 56px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--4ce-green); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: var(--space-md); color: var(--4ce-black); }
h1 { font-size: 36px; }
h2 { font-size: 28px; margin-bottom: var(--space-lg); }
h3 { font-size: 21px; }
p { margin-bottom: var(--space-md); }

@media (min-width: 768px) {
    h1 { font-size: 52px; }
    h2 { font-size: 38px; }
    h3 { font-size: 24px; }
    body { font-size: 18px; }
}

@media (min-width: 1024px) {
    h1 { font-size: 68px; }
    h2 { font-size: 48px; }
    h3 { font-size: 30px; }
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md); }
@media (min-width: 768px) { .container { padding: 0 var(--space-xl); } }

.section { padding: 52px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

.skip-link { position: absolute; top: -40px; left: 0; background: var(--4ce-green); color: white; padding: var(--space-sm) var(--space-md); z-index: 100; font-weight: 600; }
.skip-link:focus { top: 0; }

.campaign-header { position: fixed; top: 0; left: 0; right: 0; background: var(--4ce-white); border-bottom: 2px solid var(--4ce-green); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); z-index: 1000; height: 56px; }
@media (min-width: 768px) { .campaign-header { height: 68px; } }
.campaign-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.campaign-header-logo { height: 32px; width: auto; }
@media (min-width: 768px) { .campaign-header-logo { height: 44px; } }
.campaign-header-actions { display: flex; gap: var(--space-sm); align-items: center; }
.header-tagline { display: none; margin-right: var(--space-md); font-size: 14px; color: var(--4ce-orange); font-weight: 700; }
@media (min-width: 1024px) { .header-tagline { display: block; } }

.btn { display: inline-block; padding: 14px 24px; font-size: 16px; font-weight: 600; text-align: center; border-radius: var(--4ce-radius-sm); cursor: pointer; transition: all 0.2s ease; min-height: 48px; line-height: 1.4; text-decoration: none; border: 2px solid transparent; }
.btn-primary { background: var(--4ce-green); color: white; }
.btn-primary:hover { background: var(--4ce-green-dark); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--4ce-green-dark); border-color: var(--4ce-green); }
.btn-secondary:hover { background: var(--4ce-green-light); text-decoration: none; }
.btn-tertiary { background: transparent; color: var(--4ce-text); border: none; text-decoration: underline; padding: 8px 12px; font-size: 15px; min-height: auto; }
.btn-tertiary:hover { color: var(--4ce-green); text-decoration: underline; }
.btn-phone { background: var(--4ce-black); color: white; border: 2px solid var(--4ce-green); }
.btn-phone:hover { background: var(--4ce-text); border-color: var(--4ce-green-bright); text-decoration: none; }
.btn:focus { outline: 3px solid var(--4ce-green); outline-offset: 2px; }

.campaign-header .btn { padding: 8px 16px; font-size: 14px; min-height: 36px; }
@media (min-width: 768px) { .campaign-header .btn { padding: 10px 20px; font-size: 16px; min-height: 44px; } }

.campaign-mobile-actions { display: flex; gap: var(--space-xs); position: fixed; bottom: 0; left: 0; right: 0; background: var(--4ce-white); box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); padding: var(--space-sm); padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom)); z-index: 999; }
.campaign-mobile-actions a { flex: 1; padding: 14px; text-align: center; font-weight: 600; font-size: 15px; }
@media (min-width: 768px) { .campaign-mobile-actions { display: none; } }

.hero { background: linear-gradient(135deg, var(--4ce-orange-bg) 0%, var(--4ce-green-light) 100%); border-left: 4px solid var(--4ce-orange); }
.hero-eyebrow { font-size: 14px; font-weight: 700; color: var(--4ce-orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: var(--space-sm); }
.hero-content { margin-bottom: var(--space-2xl); }
.hero-trust { font-size: 15px; color: var(--4ce-text); font-style: italic; margin-top: var(--space-lg); }
.hero-ctas { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
@media (min-width: 480px) { .hero-ctas { flex-direction: row; flex-wrap: wrap; } .hero-ctas .btn { flex: 1; min-width: 200px; } }
.hero-brand { width: 100%; display: flex; justify-content: center; align-items: center; margin-bottom: var(--space-xl); }
.hero-brand-logo { display: block; width: 100%; max-width: 220px; height: auto; margin: 0; border-radius: var(--4ce-radius-sm); }
@media (min-width: 768px) { .hero-brand-logo { max-width: 280px; } }
.hero-image { margin-top: var(--space-xl); border-radius: var(--4ce-radius-md); overflow: hidden; box-shadow: var(--4ce-shadow); }
@media (min-width: 1024px) { .hero .container { display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--space-3xl); row-gap: var(--space-xl); align-items: center; } .hero-brand { grid-column: 1 / -1; justify-self: stretch; margin-bottom: 0; } .hero-brand-logo { max-width: 320px; } .hero-image { margin-top: 0; } }

.trust-strip { background: var(--4ce-black); border-top: 3px solid var(--4ce-orange); border-bottom: 3px solid var(--4ce-green); padding: 24px 0; }
@media (min-width: 768px) { .trust-strip { padding: 30px 0; } }
.trust-strip .trust-item-text { color: var(--4ce-white); }
.trust-strip .trust-item-icon { color: var(--4ce-orange); }
.trust-strip-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; align-items: start; }
@media (min-width: 768px) { .trust-strip-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }
.trust-item { text-align: center; padding: 4px 8px; }
.trust-item-icon { font-size: 26px; line-height: 1; margin-bottom: 8px; }
.trust-item-text { font-size: 15px; line-height: 1.35; font-weight: 600; color: var(--4ce-text); max-width: 220px; margin: 0 auto; }

.campaign-form-section { background: var(--4ce-neutral); }
.campaign-form-intro { max-width: 700px; margin: 0 auto var(--space-2xl); text-align: center; }
.nutshell-form-placeholder { background: var(--4ce-white); border-radius: var(--4ce-radius-md); padding: var(--space-xl); min-height: 400px; box-shadow: var(--4ce-shadow); max-width: 800px; margin: 0 auto; }
.nutshell-form-placeholder::before { content: "<!-- TEX: INSERT THE APPROVED SANTA FE RUBBLECRUSHER NUTSHELL FORM HERE -->"; display: block; padding: var(--space-xl); background: var(--4ce-green-light); border: 2px dashed var(--4ce-green); border-radius: var(--4ce-radius-sm); text-align: center; font-family: monospace; color: var(--4ce-green-dark); }

.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--4ce-white); border-radius: var(--4ce-radius-md); padding: var(--space-xl); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.card h3 { color: var(--4ce-green-dark); margin-bottom: var(--space-md); }
.card { border-top: 3px solid var(--4ce-green); border-left: 1px solid var(--4ce-green-light); }

.spec-table { width: 100%; border-collapse: collapse; margin: var(--space-lg) 0; }
.spec-table td { padding: var(--space-md); border-bottom: 1px solid #D5E8D5; }
.spec-table td:first-child { font-weight: 600; width: 40%; }
.payment-table th { padding: var(--space-sm) var(--space-md); border-bottom: 2px solid var(--4ce-green); font-size: 15px; font-weight: 700; text-align: left; }
.payment-table th.text-right, .payment-table td.text-right { text-align: right; }
.payment-table td { font-size: 16px; }
.payment-estimates h3 { font-size: 20px; font-weight: 700; color: var(--4ce-text); }
@media (max-width: 480px) {
  .payment-table { max-width: 100% !important; }
  .payment-table th, .payment-table td { padding: var(--space-sm); font-size: 14px; }
}

.fit-comparison { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
@media (min-width: 768px) { .fit-comparison { grid-template-columns: 1fr 1fr; } }
.fit-list { list-style: none; }
.fit-list li { padding: var(--space-sm) 0 var(--space-sm) var(--space-xl); position: relative; }
.fit-list li::before { content: "✓"; position: absolute; left: 0; color: var(--4ce-green-bright); font-weight: 700; font-size: 20px; }
.fit-list.weaker li::before { content: "✗"; color: #C33; }
.fit-stronger { color: var(--4ce-green-bright); font-weight: 600; }
.fit-weaker { color: #C33; }

.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E5E5E5; }
.faq-button { width: 100%; text-align: left; padding: var(--space-lg); background: none; border: none; font-size: 18px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--4ce-black); }
.faq-button:hover { background: var(--4ce-orange-bg); }
.faq-button:focus { outline: 3px solid var(--4ce-orange); outline-offset: -3px; }
.faq-icon { transition: transform 0.2s ease; }
.faq-button[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-content { padding: 0 var(--space-lg) var(--space-lg); display: none; }
.faq-content.is-open { display: block; }

.campaign-footer { background: var(--4ce-black); color: var(--4ce-white); padding: var(--space-3xl) 0 var(--space-xl); padding-bottom: calc(var(--space-xl) + 60px); border-top: 4px solid var(--4ce-orange); }
@media (min-width: 768px) { .campaign-footer { padding-bottom: var(--space-xl); } }
.footer-content { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
@media (min-width: 768px) { .footer-content { grid-template-columns: 2fr 1fr; } }
.footer-content h3 { color: var(--4ce-orange); margin-bottom: var(--space-md); }
.footer-content a { color: var(--4ce-green-bright); }
.footer-content a:hover { color: var(--4ce-orange-light); }
.footer-links { display: flex; gap: var(--space-lg); flex-wrap: wrap; margin-top: var(--space-md); flex-direction: column; }
.footer-copyright { margin-top: var(--space-xl); padding-top: var(--space-xl); border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 14px; color: rgba(255, 255, 255, 0.6); }

.text-center { text-align: center; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.disclaimer { font-size: 14px; color: #666; font-style: italic; margin-top: var(--space-md); }

.bg-neutral { background: var(--4ce-neutral); }
.bg-light-green { background: var(--4ce-green-light); }

.financing-card, .final-conversion, .rc-j72-teaser { max-width: 800px; margin: 0 auto; }
.financing-subheading { font-size: 18px; font-weight: 600; color: var(--4ce-orange); margin-bottom: var(--space-md); }
.rc-j72-teaser { background: linear-gradient(135deg, var(--4ce-orange-bg), var(--4ce-green-light)); border: 2px solid var(--4ce-orange); }
.final-conversion { background: linear-gradient(135deg, var(--4ce-green-light), var(--4ce-orange-bg)); border: 2px solid var(--4ce-green); }
.cta-group { display: flex; flex-direction: column; gap: var(--space-md); align-items: center; }
.cta-group .btn { min-width: 280px; }

/* Video section */
.video-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }

.video-card { background: var(--4ce-white); border-radius: var(--4ce-radius-md); overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.video-card:hover { transform: translateY(-2px); box-shadow: var(--4ce-shadow); }
.video-card:focus { outline: 3px solid var(--4ce-green); outline-offset: 2px; }
.video-card.is-featured { grid-column: 1 / -1; }

.video-thumbnail { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--4ce-neutral); overflow: hidden; }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 68px; height: 48px; background: rgba(0, 0, 0, 0.75); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; pointer-events: none; }
.video-play-btn::after { content: ''; display: block; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 18px; border-color: transparent transparent transparent #fff; margin-left: 3px; }
.video-card:hover .video-play-btn { background: var(--4ce-orange); }
.video-duration { position: absolute; bottom: var(--space-sm); right: var(--space-sm); background: rgba(0, 0, 0, 0.8); color: #fff; font-size: 13px; font-weight: 600; padding: 2px 8px; border-radius: 4px; }

.video-card-info { padding: var(--space-md) var(--space-lg); }
.video-card-info h3 { font-size: 18px; margin-bottom: var(--space-xs); }
.video-card-info p { font-size: 14px; color: #666; margin-bottom: 0; }
.video-card-type { font-size: 12px; font-weight: 700; color: var(--4ce-orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: var(--space-xs); }

.video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: none; border-radius: var(--4ce-radius-md) var(--4ce-radius-md) 0 0; }

.video-loading { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.8); color: #fff; font-size: 16px; font-weight: 600; z-index: 5; }

@media (min-width: 768px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .video-card.is-featured { grid-column: 1 / -1; } .video-card.is-featured .video-thumbnail { aspect-ratio: 21 / 9; } }

.video-empty-state { grid-column: 1 / -1; padding: var(--space-3xl); background: var(--4ce-white); border-radius: var(--4ce-radius-md); border: 2px dashed var(--4ce-green); text-align: center; }
.video-empty-icon { font-size: 48px; margin-bottom: var(--space-md); }

/* Product cards */
.product-card { background: var(--4ce-white); border-radius: var(--4ce-radius-md); overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); display: flex; flex-direction: column; }
.product-card-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-card-body { padding: var(--space-lg); flex: 1; display: flex; flex-direction: column; }
.product-card-badge { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-bottom: var(--space-sm); }
.product-card-badge.available { background: var(--4ce-green-light); color: var(--4ce-green-dark); border: 1px solid var(--4ce-green); }
.product-card { border-top: 3px solid var(--4ce-orange); }
.product-card-badge.contact { background: var(--4ce-neutral); color: var(--4ce-text); }
.product-card-type { font-size: 13px; color: #666; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: var(--space-xs); }
.product-card h3 { font-size: 20px; margin-bottom: var(--space-sm); }
.product-card-price { font-size: 22px; font-weight: 700; color: var(--4ce-green-dark); margin-bottom: var(--space-xs); }
.equipment-price-estimate { font-size: 14px; color: var(--4ce-text); margin-bottom: var(--space-md); }
.equipment-price-estimate strong { color: var(--4ce-green); font-weight: 700; }
.estimate-link { color: var(--4ce-green); font-weight: 600; text-decoration: underline; font-size: 13px; }
.estimate-link:hover { color: var(--4ce-green-dark); }
.equipment-estimate-note { font-size: 12px; color: #777; line-height: 1.5; margin-bottom: var(--space-md); padding: var(--space-sm) var(--space-md); background: var(--4ce-neutral); border-radius: var(--4ce-radius-sm); border-left: 3px solid var(--4ce-green); }
.product-card-specs { list-style: none; padding: 0; margin-bottom: var(--space-lg); font-size: 14px; color: var(--4ce-text); }
.product-card-specs li { padding: var(--space-xs) 0; border-bottom: 1px solid #E5E5E5; }
.product-card .btn { margin-top: auto; }

.product-empty-state { text-align: center; padding: var(--space-3xl); background: var(--4ce-neutral); border-radius: var(--4ce-radius-md); }
.product-empty-state p { font-size: 18px; color: var(--4ce-text); }

/* Equipment feature rows */
.equipment-feature { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-xl); align-items: start; background: var(--4ce-white); border-radius: var(--4ce-radius-md); overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); border-top: 4px solid var(--4ce-green); margin-bottom: var(--space-xl); }
.equipment-feature.rc-j65-feature { border-top: 5px solid var(--4ce-green); box-shadow: 0 6px 16px rgba(21, 136, 21, 0.12); }
.equipment-feature.rc-j72-upcoming { border-top: 4px solid var(--4ce-orange); background: var(--4ce-neutral); }
.equipment-feature.rc-j72-upcoming .equipment-feature-image { border-color: var(--4ce-orange); opacity: 0.85; }
.equipment-feature.rc-j72-upcoming .equipment-feature-body h3 { color: var(--4ce-text); }
.equipment-feature-image { overflow: hidden; aspect-ratio: 4 / 3; border-radius: 10px; border: 3px solid var(--4ce-green); margin: var(--space-lg); box-shadow: 0 4px 10px rgba(21, 136, 21, 0.15); }
.equipment-feature-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }
.equipment-feature-body { padding: var(--space-xl); display: flex; flex-direction: column; }
.equipment-feature-body h3 { color: var(--4ce-green-dark); margin-bottom: var(--space-sm); font-size: 22px; }
.equipment-feature-desc { color: var(--4ce-text); line-height: 1.6; margin-bottom: var(--space-md); font-size: 15px; }
.product-card-badge.upcoming { background: var(--4ce-orange-bg); color: var(--4ce-orange); }
.equipment-feature .cta-group { margin-top: var(--space-md); }
@media (max-width: 768px) {
  .equipment-feature { grid-template-columns: 1fr; gap: 0; }
  .equipment-feature-image { aspect-ratio: 16 / 9; margin: var(--space-md); }
  .equipment-feature-body { padding: var(--space-lg); }
}
@media (max-width: 600px) {
  .spec-table, .spec-table tbody, .spec-table tr, .spec-table td { display: block; width: 100%; }
  .spec-table tr { border-bottom: 1px solid #D5E8D5; padding: var(--space-xs) 0; }
  .spec-table td { border-bottom: none; padding: var(--space-xs) 0; width: 100%; }
  .spec-table td:first-child { font-weight: 700; font-size: 13px; color: var(--4ce-green-dark); width: 100%; }
  .spec-table td:last-child { font-size: 15px; padding-top: 2px; }
  .payment-table, .payment-table thead, .payment-table tbody, .payment-table tr, .payment-table th, .payment-table td { display: block; width: 100%; }
  .payment-table thead { display: none; }
  .payment-table tr { border-bottom: 1px solid #D5E8D5; padding: var(--space-sm) 0; }
  .payment-table td { padding: var(--space-xs) 0; border-bottom: none; text-align: left; }
  .payment-table td:first-child { font-weight: 700; color: var(--4ce-green-dark); }
  .payment-table td.text-right { text-align: left; }
}

/* Proof module */
.proof-module { border: 2px solid var(--4ce-orange); background: var(--4ce-orange-bg); }
.proof-contact p { margin-bottom: var(--space-sm); font-size: 16px; }
.proof-contact a { color: var(--4ce-green); font-weight: 600; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-xl); max-width: 900px; margin: 0 auto; }
.team-card { background: #fff; border-radius: var(--4ce-radius-md); overflow: hidden; box-shadow: var(--4ce-shadow); border-top: 4px solid var(--4ce-green); transition: transform 0.2s; }
.team-card:hover { transform: translateY(-4px); }
.salesperson-photo { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: var(--4ce-neutral); border-bottom: 3px solid var(--4ce-green); }
.salesperson-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.team-info { padding: var(--space-lg); }
.team-info h3 { color: var(--4ce-green-dark); margin-bottom: var(--space-xs); font-size: 22px; }
.team-role { color: var(--4ce-green); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: var(--space-md); }
.team-info p { color: var(--4ce-text); line-height: 1.6; margin-bottom: var(--space-md); font-size: 15px; }
.team-contact { display: flex; flex-direction: column; gap: 0; padding-top: var(--space-sm); border-top: 1px solid #e0e0e0; }
.team-contact a { color: var(--4ce-green-dark); text-decoration: none; font-size: 15px; font-weight: 600; }
.team-contact a:hover { color: var(--4ce-orange); }
.salesperson-contact-row { display: flex; align-items: flex-start; gap: 8px; margin-top: 6px; }
.salesperson-contact-row .contact-icon { flex: 0 0 auto; line-height: 1.4; }
.salesperson-contact-row a { min-width: 0; overflow-wrap: anywhere; word-break: normal; line-height: 1.4; }
.salesperson-phone a { white-space: nowrap; }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

#current-equipment .equipment-feature:last-child { margin-bottom: 0; }
#current-equipment { padding-bottom: var(--space-lg); }
.financing-section { padding-top: var(--space-lg); padding-bottom: var(--space-xl); }
@media (min-width: 768px) {
    #current-equipment { padding-bottom: var(--space-xl); }
    .financing-section { padding-top: var(--space-xl); padding-bottom: var(--space-2xl); }
}

/* RC-J72 integrated video module */
.rc-j72-video-module {
    grid-column: 1 / -1;
    width: 100%;
    padding: 0 var(--space-xl) var(--space-xl);
}

.rc-j72-video-copy {
    width: 100%;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--4ce-orange);
    text-align: center;
}

.rc-j72-video-copy h4 {
    margin-bottom: var(--space-sm);
    font-size: 24px;
    line-height: 1.25;
    color: var(--4ce-black);
}

.rc-j72-video-copy p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--4ce-text);
}

.rc-j72-video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.rc-j72-video-container video {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    border-radius: var(--4ce-radius-md);
    box-shadow: var(--4ce-shadow);
    background: var(--4ce-black);
}

@media (max-width: 768px) {
    .rc-j72-video-module {
        padding: 0 var(--space-lg) var(--space-lg);
    }

    .rc-j72-video-copy {
        padding-top: var(--space-lg);
        margin-bottom: var(--space-md);
    }

    .rc-j72-video-copy h4 {
        font-size: 21px;
    }

    .rc-j72-video-copy p {
        font-size: 14px;
    }
}

/* Desktop section navigation */
.campaign-section-nav {
    display: none;
}

@media (min-width: 1024px) {
    .campaign-section-nav {
        display: block;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        height: 38px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--4ce-orange);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        z-index: 990;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-110%);
        transition:
            opacity 0.18s ease,
            transform 0.18s ease,
            visibility 0.18s ease;
    }

    .campaign-section-nav.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .campaign-section-nav .container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .campaign-section-nav .container::-webkit-scrollbar {
        display: none;
    }

    .section-nav-list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
        white-space: nowrap;
    }

    .section-nav-list li {
        margin: 0;
        padding: 0;
    }

    .section-nav-list a {
        display: flex;
        align-items: center;
        min-height: 32px;
        padding: 6px 12px;
        color: var(--4ce-text);
        font-size: 13px;
        line-height: 1;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: border-color 0.2s ease, font-weight 0.1s ease;
    }

    .section-nav-list a:hover {
        color: var(--4ce-green-dark);
        text-decoration: none;
    }

    .section-nav-list a[aria-current="location"] {
        font-weight: 600;
        border-bottom-color: var(--4ce-orange);
    }

    .section-nav-list a:focus-visible {
        outline: 3px solid var(--4ce-green);
        outline-offset: 2px;
    }

    .section-nav-heading {
        scroll-margin-top: 124px;
    }

    .section-nav-heading:focus-visible {
        outline: 3px solid var(--4ce-green);
        outline-offset: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .campaign-section-nav {
        transition: none;
    }
}

/* ===== Mobile Section Navigation (Baby Step 19) ===== */

.campaign-mobile-section-nav {
    display: none;
}

.campaign-scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 5px 3px 3px;
    border: 1.6px solid var(--4ce-green-bright);
    border-radius: 6px;
    background: var(--4ce-green);
    color: var(--4ce-white);
    font-family: Karla, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.campaign-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.campaign-scroll-top:hover {
    background: var(--4ce-green-dark);
}

.campaign-scroll-top:focus-visible {
    outline: 3px solid var(--4ce-green);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .campaign-scroll-top {
        bottom: calc(86px + env(safe-area-inset-bottom));
    }
}

@media (prefers-reduced-motion: reduce) {
    .campaign-scroll-top {
        transition: none;
    }
}

@media (max-width: 1023px) {
    .campaign-mobile-section-nav {
        display: block;
        background: var(--4ce-nav-band);
        padding: 12px 0;
    }

    .campaign-mobile-section-nav-primary {
        position: sticky;
        top: 56px;
        z-index: 985;
    }

    .campaign-mobile-section-nav-repeat {
        position: sticky;
        top: 56px;
        z-index: 985;
    }

    .mobile-section-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 10px var(--space-md);
        border: 2px solid var(--4ce-green);
        border-radius: var(--4ce-radius-sm);
        background: var(--4ce-white);
        color: var(--4ce-green-dark);
        font: inherit;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 700;
        text-align: left;
        cursor: pointer;
    }

    .mobile-section-nav-toggle:hover {
        background: var(--4ce-green-light);
    }

    .mobile-section-nav-toggle:focus-visible {
        outline: 3px solid var(--4ce-green);
        outline-offset: 3px;
    }

    .mobile-section-nav-icon {
        flex: 0 0 auto;
        margin-left: var(--space-md);
        font-size: 12px;
        line-height: 1;
        transition: transform 0.18s ease;
    }

    .mobile-section-nav-toggle[aria-expanded="true"]
    .mobile-section-nav-icon {
        transform: rotate(180deg);
    }

    .mobile-section-nav-panel {
        padding-top: var(--space-sm);
    }

    .mobile-section-nav-panel[hidden] {
        display: none;
    }
}

@media (max-width: 1023px) {
    .mobile-section-nav-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-section-nav-list li {
        min-width: 0;
        margin: 0;
        padding: 0;
    }

    .mobile-section-nav-list a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 9px 12px;
        border-radius: 4px;
        background: var(--4ce-neutral);
        color: var(--4ce-text);
        font-size: 14px;
        line-height: 1.2;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-section-nav-list a:hover {
        background: var(--4ce-green-light);
        color: var(--4ce-green-dark);
        text-decoration: none;
    }

    .mobile-section-nav-list a:focus-visible {
        outline: 3px solid var(--4ce-green);
        outline-offset: 2px;
    }
}

@media (max-width: 319px) {
    .mobile-section-nav-list {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .campaign-mobile-section-nav-primary,
    .campaign-mobile-section-nav-repeat {
        top: 68px;
    }
}

@media (max-width: 1023px) {
    #why-it-fits-heading,
    #rc-j65-specs-heading,
    #video-heading,
    #equipment-heading,
    #rc-j72-video,
    #financing-heading,
    #proof-heading,
    #faq-heading,
    #hero-heading {
        scroll-margin-top: 124px;
    }

    #rc-j72-video:focus-visible,
    #hero-heading:focus-visible {
        outline: 3px solid var(--4ce-green);
        outline-offset: 6px;
    }
}

@media (min-width: 1024px) {
    .campaign-mobile-section-nav {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-section-nav-icon {
        transition: none;
    }
}

/* ============================================
   TESTIMONIAL HIGHLIGHTS MODULE
   ============================================ */

.testimonial-highlights {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--4ce-white);
    border-radius: var(--4ce-radius-md);
    box-shadow: var(--4ce-shadow);
}

.testimonial-highlights-heading {
    text-align: center;
    font-size: 24px;
    margin-bottom: var(--space-sm);
    color: var(--4ce-black);
}

.testimonial-highlights-source {
    text-align: center;
    font-size: 15px;
    color: var(--4ce-text);
    opacity: 0.8;
    margin-bottom: var(--space-xl);
}

.testimonial-highlights-grid {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .testimonial-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-highlight {
    padding: var(--space-lg);
    background: var(--4ce-neutral);
    border-radius: var(--4ce-radius-sm);
    border-left: 4px solid var(--4ce-green);
}

.testimonial-highlight h4 {
    font-size: 18px;
    margin-bottom: var(--space-sm);
    color: var(--4ce-green-dark);
}

.testimonial-highlight blockquote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--4ce-text);
    margin: 0 0 var(--space-md) 0;
    padding: 0;
    border: none;
}

.testimonial-attribution {
    font-size: 14px;
    color: var(--4ce-text);
    opacity: 0.7;
    margin-bottom: var(--space-md);
}

.btn-timestamp {
    background: var(--4ce-orange);
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--4ce-radius-sm);
    cursor: pointer;
    transition: background 0.2s ease;
    min-height: 44px;
}

.btn-timestamp:hover {
    background: var(--4ce-orange-light);
}

.btn-timestamp:focus {
    outline: 3px solid var(--4ce-orange);
    outline-offset: 2px;
}

.testimonial-qualification {
    margin-top: var(--space-xl);
    font-size: 13px;
    color: var(--4ce-text);
    opacity: 0.7;
    text-align: center;
    font-style: italic;
}

/* ============================================
   RC-J65 RENDER SHOWCASES
   ============================================ */

.rc-j65-render-container {
    margin: var(--space-2xl) auto;
    max-width: 1000px;
    text-align: center;
    background: #a8a8a8;
    border-radius: var(--4ce-radius-md);
    overflow: hidden;
    padding: var(--space-xl) var(--space-md);
}

.rc-j65-render-container img {
    max-width: 900px;
    margin: 0 auto;
}

/* Full-width variant - same styling, just different vertical margin */
.rc-j65-render-fullwidth {
    margin: var(--space-2xl) auto;
}

.rc-j65-render-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.rc-j65-render-caption {
    margin-top: var(--space-md);
    font-size: 14px;
    color: #ccc;
    font-style: italic;
}

@media (min-width: 768px) {
    .rc-j65-render-container {
        padding: var(--space-xl);
    }
    
    .rc-j65-render-fullwidth {
        padding: var(--space-2xl) 0;
    }
    
    .rc-j65-render-caption {
        font-size: 15px;
    }
}

/* ==========================================================================
   ACCESSIBILITY & MOBILE USABILITY REMEDIATION
   Added 2026-08-20 during the Santa Fe production hardening audit.
   Each rule below fixes a measured WCAG 2.2 AA or mobile-usability failure.
   New blocks only - existing @media blocks were not modified.
   ========================================================================== */

/* Contrast: caption was #ccc on the #a8a8a8 render panel = 1.48:1.
   #2b2b2b on #a8a8a8 measures ~6.2:1, comfortably above the 4.5:1 AA
   threshold for normal-size text, and reads as intended on the grey panel. */
.rc-j65-render-caption {
    color: #2b2b2b;
}

/* Contrast: financing/estimate footnotes were #777 on #f3f5f4 = 4.08:1,
   just under AA. #5a5a5a on the same background measures ~6.2:1. */
.equipment-estimate-note,
.payment-estimates .disclaimer {
    color: #5a5a5a;
}

/* Target size: the desktop sticky section-nav links rendered 32px tall.
   WCAG 2.2 SC 2.5.8 wants at least 24px, and the project baseline asks for a
   practical 44px, so the links now fill a 44px row without changing the bar's
   visual height (padding absorbs it). */
@media (min-width: 1024px) {
    .section-nav-list a {
        min-height: 44px;
        padding-top: 11px;
        padding-bottom: 11px;
    }
}

/* Target size: the mobile "Jump to a Section" panel links. */
.mobile-section-nav-list a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Target size: the header phone and CTA buttons rendered 40px tall because
   min-height was 36px. Raised to the 44px project baseline; the header keeps
   its height because it was already taller than the buttons. */
.campaign-header-actions .btn {
    min-height: 44px;
}

/* Target size: phone and email links in the equipment-specialist cards were
   21px tall block-level links with no padding. Centring them in a 44px row
   makes the whole row tappable without changing the visual rhythm. */
.salesperson-contact-row a {
    display: flex;
    align-items: center;
    min-height: 44px;
}

/* Footer contact links are genuinely inline within a sentence, which WCAG 2.2
   SC 2.5.8 explicitly exempts, so they are deliberately left alone. */

/* Mobile form usability: the Nutshell embed renders its inputs at 13px, and
   iOS Safari force-zooms the viewport on focus for anything under 16px. This
   scoped override only touches fields inside our campaign form section, and
   only on small screens, so the vendor's desktop styling is untouched.
   Root cause sits with the vendor embed and has been reported separately. */
@media (max-width: 767px) {
    #equipment-inquiry input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="hidden"]),
    #equipment-inquiry textarea,
    #equipment-inquiry select {
        font-size: 16px !important;
    }
}

/* The RC-J72 walkthrough now uses preload="none" plus a poster frame, so the
   element needs an explicit aspect ratio to avoid a layout shift when the
   poster paints. */
.rc-j72-video-container video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
}
