/* Reset and Base Styles */
@font-face {
    font-family: "Archivo";
    font-style: normal;
    font-display: swap;
    font-weight: 600;
    src: url("../../node_modules/@fontsource/archivo/files/archivo-latin-600-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Archivo";
    font-style: normal;
    font-display: swap;
    font-weight: 700;
    src: url("../../node_modules/@fontsource/archivo/files/archivo-latin-700-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Archivo";
    font-style: normal;
    font-display: swap;
    font-weight: 800;
    src: url("../../node_modules/@fontsource/archivo/files/archivo-latin-800-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Source Sans 3";
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url("../../node_modules/@fontsource/source-sans-3/files/source-sans-3-latin-400-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Source Sans 3";
    font-style: normal;
    font-display: swap;
    font-weight: 600;
    src: url("../../node_modules/@fontsource/source-sans-3/files/source-sans-3-latin-600-normal.woff2") format("woff2");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FB46AC; /* pungent pink */
    --accent-green: #9EFF00; /* neon green */
    --secondary-color: #000000; /* main text black */
    --accent-color: var(--accent-green);
    --dark-color: #000000;
    --light-color: #ffffff;
    --text-color: #000000;
    --text-light: #222222;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    background: #0f0f0f; /* dark header like reference site */
    color: #fff;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* allow logo to overflow header */
    padding: 0.5rem 0; /* tighter, header appears shorter */
    gap: 1rem;
}

/* Solid navbar state (applies after scrolling past hero) */
.navbar {
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar.solid {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
}

.navbar.solid .nav-menu a {
    color: var(--text-color);
 
}

.logo img {
    height: 180px; /* larger logo that overflows into hero */
    width: auto;
    max-width: none; /* override global img reset so proportions are kept */
    display: block;
    margin-top: 8px;
    margin-bottom: -90px; /* pull image down so ~half of its height extends below the header */
    overflow: visible;
    z-index: 1100;
}

.logo {
    overflow: visible;
    flex-shrink: 0; /* prevent flex layout from squashing the logo */
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
       padding-top: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-color);
}

/* Dropdown Navigation */
.nav-menu li {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 2000;
    margin-top: 0.5rem;
}

.nav-menu li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-radius: 0;
}

.nav-dropdown a:hover {
    background: linear-gradient(135deg, rgba(251, 70, 172, 0.1), rgba(158, 255, 0, 0.08));
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.nav-dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.2s ease;
}

.nav-dropdown a:hover::before {
    height: 100%;
}

.nav-dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.nav-dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.8em;
    margin-left: 0.25rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0; /* ensure hero background reaches top of page under the navbar */
}

.hero-slider .slide {
    position: relative;
    width: 100%;
    background-color: #EF973F; /* orange band behind image */
    overflow: visible;
    /* reserve space for image height + 200px orange band while keeping
       the container at the very top so hero copy can sit inside the band */
    min-height: calc(56.25vw + 200px);
    padding-top: 0;
}

/* full-bleed responsive hero image that keeps aspect ratio */
.hero-image {
    position: absolute;
    top: 200px; /* push image down so orange band is visible above */
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 100vw;
    height: auto;
    margin-left: 0;
    pointer-events: none;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251,70,172,0.08), rgba(158,255,0,0.06));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-color);
    max-width: 500px;
    padding: 1.5rem 0; /* reduced so content moves up into the orange band */
    text-align: left; /* align hero copy to the left edge to match logo */
padding-top: 200px;
    min-width: 1200px;
}

/* Ensure the container inside the slide aligns its children to the left
   so the hero content lines up with the navbar logo (both use the same container offset). */
