/* ========================================
   Motorrad Fähre Kosten - CSS Styles
   puttgardenrodby.de
   Stand: November 2025
   ======================================== */

/* ----------------------------------------
   CSS Custom Properties
   ---------------------------------------- */
:root {
    /* Color System */
    --primary-color: #1E3A8A;
    --primary-light: #3B82F6;
    --primary-dark: #1E40AF;
    
    --secondary-color: #0EA5E9;
    --accent-color: #F59E0B;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    
    /* Motorrad Theme */
    --motorrad-primary: #DC2626;
    --motorrad-dark: #991B1B;
    --motorrad-light: #FEE2E2;
    --sweden-color: #0066CC;
    
    /* Gradients */
    --gradient-motorrad: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    --gradient-ocean: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-sweden: linear-gradient(135deg, #0066CC 0%, #004D99 100%);
    --gradient-dark: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    
    /* Grayscale */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ----------------------------------------
   Base Styles
   ---------------------------------------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--gray-50);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

/* ----------------------------------------
   Accessibility
   ---------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: var(--space-md);
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ----------------------------------------
   Header & Navigation
   ---------------------------------------- */
.site-header {
    background: var(--gradient-motorrad);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: var(--space-md) 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    color: white !important;
    font-size: 1.125rem;
}

.navbar-brand img {
    border-radius: var(--radius-sm);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md) !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
}

.navbar-toggler {
    border: none;
    padding: var(--space-sm);
}

/* ----------------------------------------
   Breadcrumb
   ---------------------------------------- */
.breadcrumb-section {
    background: var(--gray-100);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--gray-600);
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero-motorrad {
    background: var(--gradient-motorrad);
    color: white;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-motorrad::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
    background-size: 100px;
    pointer-events: none;
}

.hero-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--space-md);
}

.hero-motorrad h1 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.hero-motorrad .lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.95;
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----------------------------------------
   Price Card (Hero)
   ---------------------------------------- */
.price-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--success-color);
}

.price-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.price-badge.success {
    background: var(--success-color);
    color: white;
}

.price-card .card-header {
    background: var(--gradient-success);
    color: white;
    padding: var(--space-lg);
}

.price-card .card-header h3 {
    color: white;
    font-size: 1.25rem;
}

.price-card .card-body {
    padding: var(--space-xl);
    color: var(--gray-800);
}

.price-highlight {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--success-color);
}

.price-value {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--success-color);
}

.price-info {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-left: var(--space-xs);
}

