@import 'tailwindcss';

@theme inline {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    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 {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.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:hover {
    color: var(--electric-blue);
}

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

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

.cta-button {
    background: 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;
    box-shadow: 0 2px 8px rgba(27, 108, 255, 0.2);
}

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

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

.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 {
    margin-top: 80px;
    padding: 120px 0;
    background: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(27, 108, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(27, 108, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.cta-button-large {
    background: var(--electric-blue);
    color: var(--white);
    border: none;
    padding: 18px 48px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(27, 108, 255, 0.25);
}

.cta-button-large:hover {
    background: var(--deep-blue);
    box-shadow: 0 6px 20px rgba(27, 108, 255, 0.35);
    transform: translateY(-2px);
}

.features {
    padding: 120px 0;
    background: var(--white);
}

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

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

.feature-card {
    background: var(--light-blue);
    padding: 48px 32px;
    border-radius: 12px;
    border: 1px solid var(--soft-gray);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(10, 61, 145, 0.08);
    transform: translateY(-4px);
    border-color: var(--electric-blue);
}

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

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

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

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    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: 120px 0;
    background: var(--light-blue);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

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

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(10, 61, 145, 0.08);
    transform: translateY(-2px);
}

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

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

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

.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: 120px 0;
    background: var(--white);
}

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

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

.pricing-card {
    background: var(--light-blue);
    padding: 48px 40px;
    border-radius: 12px;
    border: 2px solid var(--deep-blue);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 12px 32px rgba(10, 61, 145, 0.12);
    border-color: var(--electric-blue);
}

.pricing-featured {
    background: var(--white);
    border: 2px solid var(--electric-blue);
    box-shadow: 0 8px 24px rgba(27, 108, 255, 0.15);
}

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

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

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--electric-blue);
}

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

.pricing-description {
    font-size: 15px;
    color: var(--navy-blue);
    margin-bottom: 32px;
    opacity: 0.8;
}

.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;
    color: var(--electric-blue);
    font-weight: 700;
}

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

.pricing-cta {
    width: 100%;
}

.contact {
    padding: 120px 0;
    background: var(--light-blue);
}

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

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

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

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

.footer-content {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

.footer a {
    color: var(--deep-blue);
    text-decoration: none;
    font-size: 14px;
    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: var(--white);
    border-top: 2px solid var(--electric-blue);
    padding: 24px;
    z-index: 1001;
    box-shadow: 0 -4px 16px rgba(10, 61, 145, 0.1);
}

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

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

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

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

.legal-page {
    margin-top: 80px;
    padding: 80px 0;
    background: var(--white);
}

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

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

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

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-content li {
    font-size: 16px;
    color: var(--navy-blue);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-back {
    text-align: center;
    margin-top: 80px;
}

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

    .nav {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .line1 {
        transform: rotate(45deg) translateY(8px);
    }

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

    .menu-toggle.active .line3 {
        transform: rotate(-45deg) translateY(-8px);
    }

    .line {
        transition: all 0.3s ease;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .features {
        padding: 60px 0;
    }

    .features h2 {
        font-size: 32px;
        margin-bottom: 48px;
    }

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

    .testimonials {
        padding: 60px 0;
    }

    .testimonials h2 {
        font-size: 32px;
        margin-bottom: 48px;
    }

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

    .pricing {
        padding: 60px 0;
    }

    .pricing h2 {
        font-size: 32px;
        margin-bottom: 48px;
    }

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

    .contact {
        padding: 60px 0;
    }

    .contact h2 {
        font-size: 32px;
    }

    .contact p {
        font-size: 16px;
    }

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

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

    .legal-page h1 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero h1 {
        font-size: 48px;
    }

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

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