.hero-slider .slide > .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; /* move content to top so it sits in the orange band */
    padding-top: 3rem; /* vertical offset inside the orange band */
    /* removed negative margin/min-width which caused content overlap and image clipping */
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.05;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.agency-hero .btn-primary {
    /* darker, high-contrast CTA for legibility on orange background */
    background: linear-gradient(90deg, #111217, #2a2d2f);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero-micro {
    margin-top: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #2f3436;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-image {
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.content-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.content-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.mission, .vision {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.mission h3, .vision h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.values {
    margin-top: 4rem;
}

.values h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Stats Section */
.stats {
    background: var(--secondary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Tours Section */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tour-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.tour-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tour-meta span {
    background: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.tour-features {
    margin: 1.5rem 0;
    flex: 1;
}

.tour-features ul {
    list-style: none;
}

.tour-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.tour-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--light-color);
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.per {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Booking Info */
.booking-info {
    background: var(--light-color);
}

.booking-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-item ul {
    list-style: none;
}

.info-item li {
    padding: 0.4rem 0;
    color: var(--text-light);
    padding-left: 1.2rem;
    position: relative;
}

.info-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-grid,
.contact-form-wrapper,
.contact-info-wrapper,
.contact-form,
.form-row,
.form-group {
    min-width: 0;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-color);
}

.social-connect h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    padding: 0.75rem 1.5rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
}

/* FAQ Section */
.faq-section {
    background: var(--light-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    padding: 0.4rem 0;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.consent-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 5000;
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 20px;
    border: 2px solid #111111;
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
    box-shadow: 6px 6px 0 #111111;
}

.consent-banner h2,
.consent-dialog h2 {
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 1.2;
}

.consent-banner p,
.consent-dialog p {
    max-width: 650px;
    color: #5c5c57;
    font-size: 15px;
    line-height: 1.5;
}

.consent-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.consent-actions .btn,
.consent-save {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.consent-accept,
.consent-save {
    border: 2px solid #111111;
    background: #111111;
    color: #ffffff;
}

.consent-modal {
    position: fixed;
    inset: 0;
    z-index: 5100;
    padding: 20px;
    background: rgba(17, 17, 17, 0.72);
}

.consent-dialog {
    position: relative;
    width: min(100%, 600px);
    max-height: calc(100vh - 40px);
    margin: 8vh auto 0;
    overflow-y: auto;
    padding: 28px;
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
}

.consent-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #111111;
    cursor: pointer;
    font-size: 28px;
}

.consent-setting-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    margin-top: 20px;
    padding: 18px 0;
    border-top: 1px solid #d9d8d2;
}

.consent-setting-row input {
    width: 24px;
    height: 24px;
    accent-color: #fb46ac;
}

.consent-save {
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 700;
}

.footer-cookie-settings {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
}

[hidden] {
    display: none !important;
}

/* Request-first homepage */
.request-first-home {
    --ink: #111111;
    --paper: #f7f6f1;
    --surface: #ffffff;
    --muted-text: #5c5c57;
    --border: #d9d8d2;
    --focus: #005fcc;
    --error: #b42318;
    background: var(--paper);
    color: var(--ink);
    font-family: "Source Sans 3", "Avenir Next", sans-serif;
}

.request-first-home h1,
.request-first-home h2,
.request-first-home h3,
.request-first-home label,
.request-first-home button,
.request-first-home .btn {
    font-family: "Archivo", "Avenir Next", sans-serif;
    letter-spacing: 0;
}

.request-first-home .container {
    padding-inline: 32px;
}

.request-first-home :focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
}

.request-first-home .conversion-navbar {
    position: sticky;
    min-height: 72px;
    background: var(--ink);
}

.request-first-home .conversion-navbar .nav-wrapper {
    min-height: 72px;
    align-items: center;
    padding: 0;
}

.request-first-home .conversion-navbar .logo img {
    width: auto;
    height: 64px;
    margin: 0;
}

.request-first-home .conversion-nav-menu {
    margin-left: auto;
    padding: 0;
    gap: 8px;
}

.request-first-home .conversion-nav-menu a {
    border-radius: 4px;
    padding: 10px 12px;
}

.request-first-home .nav-start-button {
    min-height: 44px;
    margin-left: 16px;
    padding: 12px 18px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--ink);
    font-weight: 700;
}

.request-hero {
    min-height: 620px;
    padding: 64px 0 72px;
    background-color: var(--paper);
    border-bottom: 1px solid var(--border);
}

.request-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
    align-items: center;
    gap: 64px;
}

.request-intro {
    max-width: 680px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--muted-text);
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.request-intro h1 {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
}

.brand-promise {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
}

.request-lede {
    max-width: 680px;
    color: var(--muted-text);
    font-size: 20px;
    line-height: 1.5;
}

.request-form {
    width: 100%;
    max-width: 820px;
    padding: 28px;
    border: 1px solid var(--border);
    border-top: 8px solid var(--primary-color);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 8px 8px 0 var(--ink);
}

.request-form label {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.request-form-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.guided-intake-toggle {
    padding: 0;
    border: 0;
    border-bottom: 2px solid currentColor;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.guided-intake {
    margin-bottom: 16px;
    padding: 16px;
    border-left: 4px solid var(--accent-green);
    background: var(--paper);
}

.guided-intake > p {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
}

.guided-intake-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.guided-intake-options button {
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

.guided-intake-options button:hover {
    background: var(--accent-green);
}

.request-form textarea {
    display: block;
    width: 100%;
    height: 144px;
    resize: vertical;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font: 400 18px/1.5 "Source Sans 3", "Avenir Next", sans-serif;
}

.request-form textarea:focus {
    border-color: var(--focus);
}

.request-form textarea[aria-invalid="true"] {
    border-color: var(--error);
}

.request-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    color: var(--muted-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.request-meta output {
    flex: 0 0 auto;
}

.prompt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.prompt-chip {
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.prompt-chip:hover {
    background: var(--accent-green);
}

.request-submit-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--ink);
    color: var(--surface);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.request-submit-button:hover {
    background: var(--primary-color);
    color: var(--ink);
}

.request-reassurance {
    margin-top: 12px;
    color: var(--muted-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.form-error-summary {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-left: 4px solid var(--error);
    background: #fff1ef;
    color: var(--error);
    font-weight: 600;
}

.route-preview-section {
    padding: 72px 0 96px;
    background: var(--surface);
}

.route-preview-shell {
    min-height: 320px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--surface);
}

.route-preview-loading {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 18px;
    font-weight: 600;
}

.route-preview-spinner {
    width: 44px;
    height: 44px;
    border: 4px solid var(--border);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: route-preview-spin 0.8s linear infinite;
}

@keyframes route-preview-spin {
    to { transform: rotate(360deg); }
}

.route-preview-result h2,
.route-preview-error h2 {
    max-width: 720px;
    margin-bottom: 28px;
    font-size: 40px;
    line-height: 1.15;
}

.route-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--border);
}

.route-result-grid article {
    min-height: 170px;
    padding: 24px;
    background: var(--surface);
}

.route-result-grid h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.2;
}

.route-result-grid p,
.route-result-grid li,
.route-preview-error p {
    color: var(--muted-text);
    font-size: 17px;
    line-height: 1.6;
}

.route-result-grid ul {
    padding-left: 20px;
    list-style: disc;
}

.route-result-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.route-preview-error {
    max-width: 720px;
    margin: 50px auto;
}

.route-email-capture {
    max-width: 620px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.route-email-capture label {
    display: block;
    margin-bottom: 8px;
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.route-email-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.route-email-row input {
    min-height: 52px;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--ink);
    font: 400 17px/1.4 "Source Sans 3", "Avenir Next", sans-serif;
}

.route-email-status {
    min-height: 24px;
    margin-top: 8px;
    color: var(--muted-text);
    font-size: 15px;
}

.request-examples-section,
.ride-demonstration-section,
.conversion-process-section,
.rider-standard-section,
.offer-ladder-section,
.operating-terms-section,
.accountability-section,
.final-request-section {
    padding: 96px 0;
}

.conversion-section-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

.conversion-section-heading h2,
.accountability-section h2,
.final-request-section h2 {
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 1.15;
}

.conversion-section-heading > p:not(.eyebrow),
.offer-card > p:not(.offer-price),
.accountability-details,
.final-request-form label {
    color: var(--muted-text);
    font-size: 18px;
    line-height: 1.6;
}

.request-examples-section {
    background: var(--surface);
}

.ride-demonstration-section {
    background: var(--ink);
    color: var(--surface);
}

.ride-demonstration-heading > p:not(.eyebrow) {
    color: #c9c9c4;
}

.ride-demonstration-heading .eyebrow {
    color: var(--accent-green);
}

.ride-demonstration-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.5fr);
    overflow: hidden;
    border: 1px solid #454545;
    border-radius: 8px;
}

.ride-demonstration-shell blockquote {
    display: flex;
    min-height: 100%;
    align-items: flex-end;
    padding: 36px;
    background: var(--primary-color);
    color: var(--ink);
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.ride-demonstration-steps {
    list-style: none;
}

.ride-demonstration-steps li {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    padding: 28px 32px;
    border-bottom: 1px solid #454545;
}

.ride-demonstration-steps li:last-child {
    border-bottom: 0;
}

.ride-demonstration-steps li > span {
    color: var(--accent-green);
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.ride-stage {
    margin-bottom: 4px;
    color: #aaa9a4;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.ride-demonstration-steps h3 {
    margin-bottom: 6px;
    font-size: 21px;
}

.ride-demonstration-steps div > p:last-child {
    color: #c9c9c4;
    font-size: 16px;
    line-height: 1.55;
}

.request-example-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.request-example-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: -12px 0 28px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.request-example-controls > p {
    flex: 0 0 auto;
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.request-example-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.request-example-filters button {
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.request-example-filters button:hover,
.request-example-filters button.active {
    background: var(--ink);
    color: var(--surface);
}

.request-example-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    text-align: left;
}

.request-example-card[hidden] {
    display: none;
}

.request-example-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
    color: var(--muted-text);
    font: 700 12px/1.2 "Archivo", "Avenir Next", sans-serif;
    text-transform: uppercase;
}

.request-example-meta > span:first-child {
    padding: 5px 7px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--paper);
}

.ai-comfort {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    text-transform: none;
}

.ai-comfort i {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    width: 19px;
    height: 14px;
}

.ai-comfort b {
    display: block;
    width: 5px;
    border: 1px solid var(--ink);
    background: transparent;
}

.ai-comfort b:nth-child(1) { height: 6px; }
.ai-comfort b:nth-child(2) { height: 10px; }
.ai-comfort b:nth-child(3) { height: 14px; }

.request-example-card[data-ai-comfort="curious"] .ai-comfort b:nth-child(1),
.request-example-card[data-ai-comfort="tried"] .ai-comfort b:nth-child(-n + 2),
.request-example-card[data-ai-comfort="often"] .ai-comfort b {
    background: var(--primary-color);
}

.request-example-copy {
    flex: 1;
    font: 400 18px/1.5 "Source Sans 3", "Avenir Next", sans-serif;
}

.request-example-card strong {
    display: block;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid var(--ink);
    font-size: 16px;
}

.request-example-card:hover,
.request-example-card:focus-visible {
    background: #ef973f;
}

.request-example-card:hover .request-example-meta > span:first-child,
.request-example-card:focus-visible .request-example-meta > span:first-child {
    border-color: var(--ink);
    background: var(--surface);
}

.conversion-process-section {
    background: #ef973f;
}

.conversion-process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    list-style: none;
}

.conversion-process-list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
}

.conversion-process-list li > span {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--surface);
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.conversion-process-list h3 {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.2;
}

.conversion-process-list p {
    font-size: 17px;
    line-height: 1.6;
}

.rider-standard-section {
    background: var(--surface);
}

.rider-standard-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
    align-items: start;
    gap: 80px;
}

