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

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

html {
    scroll-behavior: smooth;
}

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;
}

body.menu-open {
    overflow: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--soft-gray);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo svg {
    display: block;
    transition: transform 0.3s ease;
}

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

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

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    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-button {
    background-color: var(--electric-blue);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.cta-button:active {
    transform: translateY(0);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle svg {
    display: block;
}

.mobile-menu-toggle.active .line-1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .line-2 {
    opacity: 0;
}

.mobile-menu-toggle.active .line-3 {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-toggle svg path {
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 999;
    display: none;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    padding: 100px 40px;
}

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

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

.mobile-nav .cta-button {
    margin-top: 20px;
    font-size: 18px;
    padding: 16px 40px;
}

main {
    margin-top: 80px;
}

.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: 56px;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

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

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

.hero-visual {
    position: relative;
    height: 400px;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, var(--soft-gray) 1px, transparent 1px),
        linear-gradient(0deg, var(--soft-gray) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.grid-lines::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(27, 108, 255, 0.3);
}

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

.features h2,
.testimonials h2,
.pricing h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

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

.feature-card {
    background-color: var(--white);
    padding: 48px;
    border: 1px solid var(--soft-gray);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--electric-blue);
    transition: height 0.4s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(10, 61, 145, 0.08);
}

.feature-icon {
    margin-bottom: 24px;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.float-delay-1 {
    animation-delay: 0.5s;
}

.float-delay-2 {
    animation-delay: 1s;
}

.float-delay-3 {
    animation-delay: 1.5s;
}

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

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

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

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

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

.testimonial-card {
    background-color: var(--light-blue);
    padding: 48px;
    position: relative;
    border: 1px solid var(--soft-gray);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

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

.testimonial-content {
    margin-bottom: 32px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy-blue);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-name {
    font-weight: 600;
    color: var(--deep-blue);
    font-size: 16px;
    margin-bottom: 4px;
}

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

.glow-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

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

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

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--soft-gray);
    padding: 48px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

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

.pricing-card:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 8px 32px rgba(27, 108, 255, 0.12);
}

.pricing-featured {
    border-color: var(--electric-blue);
    box-shadow: 0 8px 32px rgba(27, 108, 255, 0.12);
}

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

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 15px;
    color: var(--navy-blue);
    opacity: 0.7;
}

.pricing-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

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

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-blue);
}

.price-period {
    font-size: 16px;
    color: var(--navy-blue);
    opacity: 0.7;
}

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

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--navy-blue);
    border-bottom: 1px solid var(--soft-gray);
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid var(--electric-blue);
    border-radius: 50%;
}

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

.pricing-cta {
    width: 100%;
    background-color: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background-color: var(--electric-blue);
    border-color: var(--electric-blue);
    color: var(--white);
}

.pricing-featured .pricing-cta {
    background-color: var(--electric-blue);
    border-color: var(--electric-blue);
    color: var(--white);
}

.pricing-featured .pricing-cta:hover {
    background-color: var(--deep-blue);
    border-color: var(--deep-blue);
}

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

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 24px;
}

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

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

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

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

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

.cookie-notice {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--electric-blue);
    padding: 20px 0;
    z-index: 1001;
    transition: bottom 0.4s ease;
    box-shadow: 0 -4px 24px rgba(10, 61, 145, 0.1);
}

.cookie-notice.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

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

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

.legal-page {
    padding: 60px 0 100px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--soft-gray);
}

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

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

    .hero-visual {
        height: 300px;
    }
}

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

    .nav {
        display: none;
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    main {
        margin-top: 70px;
    }

    .hero {
        padding: 60px 0;
    }

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

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

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

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

    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 32px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-accept {
        width: 100%;
    }

    .contact-content h2 {
        font-size: 36px;
    }

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