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

:root {
    --primary-color: #4545E6;
    --secondary-color: #FF4757;
    --light-bg: #F8F8FF;
    --text-dark: #000000;
    --text-gray: #666666;
    --white: #ffffff;
    --border-radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 0;
}

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

.logo img {
    height: 70px;
    width: auto;
}

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

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

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

.btn-nav {
    padding: 10px 24px;
    background: linear-gradient(135deg, #4545E6 0%, #4545E6 100%);
    color: var(--white) !important;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #1a1a9e 0%, #4545E6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 40, 200, 0.3);
}

.btn-text-mobile {
    display: none;
}

.btn-text-desktop {
    display: inline;
}

.hero {
    padding: 200px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #000000 0%, #4545E6 50%, #000000 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleGradient 4s ease infinite;
}

@keyframes heroTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4545E6 0%, #4545E6 50%, #4545E6 100%);
    background-size: 200% 100%;
    color: var(--white);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a1a9e 0%, #4545E6 50%, #1a1a9e 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 40, 200, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.stats {
    padding: 80px 0;
    background-color: var(--white);
}

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

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 48px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(40, 40, 200, 0.15);
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #4545E6 0%, #4545E6 50%, #4545E6 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-title br {
    display: none;
}

.section-subtitle {
    font-size: 15px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card.featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #4545E6 0%, #9D8FD9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(69, 69, 230, 0.3);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

.service-benefits li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.service-benefits li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: #1a1a9e;
}

.comparison {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.comparison .section-title {
    color: var(--text-dark);
}

.comparison .section-subtitle {
    color: #6e6e73;
}

.highlight-text {
    color: var(--primary-color);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-column {
    padding: 32px 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.comparison-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.comparison-column.highlight {
    background: linear-gradient(135deg, #EEF0FF 0%, #FAFBFF 50%, #EEF0FF 100%);
    background-size: 200% 100%;
    border: 3px solid var(--primary-color);
    transform: none;
    box-shadow: 0 8px 30px rgba(40, 40, 200, 0.15);
    animation: gradientBackground 4s ease infinite;
}

@keyframes gradientBackground {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.comparison-column.highlight:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(40, 40, 200, 0.2);
}

.comparison-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #6e6e73;
}

.comparison-column.highlight .comparison-title {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 12px 0;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.comparison-list.negative li::before {
    content: "✗";
    color: #FF4757;
    font-weight: 700;
    margin-right: 16px;
    font-size: 20px;
    flex-shrink: 0;
}

.comparison-list.positive li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 16px;
    font-size: 20px;
    flex-shrink: 0;
}

.comparison-column.highlight .comparison-list li {
    color: var(--text-dark);
}

.comparison-list li strong {
    font-weight: 600;
    padding: 0 2px;
}

.process {
    padding: 100px 0;
    background: #ffffff;
}

.process .section-title {
    color: var(--text-dark);
}

.process .section-subtitle {
    color: var(--text-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: #f0f1f5;
    transform: translateY(-4px);
}

.process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #4545E6 0%, #9D8FD9 100%);
    border-radius: 50%;
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

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

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

.faq-item {
    margin-bottom: 16px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #4545E6 0%, #4545E6 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.footer {
    padding: 64px 0 32px;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-dark);
}

.footer-copyright {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright p {
    color: var(--text-gray);
    font-size: 14px;
}

.legal-page {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    min-height: 100vh;
}

.legal-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-dark);
}

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

.legal-section {
    background: var(--white);
    padding: 32px 40px;
    margin-bottom: 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 20px;
    margin-top: 12px;
}

.legal-section li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.legal-section li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-update {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-update p {
    font-size: 13px;
    color: var(--text-gray);
}

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

@media (max-width: 768px) {
    .nav {
        display: flex;
    }

    .btn-text-desktop {
        display: none;
    }

    .btn-text-mobile {
        display: inline;
    }

    .mobile-break {
        display: block;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero {
        padding: 160px 0 60px;
    }

    .stats-grid,
    .services-grid,
    .comparison-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 32px 24px;
    }

    .comparison-column.highlight {
        transform: none;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .comparison .section-title br {
        display: block;
    }

    .cta-title {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

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

    .legal-title {
        font-size: 28px;
    }

    .legal-section {
        padding: 24px 20px;
    }

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

    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-icon {
        font-size: 20px;
        margin-left: 12px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
}