.rider-standard-intro h2 {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1.15;
}

.rider-standard-intro > p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted-text);
    font-size: 18px;
    line-height: 1.6;
}

.rider-standard-intro .pilot-note {
    margin-top: 24px;
    padding: 16px 18px;
    border-left: 4px solid var(--primary-color);
    background: var(--paper);
    color: var(--ink);
}

.rider-standard-list {
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 8px;
    list-style: none;
}

.rider-standard-list li {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--border);
}

.rider-standard-list li:last-child {
    border-bottom: 0;
}

.rider-standard-list strong {
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 17px;
}

.rider-standard-list span {
    color: var(--muted-text);
    font-size: 17px;
}

.offer-ladder-section {
    background: var(--paper);
}

.offer-ladder-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.offer-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}

.offer-card-highlighted {
    border: 3px solid var(--ink);
    box-shadow: 6px 6px 0 var(--primary-color);
}

.offer-price {
    margin-bottom: 32px;
    color: var(--ink);
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.offer-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.offer-card > p:not(.offer-price) {
    margin-bottom: 28px;
}

.offer-card .btn {
    width: 100%;
    min-height: 52px;
    margin-top: auto;
}

.calculator-link {
    margin-top: 28px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.operating-terms-section {
    background: var(--ink);
    color: var(--surface);
}

.operating-terms-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 80px;
}

.operating-terms-section .eyebrow {
    color: var(--accent-green);
}

.operating-terms-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid #454545;
    border-radius: 8px;
    background: #454545;
}

