/* Why Choose Us Page */
.why-choose-page {
    background-color: #f5f7fa;
    min-height: 100vh;
    padding: 80px 60px;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* Hero */
.why-choose-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-choose-hero.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-label {
    color: #4169b3;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin: 18px 0;
}

.why-choose-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6368;
}

.why-choose-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.why-choose-bullets li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #3c4043;
}

.why-choose-bullets i {
    color: #ff5722;
    font-size: 16px;
}

.why-choose-visual {
    position: relative;
    display: grid;
    gap: 20px;
}

.why-choose-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(65, 105, 179, 0.22);
    object-fit: contain;
    height: auto;
    max-height: 500px;
}

.why-choose-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background: white;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-choose-badge strong {
    font-size: 34px;
    color: #4169b3;
}

.why-choose-badge span {
    font-size: 14px;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advantages Grid */
.advantages-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: white;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.advantage-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(65, 105, 179, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4169b3;
    font-size: 22px;
}

.advantage-card h3 {
    margin: 0;
    font-size: 22px;
    color: #1a1a2e;
}

.advantage-card p {
    margin: 0;
    color: #5f6368;
    line-height: 1.7;
    font-size: 15px;
}

/* Process Steps */
.process-section {
    background: linear-gradient(135deg, #4169b3 0%, #5a8fdc 100%);
    border-radius: 16px;
    padding: 45px 50px;
    color: white;
    box-shadow: 0 22px 60px rgba(65, 105, 179, 0.25);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.process-header h2 {
    margin: 0 0 10px 0;
    font-size: 34px;
}

.process-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-card {
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.process-card h4 {
    margin: 0;
    font-size: 18px;
    color: white;
}

.process-card p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

/* Guarantees list */
.guarantees-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.guarantees-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.guarantees-card {
    background: white;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.guarantees-card h3 {
    margin: 0;
    font-size: 24px;
    color: #1a1a2e;
}

.guarantees-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.guarantees-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #5f6368;
    line-height: 1.7;
    font-size: 15px;
}

.guarantees-card li i {
    color: #4169b3;
    font-size: 16px;
    margin-top: 4px;
}

.guarantees-cta {
    border-radius: 14px;
    padding: 28px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7b4d 100%);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.guarantees-cta h4 {
    margin: 0;
    font-size: 22px;
}

.guarantees-cta p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.guarantees-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    background-color: white;
    color: #ff5722;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantees-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 1200px) {
    .why-choose-hero {
        grid-template-columns: 1fr;
    }

    .why-choose-visual {
        order: -1;
    }

    .why-choose-badge {
        bottom: -20px;
        right: 20px;
    }

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

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

@media (max-width: 768px) {
    .why-choose-page {
        padding: 60px 25px;
    }

    .why-choose-container {
        gap: 50px;
    }

    .why-choose-title {
        font-size: 36px;
    }

    .why-choose-bullets {
        grid-template-columns: 1fr;
    }

    .advantages-section {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .guarantees-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .why-choose-page {
        padding: 50px 20px;
    }

    .why-choose-title {
        font-size: 32px;
    }
}
