/* ============================================================
   POLISH.CSS — Visual Enhancements & Micro-interactions
   Card hovers, scroll animations, nav effects, scroll-top button
   ============================================================ */

/* === SCROLL REVEAL ANIMATIONS === */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

.section-title.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

/* Stagger delays for card grids */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}


/* === CARD HOVER EFFECTS === */

/* About feature cards */
.about-feature-card {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e63946, #ff6b6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Why choose cards */
.why-choose-card {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e63946, #ff6b6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(230, 57, 70, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 57, 70, 0.2);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.12) rotate(3deg);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* News cards */
.news-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.news-card:hover .news-date {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.news-card:hover .news-link {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

/* Testimonial cards */
.testimonial-card {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(230, 57, 70, 0.08);
    pointer-events: none;
    transition: color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover::before {
    color: rgba(230, 57, 70, 0.15);
}


/* === NAVIGATION HOVER EFFECTS === */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e63946, #ff6b6b);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
    transform: translateX(0);
}

.nav-link:hover {
    color: #e63946 !important;
    transition: color 0.25s ease;
}


/* === SCROLL-TO-TOP BUTTON (REFINED) === */
.scroll-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: rgba(30, 41, 59, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 999 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.scroll-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.scroll-to-top:hover {
    background: rgba(230, 57, 70, 0.85) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.25) !important;
}

.scroll-to-top svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 2.5 !important;
}



/* === FOOTER ENHANCEMENT === */
.footer-grid {
    display: grid !important;
    grid-template-columns: 1.4fr 1.2fr 0.8fr 0.8fr !important;
    gap: 40px !important;
    align-items: start !important;
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .footer-logo-img {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.footer-brand-name .accent {
    color: #e63946;
}

.footer-brand-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.6);
    line-height: 1.2;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(148, 163, 184, 0.7);
    margin: 0;
    max-width: 280px;
}

/* Footer contacts links */
.footer-contacts a {
    color: rgba(148, 163, 184, 0.85) !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
}

.footer-contacts a:hover {
    color: #e63946 !important;
}

/* Footer nav hover */
.footer-nav a {
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: #e63946 !important;
    transform: translateX(4px);
}


/* === CTA SECTION ANIMATED GRADIENT === */
.program-cta {
    position: relative;
    overflow: hidden;
}

.program-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    animation: ctaGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes ctaGlow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, -20px) rotate(3deg);
    }
}


/* === SECTION DIVIDER LINES === */
.about-section,
.why-choose-section,
.news-section,
.testimonials-section {
    position: relative;
}

/* Subtle gradient separator between sections */
.about-section::after,
.why-choose-section::after,
.news-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 800px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.15), transparent);
}


/* === RESPONSIVE POLISH === */
@media (max-width: 768px) {
    .reveal {
        transform: translateY(20px);
    }

    .scroll-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .testimonial-card::before {
        font-size: 3rem;
    }

    .footer-brand {
        gap: 10px;
        margin-bottom: 12px;
    }

    .footer-brand .footer-logo-img {
        width: 32px;
        height: 32px;
    }

    .footer-brand-name {
        font-size: 1.1rem;
    }

    .footer-description {
        max-width: 100%;
    }
}


/* === FORM V4 — Card with Icons === */
.modal-v4 {
    max-width: 580px !important;
    border-radius: 20px !important;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.06) !important;
}

.modal-v4::before {
    display: none !important;
}

.modal-accent-stripe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #e53935, #c62828, #e53935);
    z-index: 2;
    pointer-events: none;
}

