* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #001F3F;
    --deep-navy: #001233;
    --ocean-blue: #003366;
    --light-navy: #004080;
    --silver: #C0C0C0;
    --platinum: #E5E4E2;
    --light-silver: #F5F5F5;
    --white: #FFFFFF;
    --dark-silver: #A8A8A8;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(to bottom, var(--deep-navy), var(--navy-blue));
    padding: 1.25rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--silver);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: var(--platinum);
    font-size: 1.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 3rem;
}

.nav-brand:hover {
    color: var(--white);
    transform: scale(1.02);
}

.nav-brand::before {
    content: "⚓";
    font-size: 2rem;
    color: var(--silver);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    font-family: 'Lato', sans-serif;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--silver);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--platinum);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 18, 51, 0.7) 0%, rgba(0, 31, 63, 0.8) 50%, rgba(0, 51, 102, 0.7) 100%), 
                url('images/cruise-ship-sunset.jpeg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
    margin-top: 80px;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    color: var(--platinum);
}

.hero-subtitle {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--silver) 0%, var(--platinum) 100%);
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.6);
    background: linear-gradient(135deg, var(--platinum) 0%, var(--white) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--silver);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.2);
}

.btn-secondary:hover {
    background: var(--silver);
    color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.4);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
}

/* Partners Section */
.partners {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

.partners-title {
    text-align: center;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6B7280;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s;
    opacity: 0.6;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-align: center;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--ocean-blue) 100%);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--silver);
}

.trust-icon {
    width: 3.5rem;
    height: 3.5rem;
    color: #F59E0B;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
}

.trust-content {
    flex: 1;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lato', sans-serif;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-item {
        padding: 1.5rem;
    }

    .trust-number {
        font-size: 1.5rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, #F0F9FF 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--silver), transparent);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--navy-blue);
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--silver), var(--platinum), var(--silver));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s;
    background: white;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(10, 36, 99, 0.15);
    border-color: var(--silver);
}

.benefit-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    color: #F59E0B;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--navy-blue);
    font-weight: 600;
}

.benefit-card p {
    color: #4B5563;
    line-height: 1.8;
    font-family: 'Lato', sans-serif;
}

/* Life Onboard Section */
.life-onboard {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #F8FAFC 0%, white 100%);
}

.onboard-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    max-width: 900px;
    margin: -2rem auto 4rem;
    font-family: 'Lato', sans-serif;
}

.onboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #E2E8F0;
    transition: all 0.4s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.15);
    border-color: var(--silver);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.5rem;
    color: #F59E0B;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #64748B;
    line-height: 1.8;
    font-family: 'Lato', sans-serif;
}

@media (max-width: 768px) {
    .onboard-features {
        grid-template-columns: 1fr;
    }
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: white;
}

.process-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #64748B;
    margin-top: -2rem;
    margin-bottom: 4rem;
    font-family: 'Lato', sans-serif;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border: 2px solid #E2E8F0;
    transition: all 0.4s;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 31, 63, 0.15);
    border-color: var(--silver);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--silver) 0%, var(--platinum) 100%);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    margin: 1rem auto 1.5rem;
    color: #F59E0B;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #64748B;
    line-height: 1.8;
    font-family: 'Lato', sans-serif;
}

.process-arrow {
    width: 3rem;
    height: 3rem;
    color: var(--silver);
    opacity: 0.5;
}

.process-arrow svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 968px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-arrow {
        display: none;
    }
}

/* Route Map Section */
.route-map-section {
    padding: 6rem 0;
    background: white;
}

.route-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #64748B;
    margin-top: -2rem;
    margin-bottom: 3rem;
    font-family: 'Lato', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.route-map-container {
    max-width: 1000px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 31, 63, 0.15);
    border: 3px solid var(--silver);
}

.route-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.route-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.route-highlight {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 15px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s;
}

.route-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.1);
    border-color: var(--silver);
}

.highlight-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: #F59E0B;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.route-highlight h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.route-highlight p {
    color: #64748B;
    line-height: 1.8;
    font-family: 'Lato', sans-serif;
}

@media (max-width: 768px) {
    .route-map-container {
        border-radius: 10px;
        border-width: 2px;
    }

    .route-highlights {
        grid-template-columns: 1fr;
    }
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-blue) 50%, var(--ocean-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.3);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: var(--silver);
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--platinum);
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.stat-label {
    font-size: 1.25rem;
    opacity: 0.95;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-silver) 0%, var(--platinum) 100%);
    color: var(--navy-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '⚓';
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--silver);
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--deep-navy), #000814);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--silver);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--platinum);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--platinum);
    margin-bottom: 0.5rem;
    font-family: 'Lato', sans-serif;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--platinum);
    padding-left: 5px;
}

.footer-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
}

.footer-contacts svg {
    width: 20px;
    height: 20px;
    color: var(--silver);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
    background: var(--silver);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--platinum);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-brand {
        font-size: 1.5rem;
        margin-right: 1.5rem;
    }
    
    .nav-menu {
        gap: 1.2rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .benefits {
        padding: 4rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.5rem;
    }
    
    .process {
        padding: 4rem 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .route-map-section {
        padding: 4rem 0;
    }
    
    .route-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .cta {
        padding: 4rem 0;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
    
    .partners {
        padding: 2rem 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .trust-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-grid,
    .onboard-features,
    .route-highlights {
        grid-template-columns: 1fr;
    }
    
    .benefit-card,
    .feature-card,
    .route-highlight {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta h2 {
        font-size: 1.7rem;
    }
    
    .process-step {
        padding: 1.8rem 1.2rem;
    }
    
    .process-step h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 60px;
        height: 70vh;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .benefit-card,
    .feature-card,
    .route-highlight {
        padding: 1.2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .nav-brand {
        font-size: 1.3rem;
        margin-right: 1rem;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy-blue);
        padding: 1rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.8rem;
        border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
}
