/* ====================================
   MODERN FLIGHT DEALS DESIGN SYSTEM
   Navy Blue + Copper Accent Theme
   ==================================== */

:root {
    /* Primary Colors - Navy Blue */
    --navy-50: #f0f4f8;
    --navy-100: #d9e2ec;
    --navy-200: #bcccdc;
    --navy-300: #9fb3c8;
    --navy-400: #829ab1;
    --navy-500: #627d98;
    --navy-600: #486581;
    --navy-700: #334e68;
    --navy-800: #243b53;
    --navy-900: #102a43;
    
    /* Accent Colors - Copper/Bronze */
    --copper-50: #fef7f0;
    --copper-100: #fde9d7;
    --copper-200: #fad4ae;
    --copper-300: #f6b87a;
    --copper-400: #f19548;
    --copper-500: #e87722;
    --copper-600: #d45d15;
    --copper-700: #b04714;
    --copper-800: #8c3817;
    --copper-900: #733016;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;
    
    /* Theme Colors */
    --primary: var(--navy-800);
    --primary-light: var(--navy-600);
    --primary-dark: var(--navy-900);
    --accent: var(--copper-500);
    --accent-light: var(--copper-400);
    --accent-dark: var(--copper-600);
    
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: var(--gray-50);
    --bg-tertiary: var(--gray-100);
    --bg-dark: var(--navy-900);
    --bg-dark-secondary: var(--navy-800);
    
    /* Text */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-tertiary: var(--gray-400);
    --text-inverse: #ffffff;
    
    /* Borders & Shadows */
    --border-light: 1px solid var(--gray-200);
    --border-medium: 1px solid var(--gray-300);
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Spacing & Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================
   GLOBAL RESETS & BASE STYLES
   ==================================== */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* ====================================
   TYPOGRAPHY
   ==================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.display-1 { font-size: 4rem; font-weight: 800; }
.display-2 { font-size: 3.5rem; font-weight: 800; }
.display-3 { font-size: 3rem; font-weight: 700; }
.display-4 { font-size: 2.5rem; font-weight: 700; }

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ====================================
   NAVIGATION
   ==================================== */

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: var(--border-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i,
.navbar-brand svg {
    color: var(--accent);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition-base);
    border-radius: var(--radius-md);
}

.nav-link:hover {
    color: var(--primary) !important;
    background: var(--gray-100);
}

.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    color: white !important;
}

/* Mobile Navigation Toggle */
.navbar-toggler {
    border: 1px solid var(--gray-300) !important;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23243b53' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5em;
    height: 1.5em;
}

.navbar-collapse {
    background: white;
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        padding: 0;
        margin-top: 0;
    }
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 42, 67, 0.9) 0%, rgba(36, 59, 83, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: white;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--copper-400);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white !important;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--copper-400);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.hero-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.hero-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-top: 1rem;
}

.hero-price strong {
    color: white;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.trust-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.trust-badge-icon i {
    color: var(--copper-400);
}

.trust-badge-text {
    font-size: 0.875rem;
}

.trust-badge-text strong {
    display: block;
    font-size: 1.125rem;
}

/* ====================================
   RECENT DEALS SECTION
   ==================================== */

.recent-deals-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.section-title h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.deal-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
    transition: all var(--transition-base);
}

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

.deal-route {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.deal-route-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--copper-100);
    border-radius: var(--radius-lg);
    color: var(--copper-600);
}

.deal-route-text h4 {
    font-size: 1rem;
    margin: 0;
}

.deal-route-text span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

.deal-price small {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ====================================
   HOW IT WORKS SECTION
   ==================================== */

.how-it-works-section {
    padding: 5rem 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ====================================
   PRICING SECTION
   ==================================== */

.pricing-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-amount .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all var(--transition-base);
}

.pricing-cta.primary {
    background: var(--accent);
    color: white;
}

.pricing-cta.primary:hover {
    background: var(--accent-dark);
}

.pricing-cta.secondary {
    background: var(--gray-100);
    color: var(--text-primary);
}

.pricing-cta.secondary:hover {
    background: var(--gray-200);
}

/* ====================================
   STATS BAR SECTION
   ==================================== */

.stats-section {
    padding: 4rem 0;
    background: var(--navy-900);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--copper-400);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ====================================
   TESTIMONIALS SECTION
   ==================================== */

.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-primary);
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ====================================
   FAQ SECTION
   ==================================== */

.faq-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    transition: transform var(--transition-base);
    color: var(--text-tertiary);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ====================================
   CTA SECTION
   ==================================== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white !important;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background: var(--navy-900);
    padding: 3rem 0 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-base);
}

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

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

/* ====================================
   BUTTONS
   ==================================== */

.btn {
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-base);
    border: none;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--gray-100) !important;
    color: var(--text-primary) !important;
}

