.why_section {
    padding: 4rem 2rem;
    max-width: 1260px;
    margin: 5rem auto;
}

.why_block {
    margin-bottom: 3rem;
    text-align: center;

}

.why_title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0d1117;
}

.why_text {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto 0.8rem;
    text-align: center;
    color: #444;
}

.why_text_why {
    max-width: 800px;
}

@media (max-width: 768px) {
    .why_block {

        padding: 2rem 1.6rem;
        margin-bottom: 1.4rem;
    }

    .why_title {
        font-size: 1.4rem;
    }

    .why_text {
        font-size: 1rem;
        text-align: left;
    }
}

/* Cards */
.why_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    margin-top: 3rem;
}

.why_card {
    background: #f9f7f7;
    border: 1px solid #e8ecf0;
    border-radius: 1rem;
    padding: 2rem 1.8rem;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s;
}

.why_card--visible {
    opacity: 1;
    transform: translateY(0);
}

.why_card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.why_card_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    background: #dbeafe;
    border-radius: 0.75rem;
    margin-bottom: 1.4rem;
    color: #2a70de;
}

.why_card_icon svg {
    width: 1.4rem;
    height: 1.4rem;
}

.why_card_title {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1117;
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.why_card_text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
}

@media (max-width: 900px) {
    .why_cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .why_cards { grid-template-columns: 1fr; }
}

/* =========================================================
   How it works
   ========================================================= */
.how_section {
    margin-top: 5rem;
    padding: 5rem 2rem;
    background: #f8fafc;
    border-radius: 1.5rem;
    text-align: center;
}

.how_title {
    font-size: 2rem;
    font-weight: 800;
    color: #0d1117;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.how_subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 3.5rem;
}

.how_steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.how_step {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 1rem;
    padding: 2rem 1.6rem;
    text-align: left;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s;
}

.how_step--visible {
    opacity: 1;
    transform: translateY(0);
}

.how_step:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.how_step_num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    background: #2a70de;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.2rem;
}

.how_step_title {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1117;
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.how_step_text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

@media (max-width: 900px) {
    .how_steps { grid-template-columns: repeat(2, 1fr); }
    .how_title { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .how_steps { grid-template-columns: 1fr; }
    .how_section { padding: 3rem 1.2rem; border-radius: 1rem; }
}

/* =========================================================
   Advantages section (8 cards, 4×2 grid)
   ========================================================= */
.adv_section {
    margin-top: 5rem;
    text-align: center;
}

.adv_title {
    font-size: 2rem;
    font-weight: 800;
    color: #0d1117;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.adv_subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 3rem;
}

.adv_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.adv_card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 1rem;
    padding: 2rem 1.6rem;
    text-align: left;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s;
}

.adv_card--visible {
    opacity: 1;
    transform: translateY(0);
}

.adv_card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.adv_card_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: #ede9fe;
    border-radius: 0.75rem;
    margin-bottom: 1.2rem;
    color: #6366f1;
}

.adv_card_icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.adv_card_title {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1117;
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.adv_card_text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

@media (max-width: 900px) {
    .adv_grid { grid-template-columns: repeat(2, 1fr); }
    .adv_title { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .adv_grid { grid-template-columns: 1fr; }
    .adv_section { margin-top: 3rem; }
}

/* =========================================================
   Client segments section (3 professional cards)
   ========================================================= */
.client_section {
    margin-top: 6rem;
    text-align: center;
}

.client_title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d1117;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.client_subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.client_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.client_card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.client_card--visible {
    opacity: 1;
    transform: translateY(0);
}

.client_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.client_card_icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.client_icon_blue { background: #eff6ff; color: #2563eb; }
.client_icon_indigo { background: #eef2ff; color: #4f46e5; }
.client_icon_purple { background: #faf5ff; color: #9333ea; }

.client_card_icon svg {
    width: 1.6rem;
    height: 1.6rem;
}

.client_card_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.2rem;
}

.client_card_text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.client_list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    flex-grow: 1;
}

.client_list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 0.8rem;
}

.client_list li svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #2563eb;
}

.client_link {
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.client_link_blue { color: #2563eb; }
.client_link_indigo { color: #4f46e5; }
.client_link_purple { color: #9333ea; }

@media (max-width: 1024px) {
    .client_grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .client_title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .client_section { margin-top: 4rem; padding: 0 1rem; }
    .client_card { padding: 2rem 1.5rem; }
}

/* =========================================================
   Blue CTA Stats Section
   ========================================================= */
.cta_blue_section {
    margin-top: 6rem;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    border-radius: 2rem;
    padding: 6rem 2rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.cta_blue_section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta_blue_content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.cta_blue_title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta_blue_text {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.cta_blue_actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.cta_btn_white {
    background: #fff;
    color: #2563eb;
    padding: 1.2rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta_btn_white svg {
    width: 1.3rem;
    height: 1.3rem;
}

.cta_btn_white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta_btn_outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 1.2rem 1.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.cta_btn_outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.cta_stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 4rem;
}

.cta_stat_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta_stat_val {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta_stat_lbl {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .cta_blue_title { font-size: 2.2rem; }
    .cta_stats_grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .cta_blue_section { padding: 4rem 1.5rem; }
}

@media (max-width: 600px) {
    .cta_blue_actions { flex-direction: column; align-items: center; }
    .cta_btn_white, .cta_btn_outline { width: auto; max-width: 260px; box-sizing: border-box; justify-content: center; font-size: 0.9rem; padding: 0.85rem 1rem; }
    .cta_btn_white svg { width: 1.1rem; height: 1.1rem; }
    .cta_stat_val { font-size: 2.5rem; }
}
/* =========================================================
   FAQ Section
   ========================================================= */
.faq_section {
    margin-top: 8rem;
    text-align: center;
}

.faq_title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d1117;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.faq_subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 4rem;
}

.faq_container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq_item {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.faq_item--visible {
    opacity: 1;
    transform: translateY(0);
}

.faq_question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq_answer {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.faq_footer {
    margin-top: 5rem;
    background: #f0f7ff;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq_footer_title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.faq_footer_text {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq_contact_btn {
    background: #2563eb;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s;
}

.faq_contact_btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.faq_contact_btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

@media (max-width: 768px) {
    .faq_section { margin-top: 5rem; }
    .faq_title { font-size: 1.75rem; }
    .faq_item { padding: 1.5rem; }
    .faq_question { font-size: 1.1rem; }
    .faq_answer { font-size: 0.95rem; }
    .faq_footer { padding: 3rem 1.5rem; }
    .faq_footer_title { font-size: 1.5rem; }
}

/* =========================================================
   Comparison Section (Side-by-Side Text)
   ========================================================= */
.comp_section {
    background-color: #f9fbfb;
    margin-top: 8rem;
    padding: 2 2rem;
}

.comp_title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0d1117;
    margin-bottom: 4rem;
    max-width: 900px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.comp_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.comp_col_title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0d1117;
    margin-bottom: 1.8rem;
}

.comp_content p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 1.5rem;
}

.comp_content b {
    color: #0f172a;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .comp_grid { gap: 3rem; }
    .comp_title { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .comp_grid { grid-template-columns: 1fr; gap: 4rem; }
    .comp_section { margin-top: 5rem; }
    .comp_title { font-size: 1.6rem; margin-bottom: 3rem; }
    .comp_col_title { font-size: 1.25rem; margin-bottom: 1.2rem; }
}
