/* ========================================
   SKUP ROWERÓW ELEKTRYCZNYCH
   Design based on bigwantsyourcar.com
   ======================================== */

/* CSS Variables - Color Palette */
:root {
    --primary-cyan: #4CC9F0;
    --primary-navy: #1B2A4E;
    --primary-navy-dark: #151f38;
    --accent-coral: #FF6B6B;
    --text-dark: #1B2A4E;
    --text-gray: #6B7280;
    --text-light: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-gray: #F8F9FA;
    --border-light: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-light);
    box-shadow: var(--shadow);
    z-index: 1000;
    height: 72px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: baseline;
}

.logo-skup,
.logo-pl {
    color: var(--primary-cyan);
}

.logo-rest {
    color: var(--primary-navy);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--primary-cyan);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-navy);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: background 0.2s ease;
}

.header-cta:hover {
    background: var(--primary-navy-dark);
}

.header-cta svg {
    flex-shrink: 0;
}

.header-phone-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--primary-cyan);
    transition: color 0.2s ease;
}

.header-phone-mobile:hover {
    color: var(--primary-navy);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.2s ease;
}

/* Scrolled Header Bar (mobile only) */
.header-scrolled-bar {
    display: none;
    padding: 8px 16px 12px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth header transitions */
.header-container {
    transition: height 0.2s ease;
}

.header-quick-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-quick-input {
    flex: 1;
    padding: 10px 14px;
    font-size: 0.875rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    background: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.2s ease;
}

.header-quick-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

.header-quick-input::placeholder {
    color: var(--text-gray);
}

.header-quick-btn {
    padding: 10px 20px;
    background: var(--primary-cyan);
    color: var(--primary-navy);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background 0.2s ease;
}

.header-quick-btn:hover {
    background: #3db8df;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    background: var(--primary-cyan);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero variant for brand pages */
.hero-brand {
    min-height: 60vh;
    background: linear-gradient(135deg, #1B2A4E 0%, #151f38 100%);
    margin-bottom: 0;
}

.hero-brand .hero-content {
    max-width: 800px;
}

.hero-brand .hero-title-dark,
.hero-brand .hero-title-light {
    color: var(--text-light);
}

.hero-content {
    flex: 1;
    padding: 60px 24px 60px 80px;
    max-width: 620px;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 16px;
    max-width: 540px;
}

.hero-title-dark {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.15;
    margin-bottom: 4px;
}

.hero-title-light {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-navy);
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 540px;
}

.hero-input {
    width: 100%;
    padding: 18px 24px;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius);
    background: var(--bg-light);
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

.hero-input::placeholder {
    color: var(--text-gray);
}

.hero-input:focus {
    outline: 3px solid var(--primary-navy);
    outline-offset: 2px;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 32px;
    background: var(--primary-navy);
    color: var(--text-light);
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(27, 42, 78, 0.3);
}

.hero-btn:hover {
    background: var(--primary-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 42, 78, 0.4);
}

.hero-trust {
    font-size: 0.875rem;
    color: var(--primary-navy);
    text-align: center;
    opacity: 0.85;
    font-weight: 500;
    margin-top: 4px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px 40px 20px;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    transform: translateX(-10px);
}

/* ========================================
   PROCESS SECTION (3 Steps)
   ======================================== */
.process {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 0 24px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-cyan);
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0;
}

.step-icon {
    display: none;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   BRANDS SECTION (Grid Marek)
   ======================================== */
.brands-section {
    padding: 100px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.brand-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    min-height: 60px;
}

.brand-tile:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* ========================================
   FAQ HOMEPAGE SECTION
   ======================================== */
.faq-homepage {
    padding: 100px 0;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.faq-content-homepage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-content-homepage .faq-item {
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-content-homepage .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-content-homepage .faq-item h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-content-homepage .faq-item p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   BRAND CONTENT SECTION (Podstrony marek)
   ======================================== */
.brand-content {
    padding: 80px 0;
    background: var(--bg-light);
    margin-bottom: 60px;
}

.brand-content .container {
    max-width: 900px;
}

.brand-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
    text-align: justify;
}

.brand-text a {
    color: var(--primary-navy);
    font-weight: 500;
    text-decoration: underline;
}

.brand-text a:hover {
    color: var(--primary-cyan);
}

.brand-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 40px;
    background: var(--primary-navy);
    color: var(--text-light);
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(27, 42, 78, 0.3);
    text-decoration: none;
}

.brand-cta:hover {
    background: var(--primary-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 42, 78, 0.4);
    color: var(--text-light);
}

/* ========================================
   FACTORS SECTION (Od czego zależy wycena)
   ======================================== */
.factors {
    padding: 100px 0;
    background: var(--primary-navy);
}

.section-title-light {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.factor {
    text-align: center;
    padding: 24px;
}

.factor-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
}

.factor-text {
    text-align: center;
}

.factor h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.factor p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.factor strong {
    color: var(--text-light);
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.contact-details {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-gray);
}

.contact-details .company-name {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-details .contact-note {
    color: var(--accent-coral);
    font-weight: 500;
    margin-top: 8px;
}

.contact-details a {
    color: var(--primary-navy);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--primary-cyan);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    display: block;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-navy);
}

.footer-top {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer-contact:hover {
    opacity: 0.8;
}

.footer-bottom {
    padding: 32px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom strong {
    color: var(--text-light);
}

/* ========================================
   VALUATION PAGE (wycena.html)
   ======================================== */
.valuation-page {
    min-height: 100vh;
    padding: 100px 24px 60px;
    background: var(--bg-gray);
}

.valuation-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

/* Form Header */
.form-header {
    margin-bottom: 32px;
}

.form-main-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.bike-info-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-gray);
    border-radius: var(--radius);
    flex-wrap: wrap;
    position: relative;
}

.bike-name-wrapper {
    flex: 1;
    min-width: 150px;
}

.bike-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: inline-block;
}