.btn-secondary:hover {
    background: var(--gray-200) !important;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    background: transparent;
}

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

.btn-lg {
    padding: 1rem 2rem !important;
    font-size: 1.0625rem !important;
}

.btn-success {
    background: var(--success) !important;
    color: white !important;
}

.btn-success:hover {
    background: #059669 !important;
}

/* ====================================
   CARDS
   ==================================== */

.card {
    background: white;
    border: var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-body {
    padding: 1.5rem;
}

/* ====================================
   FORMS
   ==================================== */

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-tertiary);
}

/* ====================================
   BADGES
   ==================================== */

.badge {
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
}

.badge.bg-success {
    background: var(--success) !important;
}

.badge.bg-primary {
    background: var(--accent) !important;
}

.badge.bg-warning {
    background: var(--warning) !important;
}

.badge.bg-info {
    background: var(--info) !important;
}

/* ====================================
   ALERTS
   ==================================== */

.alert {
    border-radius: var(--radius-lg);
    border: none;
    padding: 1rem 1.25rem;
}

.alert-success {
    background: var(--success-light);
    color: #065f46;
}

.alert-warning {
    background: var(--warning-light);
    color: #92400e;
}

.alert-info {
    background: var(--info-light);
    color: #1e40af;
}

/* ====================================
   CONTENT PAGES (GUIDES, BLOG)
   ==================================== */

.page-header {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: white !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.content-section {
    padding: 4rem 0;
}

.guide-content,
.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.guide-content h2,
.blog-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy-800);
}

.guide-content p,
.blog-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ====================================
   MOBILE OPTIMIZATIONS
   ==================================== */

@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .hero-trust-badges {
        gap: 1rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-card {
        padding: 1.5rem;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }
    
    .step-card .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .step-card-content {
        flex: 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-amount .price {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-badge {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* ====================================
   ACCESSIBILITY
   ==================================== */

*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn:focus-visible,
.form-control:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ====================================
   ANIMATIONS
   ==================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Recent Wins Ticker */
.wins-scroll-container {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.wins-scroll-track {
    display: flex;
    gap: 1rem;
    animation: scroll-wins 30s linear infinite;
}

@keyframes scroll-wins {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====================================
   UTILITIES
   ==================================== */

.text-accent {
    color: var(--accent) !important;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.bg-navy {
    background: var(--navy-900) !important;
}

.bg-copper {
    background: var(--accent) !important;
}

/* ====================================
   GUIDE PAGES
   ==================================== */

.guide-hero-section {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    padding: 4rem 0 3rem;
    color: white;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guide-badge svg {
    color: var(--copper-400);
}

.guide-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white !important;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.guide-title .highlight {
    color: var(--copper-400);
}

.guide-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 700px;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--copper-400);
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav {
    border-bottom: var(--border-light);
}

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

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--text-primary);
}

.cta-card {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    color: white;
}

.cta-card h3 {
    color: white !important;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: white !important;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
}

.btn-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    color: white;
}

.btn-cta svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: var(--navy-800);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--navy-800) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--navy-300);
    transition: all var(--transition-base);
}

.btn-outline:hover {
    background: var(--navy-100);
    border-color: var(--navy-400);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white !important;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
}

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

.tip-card {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: var(--border-light);
    transition: all var(--transition-base);
}

.tip-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tip-icon {
    width: 48px;
    height: 48px;
    background: var(--copper-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tip-icon svg {
    color: var(--accent);
}

.tip-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy-800);
}

.tip-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.strategy-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.strategy-icon {
    width: 28px;
    height: 28px;
    background: var(--success-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strategy-icon svg {
    color: var(--success);
    width: 16px;
    height: 16px;
}

.pro-tip-card {
    background: linear-gradient(135deg, var(--copper-50) 0%, var(--copper-100) 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--copper-200);
}

.pro-tip-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.pro-tip-card p {
    color: var(--navy-800);
    margin: 0;
    line-height: 1.6;
}

.route-card {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
    height: 100%;
    transition: all var(--transition-base);
}

.route-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.route-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.route-icon svg {
    color: var(--navy-700);
}

.route-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy-800);
}

.route-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.route-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
}

.route-link:hover {
    color: var(--accent-dark);
    gap: 0.75rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: white;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: var(--gray-50);
    border-top: var(--border-light);
}

@media (max-width: 768px) {
    .guide-title {
        font-size: 2rem;
    }
    
    .guide-subtitle {
        font-size: 1rem;
    }
    
    .stats-row {
        gap: 0.75rem;
    }
    
    .stat-card {
        min-width: calc(50% - 0.5rem);
        padding: 1rem;
    }
    
    .stat-card .stat-number {
        font-size: 1.25rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}