.modal-v4 .modal-close {
    z-index: 10;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.modal-v4 .modal-content {
    padding: 2.5rem 2.5rem 2rem 3rem !important;
}

.modal-v4 .modal-header {
    text-align: left !important;
    margin-bottom: 1.75rem;
}

.modal-v4 .modal-title {
    font-size: 1.75rem !important;
    color: #1a1f36;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.modal-v4 .modal-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Icon-prefixed form fields */
.form-group-icon {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 1rem !important;
}

.form-group-icon-top {
    align-items: flex-start !important;
}

.form-group-icon-top .form-icon {
    margin-top: 2rem;
}

.form-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(229, 57, 53, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.form-icon svg {
    color: #e53935;
    transition: all 0.3s ease;
}

.form-group-icon:focus-within .form-icon {
    background: #e53935;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.form-group-icon:focus-within .form-icon svg {
    color: #fff;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field label {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-v4 .form-group input,
.modal-v4 .form-group textarea {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    background: #f8fafc !important;
    transition: all 0.25s ease !important;
}

.modal-v4 .form-group input:focus,
.modal-v4 .form-group textarea:focus {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1) !important;
    background: #fff !important;
}

.modal-v4 .form-group textarea {
    min-height: 90px !important;
}

/* Form extras: toggle + checkbox */
.form-extras {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
    padding: 1rem 0;
    border-top: 1px solid #f1f5f9;
}

/* Toggle switch */
.toggle-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #475569;
    user-select: none;
}

.toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    min-width: 44px;
    background: #cbd5e1;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.toggle-input:checked+.toggle-switch {
    background: #e53935;
}

.toggle-input:checked+.toggle-switch::after {
    transform: translateX(20px);
}

.toggle-text {
    flex: 1;
    line-height: 1.4;
}

/* Dual buttons */
.form-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.modal-v4 .btn-submit {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e53935, #c62828) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.3) !important;
}

.modal-v4 .btn-submit:hover {
    background: linear-gradient(135deg, #c62828, #b71c1c) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4) !important;
}

.btn-outline-call {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent !important;
    color: #e53935 !important;
    border: 2px solid #e53935 !important;
    border-radius: 12px !important;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.btn-outline-call:hover {
    background: rgba(229, 57, 53, 0.06) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.15);
}

/* Privacy text */
.form-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 1.25rem;
    line-height: 1.5;
}

.form-privacy a {
    color: #e53935;
    text-decoration: none;
    transition: color 0.2s ease;
}

.form-privacy a:hover {
    color: #c62828;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .modal-v4 .modal-content {
        padding: 2rem 1.5rem 1.5rem 2rem !important;
    }

    .form-buttons {
        flex-direction: column;
    }

    .form-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
    }

    .form-group-icon {
        gap: 0.75rem !important;
    }

    .modal-v4 .modal-title {
        font-size: 1.5rem !important;
    }
}


/* ================================================================
   ABOUT PAGE  v7  Matches main page exactly
   Uses same card styles, shadows, radii, paddings as index.html
   ================================================================ */


