@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1E1E1E;
    background: #F5F5F5;
}

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

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(10, 36, 99, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #0A2463;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1E1E1E;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3E92CC;
}

.lang-switch {
    padding: 8px 16px;
    background: #F5F5F5;
    border-radius: 6px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
}

.hero-accent {
    position: absolute;
    bottom: 40px;
    right: 80px;
    width: 120px;
    height: 4px;
    background: #D8315B;
    border-radius: 2px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-button:not(.secondary):not(.tertiary) {
    background: #D8315B;
    color: white;
    border: 2px solid transparent;
}

.cta-button:not(.secondary):not(.tertiary):hover {
    background: #c02850;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 49, 91, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button.tertiary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 12px 32px;
    flex-basis: 100%;
    max-width: max-content;
    margin-top: 8px;
}

.cta-button.tertiary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-buttons-tertiary {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Stats Section */
.stats {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #E0E0E0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}

.stat-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D8315B;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item:nth-child(1) .stat-number {
    color: #3E92CC;
}

.stat-item:nth-child(2) .stat-number {
    color: #00B4D8;
}

.stat-item:nth-child(3) .stat-number {
    color: #3E92CC;
}

.stat-label {
    font-size: 16px;
    color: #1E1E1E;
    font-weight: 500;
}

/* Problems Section */
.problems {
    background: white;
    padding: 80px 0;
}

.problems h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0A2463;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.problems h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #D8315B;
}

.problem-category {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.problem-category h3 {
    font-size: 28px;
    font-weight: 600;
    color: #3E92CC;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 3px solid #D8315B;
    display: inline-block;
}

.problem-item {
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 4px solid #00B4D8;
}

.problem-item strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #0A2463;
    margin-bottom: 8px;
}

.problem-item p {
    font-size: 16px;
    color: #1E1E1E;
    line-height: 1.7;
}

.problems-conclusion {
    background: #E3F2FD;
    border: 2px solid #3E92CC;
    border-radius: 12px;
    padding: 32px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.problems-conclusion p {
    font-size: 20px;
    font-weight: 600;
    color: #0A2463;
    text-align: center;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    background: #F5F5F5;
    padding: 80px 0;
}

.benefits h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0A2463;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.benefits h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #D8315B;
}

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

.benefit-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(10, 36, 99, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 36, 99, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0A2463;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: #1E1E1E;
    line-height: 1.6;
}

/* Cases Section */
.cases {
    background: #F5F5F5;
    padding: 80px 0;
}

.cases h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0A2463;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.cases h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #D8315B;
}

.case-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(10, 36, 99, 0.08);
    position: relative;
    border-left: 6px solid #D8315B;
}

.case-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #0A2463;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid #D8315B;
}

.case-section {
    margin-bottom: 32px;
}

.case-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: #3E92CC;
    margin-bottom: 16px;
}

.case-image-section {
    margin-bottom: 32px;
}

.case-image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(10, 36, 99, 0.1);
}

.case-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #1E1E1E;
    margin-bottom: 12px;
}

.case-section ul {
    list-style: none;
    padding-left: 0;
}

.case-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #1E1E1E;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.case-section li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #D8315B;
    font-weight: 700;
}

.case-note {
    font-style: italic;
    color: #666;
    margin-top: 16px;
}

.case-result {
    background: #E8F5E9;
    border-left: 4px solid #4CAF50;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #0A2463;
}

.cases-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(10, 36, 99, 0.08);
}

.cases-cta p {
    font-size: 20px;
    line-height: 1.6;
    color: #1E1E1E;
    margin-bottom: 16px;
}

.problems .cases-cta {
    background: white;
    border-left: 6px solid #D8315B;
    border-top: none;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 4px 12px rgba(10, 36, 99, 0.08);
}

.cases-cta .cta-button.secondary {
    background: white;
    color: #3E92CC;
    border: 2px solid #3E92CC;
}

.cases-cta .cta-button.secondary:hover {
    background: #F5F5F5;
    border-color: #0A2463;
    color: #0A2463;
}

.cases-cta .cta-button.tertiary {
    background: white;
    color: #3E92CC;
    border: 2px solid #3E92CC;
    text-decoration: none;
}

.cases-cta .cta-button.tertiary:hover {
    background: #F5F5F5;
    color: #0A2463;
    border-color: #0A2463;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 36, 99, 0.15);
}

/* About Section */
.about {
    background: white;
    padding: 80px 0;
}

.about h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0A2463;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.about h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #D8315B;
}

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

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #1E1E1E;
    margin-bottom: 24px;
}

.about-text strong {
    color: #0A2463;
}

.about-text em {
    color: #3E92CC;
    font-style: italic;
}

/* Process Section */
.process {
    background: white;
    padding: 80px 0;
}

.process h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0A2463;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.process h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #D8315B;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    position: relative;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.08);
    width: 60%;
}

.step:nth-child(even) {
    align-self: flex-end;
}

.step:nth-child(odd) {
    align-self: flex-start;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #D8315B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step:nth-child(even) .step-number {
    right: 30px;
    left: auto;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0A2463;
    margin-bottom: 12px;
    margin-top: 12px;
}

.step p {
    font-size: 16px;
    color: #1E1E1E;
    line-height: 1.6;
}

.step strong {
    color: #3E92CC;
}

/* FAQ Section */
.faq {
    background: #F5F5F5;
    padding: 80px 0;
}

.faq h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0A2463;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.faq h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #D8315B;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(10, 36, 99, 0.08);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0A2463;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #1E1E1E;
}

/* Consultation Section */
.consultation {
    background: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.consultation h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.consultation p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
footer {
    background: #0A2463;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

footer h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

footer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Reviews Section - reuses .faq section styles */
.reviews {
    background: #F5F5F5;
    padding: 80px 0;
}

.reviews h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0A2463;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.reviews h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #D8315B;
}

/* Carousel - only new functionality needed */
.carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.carousel-container {
    overflow: visible;
    flex: 1;
    perspective: 1000px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex-shrink: 0;
    transition: all 0.5s ease-in-out;
    opacity: 0.7;
    transform: scale(0.85);
}

.carousel-slide.center {
    opacity: 1;
    transform: scale(1.15);
    z-index: 2;
}

.carousel-slide:hover {
    transform: scale(1.15);
    opacity: 1;
    z-index: 10;
}

.carousel-track:has(.carousel-slide:not(.center):hover) .carousel-slide.center {
    opacity: 0.7;
    transform: scale(0.85);
}

.carousel-track:has(.carousel-slide:hover) .carousel-slide:not(:hover) {
    opacity: 0.6;
    transform: scale(0.85);
}

.carousel-slide .faq-item {
    margin: 0;
}

.review-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.faq-item a:hover .review-image {
    opacity: 0.9;
}

.carousel-btn {
    background: white;
    border: 2px solid #3E92CC;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #3E92CC;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #3E92CC;
    color: white;
    transform: scale(1.1);
}

.carousel-btn.hidden {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E0E0E0;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot:hover {
    background: #3E92CC;
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #D8315B;
    width: 32px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

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

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .problems h2,
    .benefits h2,
    .process h2,
    .consultation h2,
    .cases h2,
    .about h2,
    .faq h2 {
        font-size: 32px;
    }

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

    .case-card {
        padding: 24px;
    }

    .case-card h3 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 16px;
    }

    .step {
        width: 100%;
    }

    .step:nth-child(even) {
        align-self: flex-start;
    }

    .step:nth-child(even) .step-number {
        left: 30px;
        right: auto;
    }
}