.bike-name-edit {
    width: 100%;
    padding: 8px 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    border: 2px solid var(--primary-cyan);
    border-radius: var(--radius);
    background: var(--bg-light);
}

.bike-name-edit:focus {
    outline: none;
    border-color: var(--primary-navy);
}

.edit-bike-btn,
.save-bike-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray);
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.edit-bike-btn:hover,
.save-bike-btn:hover {
    color: var(--primary-navy);
    border-color: var(--primary-cyan);
    background: var(--bg-light);
}

.save-bike-btn {
    color: var(--primary-navy);
    border-color: var(--primary-cyan);
    background: var(--primary-cyan);
    color: var(--text-light);
}

.save-bike-btn:hover {
    background: #3db8df;
}

/* Back Link (Ghost Button) */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--primary-cyan);
}

.back-link svg {
    flex-shrink: 0;
}

/* Progress Bar */
.progress-bar {
    height: 6px;
    background: var(--border-light);
    border-radius: var(--radius-full);
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), #3db8df);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.progress-text {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* Bike Badge */
.bike-badge {
    padding: 6px 12px;
    background: #FEF3C7;
    color: #92400E;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius);
}

/* Form Styles */
.valuation-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Form Sections */
.form-section {
    padding: 24px;
    background: var(--bg-gray);
    border-radius: var(--radius);
}

.section-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.form-group label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: var(--accent-coral);
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    background: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.2s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* File Input */
.file-input {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border: 2px dashed var(--border-light);
    border-radius: var(--radius);
    color: var(--text-gray);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.file-label:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.file-hint {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

/* Contact Method Toggle */
.contact-toggle {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 8px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 2px solid var(--border-light);
}

.toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.toggle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-label {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-gray);
    background: transparent;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.toggle-option input[type="radio"]:checked + .toggle-label {
    background: var(--primary-navy);
    color: var(--text-light);
    box-shadow: var(--shadow);
}

/* Checkbox */
.form-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-navy);
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.marketing-consent {
    margin-top: 8px;
}

.marketing-consent label {
    font-size: 0.8125rem;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--bg-gray);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.social-proof svg {
    flex-shrink: 0;
    color: var(--primary-cyan);
}

.social-proof span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    padding: 16px 32px;
    background: var(--primary-navy);
    color: var(--text-light);
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(27, 42, 78, 0.25);
}