.price-card .feature-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.price-card .feature-list li {
    padding: var(--space-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* ----------------------------------------
   Section Styling
   ---------------------------------------- */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-badge {
    display: inline-block;
    background: var(--motorrad-light);
    color: var(--motorrad-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* ----------------------------------------
   Tarif Cards
   ---------------------------------------- */
.section-preise {
    background: white;
}

.tarif-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
}

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

.tarif-card.popular {
    border: 2px solid var(--success-color);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: var(--space-lg);
    background: var(--success-color);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tarif-header {
    padding: var(--space-xl);
    text-align: center;
    color: white;
}

.tarif-header.standard {
    background: var(--gradient-ocean);
}

.tarif-header.success {
    background: var(--gradient-success);
}

.tarif-header.sweden {
    background: var(--gradient-sweden);
}

.tarif-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.tarif-header h3 {
    color: white;
    margin-bottom: var(--space-xs);
}

.tarif-subtitle {
    opacity: 0.9;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.tarif-body {
    padding: var(--space-xl);
    flex: 1;
}

.tarif-price {
    text-align: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-lg);
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: var(--space-xs);
}

.tarif-price .price-value {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.tarif-price .currency {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.tarif-price .cents {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.price-range {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.price-table {
    width: 100%;
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
}

.price-table td {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon.success {
    background: var(--success-color);
    color: white;
}

.tarif-cta {
    padding: 0 var(--space-xl) var(--space-xl);
}

.btn-sweden {
    background: var(--gradient-sweden);
    color: white;
    border: none;
}

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

/* ----------------------------------------
   Verzurren Section
   ---------------------------------------- */
.section-verzurren {
    background: var(--gray-50);
}

.verzurr-info-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.verzurr-info-card h3 {
    color: var(--success-color);
    margin-bottom: var(--space-md);
}

.verzurr-info-card .lead {
    font-size: 1.125rem;
    color: var(--gray-700);
}

.verzurr-highlight {
    margin-top: var(--space-xl);
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--gray-50);
}

.highlight-box.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.highlight-box i {
    font-size: 1.5rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.highlight-box strong {
    display: block;
    color: var(--gray-900);
}

/* Step-by-Step */
.verzurr-steps {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.verzurr-steps h4 {
    margin-bottom: var(--space-xl);
    color: var(--primary-color);
}

.step-item {
    display: flex;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-motorrad);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h5 {
    margin-bottom: var(--space-xs);
    color: var(--gray-900);
}

.step-content p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Insider Tip */
.insider-tip {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.insider-tip h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

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

.tip-list li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

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

.tip-list strong {
    color: var(--gray-900);
}

/* ----------------------------------------
   Checkliste Section
   ---------------------------------------- */
.section-checkliste {
    background: var(--gray-100);
}

.checklist-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.checklist-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-motorrad);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.checklist-card h4 {
    margin-bottom: var(--space-md);
}

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

.checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: 0.875rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ----------------------------------------
   Touren Section
   ---------------------------------------- */
.section-touren {
    background: white;
}

.tour-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tour-card.featured {
    border: 2px solid var(--motorrad-primary);
}

.tour-card.sweden {
    border: 2px solid var(--sweden-color);
}

.tour-header {
    padding: var(--space-lg);
    background: var(--gray-50);
    position: relative;
}

.tour-distance {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--primary-color);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.tour-card.featured .tour-distance {
    background: var(--motorrad-primary);
}

.tour-card.sweden .tour-distance {
    background: var(--sweden-color);
}

.tour-header h4 {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.tour-body {
    padding: var(--space-lg);
}

.tour-body p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tour-highlights .highlight {
    background: var(--gray-100);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ----------------------------------------
   Gruppen Section
   ---------------------------------------- */
.section-gruppen {
    background: var(--gray-100);
}

.gruppen-tipps {
    margin-top: var(--space-xl);
}

.tipp-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.tipp-item i {
    font-size: 1.5rem;
    color: var(--motorrad-primary);
    flex-shrink: 0;
}

.tipp-item strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.tipp-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.tipp-item a {
    color: var(--primary-color);
}

.gruppen-card {
    border: 2px solid var(--motorrad-primary);
}

.gruppen-card .card-header {
    background: var(--gradient-motorrad);
    color: white;
}

.gruppen-card .card-header h4 {
    color: white;
}

/* ----------------------------------------
   FAQ Section
   ---------------------------------------- */
.section-faq {
    background: white;
}

.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: var(--space-lg);
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--motorrad-primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-200);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23DC2626' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: var(--space-lg);
    color: var(--gray-700);
    line-height: 1.7;
}

/* ----------------------------------------
   CTA Section
   ---------------------------------------- */
.section-cta {
    background: var(--gradient-motorrad);
    color: white;
    padding: var(--space-3xl) 0;
}

.section-cta h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-md);
}

.section-cta .lead {
    opacity: 0.95;
}

.section-cta .btn-light {
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.site-footer {
    background: var(--gray-900);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl);
}

.site-footer h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
    color: white;
}

.footer-bottom {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-700);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ----------------------------------------
   Back to Top Button
   ---------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    background: var(--gradient-motorrad);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ----------------------------------------
   Alert Customizations
   ---------------------------------------- */
.alert {
    border: none;
    border-radius: var(--radius-md);
}

.alert-warning {
    background: #FEF3C7;
    color: #92400E;
}

.alert-info {
    background: #DBEAFE;
    color: #1E40AF;
}

.alert-danger {
    background: #FEE2E2;
    color: #991B1B;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--gradient-ocean);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--gradient-success);
    border: none;
}

.btn-success:hover {
    background: var(--success-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

/* Loading State */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* ----------------------------------------
   Responsive Adjustments
   ---------------------------------------- */
@media (max-width: 991.98px) {
    .hero-motorrad {
        padding: var(--space-2xl) 0;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    section {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 767.98px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .verzurr-info-card {
        padding: var(--space-lg);
    }
    
    .step-item {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .tour-highlights {
        flex-direction: column;
    }
    
    .gruppen-tipps .tipp-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero-icon {
        font-size: 2.5rem;
    }
    
    .tarif-price .price-value {
        font-size: 2rem;
    }
    
    .price-card .price-value {
        font-size: 2.5rem;
    }
    
    .checklist-card {
        padding: var(--space-lg);
    }
    
    .back-to-top {
        bottom: var(--space-md);
        right: var(--space-md);
        width: 44px;
        height: 44px;
    }
}

/* ----------------------------------------
   Print Styles
   ---------------------------------------- */
@media print {
    .site-header,
    .back-to-top,
    .section-cta,
    .tarif-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
    
    .hero-motorrad {
        background: white;
        color: black;
    }
    
    .hero-motorrad h1,
    .hero-motorrad .lead {
        color: black;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
}