/* ---- Hero ---- */
.about-hero {
    padding: 7rem 0 3.5rem;
    background: var(--corp-bg, #f8f9fc);
    position: relative;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
}

.about-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-family: var(--corp-font, 'Manrope', sans-serif);
    color: var(--corp-text-secondary, #6b7280);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-hero__breadcrumb a {
    color: var(--corp-accent, #e63946);
    text-decoration: none;
    transition: color 0.2s;
}

.about-hero__breadcrumb a:hover {
    color: var(--corp-accent-hover, #c1121f);
}

.about-hero__breadcrumb svg {
    opacity: 0.35;
    width: 12px;
    height: 12px;
}

.about-hero__title {
    font-family: var(--font-heading, 'Rubik', sans-serif) !important;
    font-size: clamp(1.575rem, 3.6vw, 2.25rem) !important;
    font-weight: 700 !important;
    color: var(--corp-text, #1a1f36) !important;
    margin: 0 0 0.75rem !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    line-height: 1.2;
}

.about-hero__subtitle {
    font-family: var(--corp-font, 'Manrope', sans-serif);
    font-size: 1.1rem;
    color: var(--corp-text-secondary, #6b7280);
    max-width: 560px;
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
}

/* ---- Company Intro ---- */
.about-intro {
    padding: 100px 0;
    background: var(--corp-surface, #ffffff);
}

.about-intro__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-intro__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--corp-accent, #e63946);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--corp-accent-light, rgba(230, 57, 70, 0.08));
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.about-intro__heading {
    font-family: var(--font-heading, 'Rubik', sans-serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--corp-text, #1a1f36);
    margin-bottom: 1.25rem;
    text-transform: none;
}

.about-intro__lead {
    font-size: 1.05rem;
    color: var(--corp-text, #1a1f36);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-intro__desc {
    font-size: 0.95rem;
    color: var(--corp-text-secondary, #6b7280);
    line-height: 1.7;
    margin: 0;
}

.about-intro__cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-intro__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-intro__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #dc2626) 0%, var(--accent-blue, #2563eb) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-intro__card:hover::before {
    transform: scaleX(1);
}

.about-intro__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(220, 38, 38, 0.1);
}

.about-intro__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-intro__card--red .about-intro__card-icon {
    background: rgba(230, 57, 70, 0.08);
    color: #e63946;
}

.about-intro__card--blue .about-intro__card-icon {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.about-intro__card--green .about-intro__card-icon {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.about-intro__card strong {
    display: block;
    font-family: var(--font-heading, 'Rubik', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--corp-text, #1a1f36);
}

.about-intro__card span {
    font-size: 0.8rem;
    color: var(--corp-text-secondary, #6b7280);
}

/* ---- Timeline ---- */
.about-history {
    padding: 100px 0;
    background: var(--corp-bg, #f8f9fc);
}

.about-timeline {
    position: relative;
    padding-left: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.06);
}

.about-timeline__item {
    position: relative;
    padding-bottom: 2.5rem;
}

.about-timeline__item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #dc2626;
    background: white;
    z-index: 1;
}

.about-timeline__item[data-color="blue"]::before {
    border-color: #3b82f6;
}

.about-timeline__item[data-color="green"]::before {
    border-color: #10b981;
}

.about-timeline__item[data-color="orange"]::before {
    border-color: #f59e0b;
}

.about-timeline__year {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.about-timeline__item[data-color="blue"] .about-timeline__year {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
}

.about-timeline__item[data-color="green"] .about-timeline__year {
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
}

.about-timeline__item[data-color="orange"] .about-timeline__year {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
}

.about-timeline__body h3 {
    font-family: var(--font-heading, 'Rubik', sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--corp-text, #1a1f36);
    margin-bottom: 0.4rem;
    text-transform: none;
}

.about-timeline__body p {
    font-size: 0.9rem;
    color: var(--corp-text-secondary, #6b7280);
    line-height: 1.65;
    margin: 0;
}

/* ---- Advantages (matches .advantage-card on main) ---- */
.about-advantages {
    padding: 100px 0;
    background: var(--corp-surface, #ffffff);
}

.about-advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-adv-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color, #dc2626) 0%, var(--accent-blue, #2563eb) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-adv-card:hover::before {
    transform: scaleX(1);
}

.about-adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(220, 38, 38, 0.1);
}

.about-adv-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.about-adv-card:hover .about-adv-card__icon {
    background: linear-gradient(135deg, var(--primary-color, #dc2626) 0%, var(--accent-blue, #2563eb) 100%) !important;
    color: white !important;
    transform: scale(1.1) rotate(5deg);
}

.about-adv-card__icon--1 {
    background: rgba(230, 57, 70, 0.08);
    color: #e63946;
}

.about-adv-card__icon--2 {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.about-adv-card__icon--3 {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

.about-adv-card__icon--4 {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.about-adv-card__icon--5 {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.about-adv-card__icon--6 {
    background: rgba(234, 88, 12, 0.08);
    color: #ea580c;
}

.about-adv-card__icon svg {
    stroke: currentColor;
}

.about-adv-card h3 {
    font-family: var(--font-heading, 'Rubik', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--corp-text, #1a1f36);
    margin-bottom: 0.5rem;
    text-transform: none;
}

.about-adv-card p {
    font-size: 0.9rem;
    color: var(--corp-text-secondary, #6b7280);
    line-height: 1.65;
    margin: 0;
}

/* ---- Services (dark section  matches program-cta gradient) ---- */
.about-services {
    padding: 100px 0;
    background: var(--corp-surface, #ffffff);
    position: relative;
    overflow: hidden;
}

.about-services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.about-services::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.about-services .section-title {
    color: var(--corp-text, #1a1f36);
}

.about-services .section-description {
    color: var(--corp-text-secondary, #6b7280);
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.about-svc-card {
    background: var(--corp-bg, #f8f9fc);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e63946 0%, #ff6b6b 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-svc-card:hover::before {
    transform: scaleX(1);
}

.about-svc-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-svc-card__top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-svc-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    color: var(--corp-accent, #e63946);
    flex-shrink: 0;
}

.about-svc-card__icon svg {
    stroke: currentColor;
}

.about-svc-card h3 {
    font-family: var(--font-heading, 'Rubik', sans-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--corp-text, #1a1f36);
    text-transform: none;
    margin: 0;
}

.about-svc-card>p {
    font-size: 0.9rem;
    color: var(--corp-text-secondary, #6b7280);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.about-svc-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-svc-card__list li {
    font-size: 0.85rem;
    color: var(--corp-text-secondary, #555);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.about-svc-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--corp-accent, #e63946);
    transform: translateY(-50%);
}

/* ---- Values ---- */
.about-values {
    padding: 100px 0;
    background: var(--corp-bg, #f8f9fc);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-val-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-val-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color, #dc2626) 0%, var(--accent-blue, #2563eb) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-val-card:hover::before {
    transform: scaleX(1);
}

.about-val-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(220, 38, 38, 0.1);
}

.about-val-card__num {
    font-family: var(--font-heading, 'Rubik', sans-serif);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-val-card h3 {
    font-family: var(--font-heading, 'Rubik', sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--corp-text, #1a1f36);
    margin-bottom: 0.5rem;
    text-transform: none;
}

.about-val-card p {
    font-size: 0.85rem;
    color: var(--corp-text-secondary, #6b7280);
    line-height: 1.65;
    margin: 0;
}

/* ---- CTA (matches program-cta on main) ---- */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f36 0%, #2d1b47 40%, #1e293b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.about-cta__glow {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.about-cta__inner {
    position: relative;
    z-index: 1;
}

.about-cta__inner h2 {
    font-family: var(--font-heading, 'Rubik', sans-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: none;
}

.about-cta__inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.about-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-intro__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 5rem 0 2.5rem;
    }

    .about-advantages__grid,
    .about-services__grid {
        grid-template-columns: 1fr;
    }

    .about-values__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-timeline {
        padding-left: 2rem;
    }

    .about-cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