.submit-btn:hover {
    background: var(--primary-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 42, 78, 0.35);
}

/* Alternative CTA - Phone */
.alternative-cta {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-gray);
    border-radius: var(--radius);
}

.alternative-cta p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-navy);
    background: transparent;
    border: 2px solid var(--primary-navy);
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.phone-cta:hover {
    background: var(--primary-navy);
    color: var(--text-light);
}

.phone-cta svg {
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.2s ease;
}

.faq-toggle:hover {
    background: var(--border-light);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-toggle.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    margin-top: 16px;
}

.faq-item {
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Unsubscribe Notice */
.unsubscribe-notice {
    font-size: 0.8125rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.5;
    margin-top: -8px;
}

/* ========================================
   SUCCESS MODAL
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 480px;
    text-align: center;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
}

.modal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.modal-content p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.modal-email {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--primary-navy);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-top: 24px;
    transition: background 0.2s ease;
}

.modal-btn:hover {
    background: var(--primary-navy-dark);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 72px;
    }

    .hero-content {
        padding: 40px 24px;
        max-width: 100%;
    }

    .hero-form {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-image {
        padding: 20px 40px 60px;
    }

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

    .hero-title-light {
        font-size: 1.5rem;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* ===== HEADER MOBILE ===== */
    .header {
        height: auto;
    }

    .header-container {
        height: 56px;
        padding: 0 16px;
        gap: 12px;
    }

    .logo {
        margin-right: auto;
    }

    .nav {
        display: none;
    }

    .header-cta-desktop {
        display: none;
    }

    .header-phone-mobile {
        display: flex;
        order: 2;
    }

    .mobile-menu-btn {
        display: flex;
        order: 3;
    }

    /* Header scrolled state */
    .header.scrolled .header-container {
        height: 48px;
    }

    .header.scrolled .header-scrolled-bar {
        display: block;
    }

    /* ===== HERO MOBILE - Full Height ===== */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 56px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Hero brand pages - compact on mobile */
    .hero-brand {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-brand .hero-content {
        padding: 20px;
    }

    .hero-brand .hero-title-dark {
        font-size: 1.75rem;
    }

    .hero-brand .hero-title-light {
        font-size: 1.125rem;
    }

    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px 20px;
    }

    .hero-title-dark {
        font-size: 1.875rem;
        margin-bottom: 4px;
    }

    .hero-title-light {
        font-size: 1.25rem;
        opacity: 0.85;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }

    /* Hide bike image on mobile */
    .hero-image {
        display: none;
    }

    /* ===== STEPS SECTION MOBILE - Compact Cards ===== */
    .process {
        padding: 60px 0;
    }

    .section-title,
    .section-title-light {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 32px;
    }

    .steps {
        gap: 16px;
    }

    .step {
        background: var(--bg-light);
        border-radius: var(--radius-lg);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        padding: 20px;
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 8px 16px;
        position: relative;
    }

    .step-number {
        position: static;
        transform: none;
        width: 32px;
        height: 32px;
        font-size: 0.8125rem;
        grid-row: 1;
        grid-column: 1;
        align-self: center;
    }

    .step-icon {
        display: none;
    }

    .step h3 {
        font-size: 1.0625rem;
        margin-bottom: 0;
        grid-row: 1;
        grid-column: 2;
        align-self: center;
    }

    .step p {
        font-size: 0.875rem;
        line-height: 1.5;
        grid-row: 2;
        grid-column: 1 / -1;
        margin: 0;
    }

    /* ===== FAQ HOMEPAGE MOBILE ===== */
    .faq-homepage {
        padding: 60px 0;
    }

    .faq-content-homepage {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-content-homepage .faq-item {
        padding: 20px;
    }

    .faq-content-homepage .faq-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .faq-content-homepage .faq-item p {
        font-size: 0.875rem;
    }

    /* ===== BRANDS SECTION MOBILE - Chips/Tags ===== */
    .brands-section {
        padding: 60px 0;
    }

    .brands-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 24px;
    }

    .brand-tile {
        flex: 0 0 auto;
        padding: 10px 16px;
        min-height: auto;
        font-size: 0.875rem;
        background: var(--bg-gray);
        border-radius: var(--radius-full);
    }

    /* ===== FACTORS SECTION MOBILE - Compact ===== */
    .factors {
        padding: 50px 0;
    }

    .section-title-light {
        margin-bottom: 32px;
    }

    .factors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .factor {
        padding: 16px;
        text-align: left;
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    .factor-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin: 0;
    }

    .factor-icon svg {
        width: 22px;
        height: 22px;
    }

    .factor-text {
        flex: 1;
        text-align: left;
    }

    .factor h3 {
        font-size: 0.9375rem;
        margin-bottom: 4px;
    }

    .factor p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    /* ===== FOOTER MOBILE - Reorganized ===== */
    .footer-top {
        padding: 28px 0 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-contact {
        font-size: 1.125rem;
        font-weight: 600;
    }

    .footer-contact svg {
        width: 24px;
        height: 24px;
    }

    .footer-bottom {
        padding: 28px 20px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.6;
    }

    .footer-bottom strong {
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-privacy-link {
        color: rgba(255, 255, 255, 0.4);
    }

    /* ===== CONTACT SECTION MOBILE ===== */
    .contact {
        padding: 60px 0;
    }

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

    .valuation-container {
        padding: 24px;
    }

    /* Valuation page mobile */
    .valuation-page {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    /* Sticky CTA on Mobile */
    .submit-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        z-index: 100;
        box-shadow: 0 -4px 12px rgba(27, 42, 78, 0.2);
    }

    .form-main-title {
        font-size: 1.25rem;
    }

    .bike-name {
        font-size: 1.125rem;
    }

    .bike-name-edit {
        font-size: 1.125rem;
    }

    .bike-info-display {
        flex-direction: column;
        align-items: flex-start;
    }

    .bike-name-wrapper {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title-dark {
        font-size: 1.625rem;
    }

    .hero-title-light {
        font-size: 1.125rem;
    }

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

    .hero-trust {
        font-size: 0.8125rem;
    }

    .hero-btn,
    .submit-btn {
        width: 100%;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }
}

/* Landscape mode adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 56px 0 40px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title-dark {
        font-size: 1.5rem;
    }

    .hero-title-light {
        font-size: 1rem;
    }
}

/* ========================================
   MOBILE MENU (Active state)
   ======================================== */
.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-light);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
}

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

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

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

/* ========================================
   PRIVACY POLICY PAGE
   ======================================== */
.privacy-page {
    min-height: 100vh;
    padding: 100px 24px 60px;
    background: var(--bg-gray);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.privacy-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.privacy-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.privacy-section h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.privacy-section h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.privacy-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
}

.privacy-section ul li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-gray);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-cyan);
    font-weight: 700;
}