.operating-terms-list li {
    position: relative;
    padding: 24px 24px 24px 52px;
    background: var(--ink);
    font-size: 17px;
    line-height: 1.5;
}

.operating-terms-list li::before {
    content: "✓";
    position: absolute;
    top: 24px;
    left: 24px;
    color: var(--accent-green);
    font-weight: 800;
}

.accountability-section {
    background: var(--accent-green);
}

.accountability-layout,
.final-request-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: start;
    gap: 80px;
}

.accountability-details {
    color: var(--ink);
}

.accountability-details p + p {
    margin-top: 8px;
}

.accountability-details a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.final-request-section {
    background: var(--surface);
}

.final-request-form {
    display: grid;
    gap: 12px;
}

.final-request-form label {
    color: var(--ink);
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-weight: 700;
}

.final-request-form textarea {
    width: 100%;
    min-height: 132px;
    resize: vertical;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--ink);
    font: 400 18px/1.5 "Source Sans 3", "Avenir Next", sans-serif;
}

.checkout-text-button {
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font: 700 16px/1.3 "Archivo", "Avenir Next", sans-serif;
}

.home-checkout-modal {
    position: fixed;
    z-index: 1400;
    inset: 0;
    display: grid;
    overflow-y: auto;
    place-items: start center;
    padding: 40px 20px;
    background: rgb(17 17 17 / 78%);
}

