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

:root {
    --deep-blue: #0A3D91;
    --electric-blue: #1B6CFF;
    --navy-blue: #062A63;
    --soft-gray: #E6EAF0;
    --light-blue: #F5F8FF;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--navy-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--soft-gray);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--electric-blue);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--electric-blue);
}

.nav a:hover::after {
    width: 100%;
}

.cta-btn {
    background-color: var(--electric-blue);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 108, 255, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

.menu-toggle .line {
    transition: all 0.3s ease;
}

.menu-toggle.active .line1 {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .line2 {
    opacity: 0;
}

.menu-toggle.active .line3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mobile-nav a {
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--electric-blue);
}

.hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content .highlight {
    color: var(--electric-blue);
    position: relative;
}

.hero-content p {
    font-size: 20px;
    color: var(--navy-blue);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-btn-large {
    background-color: var(--electric-blue);
    color: var(--white);
    border: none;
    padding: 18px 42px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-large:hover {
    background-color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(27, 108, 255, 0.3);
}

.hero-decoration {
    position: relative;
    height: 500px;
}

.grid-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, var(--electric-blue) 1px, transparent 1px),
        linear-gradient(var(--electric-blue) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(80px, 80px);
    }
}

.features {
    padding: 100px 0;
    background-color: var(--light-blue);
}

.features h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 80px;
}

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

.feature-card {
    background-color: var(--white);
    padding: 50px;
    border: 1px solid var(--soft-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-blue), var(--deep-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(10, 61, 145, 0.1);
}

.feature-icon {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

.feature-card:nth-child(4) .feature-icon {
    animation-delay: 1.5s;
}

.feature-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    color: var(--navy-blue);
    opacity: 0.85;
    line-height: 1.7;
}

.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 80px;
}

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

.testimonial-card {
    padding: 50px 40px;
    border: 1px solid var(--soft-gray);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--electric-blue);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(10, 61, 145, 0.08);
}

.testimonial-text {
    font-size: 17px;
    color: var(--navy-blue);
    margin-bottom: 30px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-blue);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--navy-blue);
    opacity: 0.7;
}

.pricing {
    padding: 100px 0;
    background-color: var(--light-blue);
}

.pricing h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 80px;
}

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

.pricing-card {
    background-color: var(--white);
    padding: 50px 40px;
    border: 2px solid var(--soft-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-featured {
    border-color: var(--electric-blue);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--electric-blue);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(10, 61, 145, 0.12);
}

.pricing-featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.pricing-desc {
    font-size: 15px;
    color: var(--navy-blue);
    opacity: 0.75;
    margin-bottom: 30px;
    min-height: 45px;
}

.price {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--soft-gray);
}

.price .amount {
    font-size: 52px;
    font-weight: 700;
    color: var(--deep-blue);
}

.price .currency {
    font-size: 18px;
    color: var(--navy-blue);
    opacity: 0.7;
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--navy-blue);
    font-size: 15px;
    position: relative;
    padding-left: 28px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: 700;
    font-size: 18px;
}

.pricing-btn {
    width: 100%;
    background-color: var(--electric-blue);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background-color: var(--deep-blue);
    box-shadow: 0 6px 20px rgba(27, 108, 255, 0.3);
}

.footer {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid var(--soft-gray);
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.footer a {
    color: var(--deep-blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--electric-blue);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--electric-blue);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    gap: 40px;
}

.cookie-content p {
    color: var(--navy-blue);
    font-size: 15px;
}

.cookie-btn {
    background-color: var(--electric-blue);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: var(--deep-blue);
}

.legal-content {
    padding: 100px 0;
    min-height: calc(100vh - 200px);
}

.legal-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 60px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 20px;
}

.legal-section p {
    font-size: 16px;
    color: var(--navy-blue);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 25px;
    margin-top: 15px;
}

.legal-section li {
    font-size: 16px;
    color: var(--navy-blue);
    line-height: 1.8;
    margin-bottom: 10px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }

    .header .container {
        padding: 20px 60px;
    }

    .cookie-content {
        padding: 0 60px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .header .container {
        padding: 18px 40px;
    }

    .nav {
        display: none;
    }

    .cta-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }

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

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

    .hero-content p {
        font-size: 18px;
    }

    .hero-decoration {
        height: 300px;
    }

    .features h2,
    .testimonials h2,
    .pricing h2 {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .features,
    .testimonials,
    .pricing {
        padding: 60px 0;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

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

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: translateY(-5px) scale(1);
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 40px;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .legal-content h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .legal-section h2 {
        font-size: 24px;
    }
}