.privacy-section a {
    color: var(--primary-navy);
    font-weight: 500;
    text-decoration: underline;
}

.privacy-section a:hover {
    color: var(--primary-cyan);
}

.info-box {
    background: var(--bg-gray);
    padding: 20px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-cyan);
    margin: 16px 0 20px;
}

.info-box p {
    margin-bottom: 4px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.info-box strong {
    color: var(--text-dark);
    font-weight: 600;
}

.purpose-item {
    padding: 16px 0;
}

.purpose-item:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-privacy-link:hover {
    color: var(--text-light);
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-navy);
    color: var(--text-light);
    padding: 12px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1500;
    display: none;
    animation: slideUp 0.4s ease;
}

.cookie-banner.active {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-text a {
    color: var(--primary-cyan);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--text-light);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept {
    padding: 10px 24px;
    background: var(--primary-cyan);
    color: var(--primary-navy);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #3db8df;
    transform: translateY(-1px);
}

.cookie-reject {
    padding: 10px 24px;
    background: transparent;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    transition: border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-reject:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 32px 24px;
    }

    .privacy-title {
        font-size: 1.5rem;
    }

    .privacy-subtitle {
        font-size: 1rem;
    }

    .privacy-section h2 {
        font-size: 1.25rem;
    }

    .cookie-banner {
        padding: 10px 16px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cookie-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .cookie-buttons {
        flex-direction: row;
        gap: 8px;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.8125rem;
    }
}