.home-checkout-dialog {
    position: relative;
    width: min(100%, 760px);
    min-height: 580px;
    padding: 34px;
    border: 2px solid var(--ink);
    border-top: 10px solid var(--primary-color);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: 12px 12px 0 var(--accent-green);
}

.home-checkout-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.home-checkout-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 6px 58px 36px 0;
    border-bottom: 2px solid var(--border);
}

.home-checkout-progress span {
    position: relative;
    padding: 0 8px 12px;
    color: var(--muted-text);
    font: 700 13px/1.2 "Archivo", "Avenir Next", sans-serif;
    text-align: center;
}

.home-checkout-progress span.active {
    color: var(--ink);
}

.home-checkout-progress span.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 5px;
    background: var(--primary-color);
}

.home-checkout-step h2 {
    max-width: 620px;
    margin-bottom: 12px;
    padding-right: 42px;
    font-size: 36px;
    line-height: 1.15;
}

.home-checkout-step > p:not(.eyebrow) {
    max-width: 660px;
    margin-bottom: 26px;
    color: var(--muted-text);
    font-size: 17px;
    line-height: 1.55;
}

.home-checkout-offer-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    padding: 18px 20px;
    border: 2px solid var(--ink);
    background: var(--accent-green);
}

.home-checkout-offer-summary strong {
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 19px;
}

.home-checkout-offer-summary span {
    flex: 0 0 auto;
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.home-checkout-step label:not(.home-checkout-terms) {
    display: block;
    margin-bottom: 8px;
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.home-checkout-step label span {
    color: var(--muted-text);
    font-family: "Source Sans 3", "Avenir Next", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.home-checkout-step textarea,
.home-checkout-step input:not([type="checkbox"]) {
    display: block;
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink);
    font: 400 17px/1.5 "Source Sans 3", "Avenir Next", sans-serif;
}

.home-checkout-step textarea {
    min-height: 150px;
    resize: vertical;
}

.home-checkout-step textarea:focus,
.home-checkout-step input:not([type="checkbox"]):focus {
    border-color: var(--focus);
}

.home-checkout-step [aria-invalid="true"] {
    border-color: var(--error);
}

.home-checkout-field-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
    color: var(--muted-text);
    font-size: 13px;
    font-weight: 600;
}

.home-checkout-fields {
    display: grid;
    gap: 18px;
}

.home-checkout-review {
    display: grid;
    gap: 1px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    background: var(--border);
}

.home-checkout-review > div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 18px;
    padding: 14px 16px;
    background: var(--surface);
}

.home-checkout-review dt {
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-weight: 700;
}

.home-checkout-review dd {
    overflow-wrap: anywhere;
    color: var(--muted-text);
    line-height: 1.5;
}

.home-checkout-terms {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.home-checkout-terms input {
    width: 22px;
    height: 22px;
    margin-top: 1px;
    accent-color: var(--primary-color);
}

.home-checkout-error {
    margin-top: 22px;
    padding: 16px 18px;
    border: 2px solid var(--error);
    background: #fff1ef;
    color: var(--error);
}

.home-checkout-error p {
    margin-top: 4px;
    line-height: 1.5;
}

.home-checkout-error a {
    color: inherit;
    font-weight: 800;
    text-decoration: underline;
}

.home-checkout-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.home-checkout-actions .btn {
    min-width: 170px;
}

.home-checkout-confirmation {
    padding: 54px 0 20px;
    text-align: center;
}

.home-checkout-confirmation h2,
.home-checkout-confirmation > p {
    margin-right: auto;
    margin-left: auto;
}

.home-checkout-reference {
    display: inline-block;
    padding: 10px 14px;
    border: 2px solid var(--ink);
    background: var(--accent-green);
    color: var(--ink) !important;
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-weight: 800;
}

.campaign-nav-link {
    margin-left: auto;
    padding: 10px 0;
    color: #ffffff;
    font-family: "Archivo", "Avenir Next", sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.campaign-request-hero {
    min-height: 620px;
}

.campaign-footer {
    background: var(--ink);
    color: var(--surface);
}

.campaign-footer .footer-bottom {
    padding: 24px 0;
    border: 0;
}

.campaign-footer .footer-bottom a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-verified-hero {
    padding: 112px 0;
    background-color: var(--paper);
    border-bottom: 1px solid var(--border);
}

.about-verified-hero h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: 64px;
    line-height: 1.05;
}

.about-verified-hero > .container > p:last-child {
    max-width: 720px;
    color: var(--muted-text);
    font-size: 20px;
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    .route-preview-spinner {
        animation: none;
    }
}

/* Responsive Design */
/* Inner page hero — push content below the overflowing logo */
.page-hero,
.page-header {
    padding-top: 15rem !important;
}

/* Entry door pages use class="hero" with inline padding — override it */
.hero[style] {
    padding-top: 15rem !important;
}

@media (max-width: 768px) {
    .consent-banner {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .consent-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .consent-accept {
        grid-column: 1 / -1;
    }

    .request-first-home .container {
        padding-inline: 20px;
    }

    .request-first-home .conversion-navbar,
    .request-first-home .conversion-navbar .nav-wrapper {
        min-height: 64px;
    }

    .request-first-home .conversion-navbar .logo img {
        height: 56px;
        margin: 0;
    }

    .request-first-home .conversion-nav-menu {
        display: none;
    }

    .request-first-home .nav-start-button {
        width: auto;
        min-height: 42px;
        margin-left: auto;
        padding: 10px 14px;
    }

    .request-hero {
        min-height: auto;
        padding: 24px 0;
    }

    .about-verified-hero {
        padding: 64px 0;
    }

    .about-verified-hero h1 {
        font-size: 40px;
    }

    .request-hero-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .request-intro h1 {
        margin-bottom: 12px;
        font-size: 40px;
    }

    .brand-promise {
        margin-bottom: 12px;
        font-size: 22px;
    }

    .request-lede {
        font-size: 16px;
        line-height: 1.45;
    }

    .request-form {
        padding: 14px;
        box-shadow: 5px 5px 0 var(--ink);
    }

    .request-form label {
        font-size: 16px;
    }

    .request-form-heading {
        margin-bottom: 8px;
    }

    .guided-intake-options {
        grid-template-columns: minmax(0, 1fr);
    }

    .request-form textarea {
        height: 132px;
        font-size: 17px;
    }

    .request-meta {
        align-items: flex-start;
    }

    .prompt-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 12px 0;
        padding: 2px 2px 6px;
        scrollbar-width: thin;
    }

    .prompt-chip {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .request-submit-button {
        width: 100%;
    }

    .request-reassurance {
        margin-top: 8px;
    }

    .home-checkout-modal {
        place-items: start stretch;
        padding: 12px;
    }

    .home-checkout-dialog {
        min-height: calc(100dvh - 24px);
        padding: 24px 18px;
        box-shadow: 6px 6px 0 var(--accent-green);
    }

    .home-checkout-close {
        top: 12px;
        right: 12px;
    }

    .home-checkout-progress {
        margin: 52px 0 26px;
    }

    .home-checkout-progress span {
        padding-inline: 3px;
        font-size: 11px;
    }

    .home-checkout-step h2 {
        padding-right: 0;
        font-size: 30px;
    }

    .home-checkout-offer-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .home-checkout-review > div {
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
    }

    .home-checkout-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .home-checkout-actions .btn {
        width: 100%;
    }

    .route-preview-section {
        padding: 48px 0 64px;
    }

    .route-preview-shell {
        min-height: 280px;
        padding: 24px 20px;
    }

    .route-preview-result h2,
    .route-preview-error h2 {
        font-size: 30px;
    }

    .route-result-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .route-result-grid article {
        min-height: auto;
    }

    .route-result-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .route-email-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .request-examples-section,
    .ride-demonstration-section,
    .conversion-process-section,
    .rider-standard-section,
    .offer-ladder-section,
    .operating-terms-section,
    .accountability-section,
    .final-request-section {
        padding: 64px 0;
    }

    .request-examples-section {
        padding-top: 32px;
    }

    .conversion-section-heading h2,
    .rider-standard-intro h2,
    .accountability-section h2,
    .final-request-section h2 {
        font-size: 30px;
    }

    .ride-demonstration-shell,
    .rider-standard-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .ride-demonstration-shell blockquote {
        min-height: 210px;
        padding: 28px 24px;
        font-size: 23px;
    }

    .ride-demonstration-steps li {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 10px;
        padding: 22px 20px;
    }

    .rider-standard-layout {
        gap: 32px;
    }

    .rider-standard-list li {
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
    }

    .request-example-list,
    .offer-ladder-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 2px 2px 14px;
        scroll-snap-type: x mandatory;
    }

    .request-example-card,
    .offer-card {
        min-width: min(82vw, 310px);
        scroll-snap-align: start;
    }

    .request-example-controls {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin-top: -4px;
    }

    .request-example-filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .request-example-filters button {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .conversion-process-list,
    .operating-terms-layout,
    .accountability-layout,
    .final-request-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .conversion-process-list {
        gap: 28px;
    }

    .operating-terms-list {
        grid-template-columns: minmax(0, 1fr);
    }

    /* ── Hero: stack text above image on mobile ─────────────────────────── */
    .hero-slider .slide {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    /* Text container comes first (order:1), image below (order:2) */
    .hero-slider .slide > .container {
        order: 1;
        padding-top: 7rem; /* clear navbar (70px) + logo overhang (45px) */
        padding-bottom: 1.5rem;
        z-index: 3;
        position: relative;
    }

    .hero-content {
        min-width: 0;        /* kill the 1200px desktop override */
        max-width: 100%;
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
    }

    /* Image flows below the text, full-width, not absolutely positioned */
    .hero-image {
        order: 2;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: auto;
        margin: 0;
    }

    .hero-buttons {
        justify-content: center;
    }
    /* ── end hero ────────────────────────────────────────────────────────── */

    .page-hero,
    .page-header,
    .hero[style] {
        padding-top: 8rem !important;
    }

    .logo img {
        height: 90px;
        width: auto;
        max-width: none;
        margin-bottom: -45px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu a,
    .nav-menu a:link,
    .nav-menu a:visited {
        color: #000 !important;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .mission-vision {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .request-meta {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-grid,
    .tours-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
