/**
 * Hero Section
 */

/* ========================================
   HERO BASE
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1f3a; /* Cor de fallback */
    background-image: linear-gradient(
            135deg,
            rgba(26, 31, 58, 0.65) 0%,
            rgba(17, 24, 39, 0.7) 100%
        ),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

@keyframes particlesMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 80px 80px;
    }
}

/* ========================================
   HERO CONTENT
   ======================================== */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-2xl) var(--spacing-xl);
    animation: fadeInUp 1s ease-out;
}

/* ========================================
   HERO TYPOGRAPHY
   ======================================== */

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-primary);
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: var(--font-weight-normal);
    font-family: var(--font-secondary);
    margin-bottom: var(--spacing-2xl);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Destaque especial no título */
.hero-title .highlight {
    color: var(--color-primary);
    display: inline-block;
    position: relative;
}

.hero-title .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--color-primary);
    animation: underlineGrow 0.8s ease-out 0.5s both;
}

/* ========================================
   HERO CTA BUTTONS
   ======================================== */

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-2xl);
}

.hero-cta .btn {
    min-width: 200px;
    font-size: var(--font-size-lg);
    padding: 1rem 2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta .btn:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-cta .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Botão primário no hero */
.hero-cta .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.hero-cta .btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* Botão outline no hero com fundo */
.hero-cta .btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    color: var(--color-white);
    backdrop-filter: blur(10px);
}

.hero-cta .btn-outline:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary);
}

/* ========================================
   HERO INFO BADGES
   ======================================== */

.hero-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.hero-info-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.hero-info-icon {
    font-size: var(--font-size-3xl);
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    flex-shrink: 0;
}

.hero-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
    text-align: center;
    align-items: center;
}

.hero-info-value {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1.2;
}

.hero-info-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fadeIn 1s ease-out 1s both;
}

.hero-scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
}

.hero-scroll-btn:hover {
    transform: translateY(4px);
}

.hero-scroll-text {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
}

.hero-scroll-icon {
    font-size: var(--font-size-2xl);
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* ========================================
   HERO VARIANTS
   ======================================== */

/* Hero com altura reduzida (para páginas internas) */
.hero-small {
    min-height: 60vh;
}

.hero-small .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
}

.hero-small .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

/* Hero com vídeo de fundo */
.hero-video {
    position: relative;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video::before {
    z-index: 1;
}

/* ========================================
   HERO RESPONSIVIDADE
   ======================================== */

@media (max-width: 992px) {
    .hero {
        min-height: 80vh;
        padding-top: 80px; /* Espaço para o header fixo */
        background-attachment: scroll;
    }

    .hero-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .hero-info {
        gap: var(--spacing-md);
    }

    .hero-info-item {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .hero-info-icon {
        font-size: var(--font-size-2xl);
    }

    .hero-info-value {
        font-size: var(--font-size-xl);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding-top: 80px; /* Espaço para o header fixo */
        background-attachment: scroll;
    }

    .hero::after {
        display: none; /* Remove efeito de partículas em mobile */
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        font-size: var(--font-size-base);
        padding: 0.875rem 1.5rem;
    }

    .hero-info {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-top: var(--spacing-2xl);
    }

    .hero-info-item {
        width: 100%;
        max-width: 300px;
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .hero-info-icon {
        font-size: var(--font-size-2xl);
    }

    .hero-info-value {
        font-size: var(--font-size-xl);
    }

    .hero-info-label {
        font-size: 0.75rem;
    }

    .hero-scroll {
        bottom: 40px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 100vh;
        padding-top: 80px; /* Espaço para o header fixo */
        background-attachment: scroll;
    }

    .hero-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .hero-title {
        margin-bottom: var(--spacing-md);
    }

    .hero-subtitle {
        margin-bottom: var(--spacing-xl);
    }

    .hero-cta {
        margin-top: var(--spacing-xl);
    }

    .hero-info {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-xl);
    }

    .hero-info-item {
        width: 100%;
        max-width: 300px;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .hero-info-icon {
        font-size: var(--font-size-xl);
    }

    .hero-info-value {
        font-size: var(--font-size-lg);
        font-weight: 700;
    }

    .hero-info-label {
        font-size: 0.6875rem;
        line-height: 1.2;
    }

    .hero-scroll {
        bottom: 30px;
    }
}

/* ========================================
   HERO PERFORMANCE E ACESSIBILIDADE
   ======================================== */

/* Reduzir animações para usuários que preferem */
@media (prefers-reduced-motion: reduce) {
    .hero,
    .hero-content,
    .hero-cta .btn,
    .hero-info,
    .hero-scroll {
        animation: none;
    }

    .hero-scroll-icon {
        animation: none;
    }

    .hero::after {
        animation: none;
    }
}

/* Melhorar contraste para acessibilidade */
@media (prefers-contrast: high) {
    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }

    .hero-title,
    .hero-subtitle {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
    }
}

/* ===================================
   Seção Sobre
   =================================== */

.about-section {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-color) 20%,
        var(--border-color) 80%,
        transparent
    );
}

/* ===================================
   Cabeçalho da Seção
   =================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    width: auto;
}

.about-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--color-primary);
    width: 0;
    left: 50%;
    transition: none;
}

.about-section .section-title.title-visible::after {
    animation: underlineGrow 0.8s ease-out 0.3s both;
}

@keyframes underlineGrow {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Grid de Cards
   =================================== */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.about-card-main {
    grid-column: 1 / -1;
    background: var(--white);
    border: 2px solid var(--primary-color);
    position: relative;
}

.about-card-main::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(
        135deg,
        rgba(200, 16, 46, 0.03) 0%,
        rgba(69, 123, 157, 0.03) 100%
    );
    border-radius: 16px;
    z-index: 0;
    pointer-events: none;
}

.about-card-main > * {
    position: relative;
    z-index: 1;
}

.about-card-main h3,
.about-card-main p {
    color: var(--text-dark);
}

.about-card-main p {
    color: var(--text-muted);
}

.about-card-main .about-icon {
    background: var(--primary-light);
    border: 2px solid var(--primary-color);
}

.about-card-main .about-icon i {
    color: var(--primary-color);
}

/* ===================================
   Ícones dos Cards
   =================================== */

.about-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: none;
    transition: all 0.3s ease;
}

.about-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.about-card:hover .about-icon {
    transform: scale(1.05);
    background: var(--color-primary);
}

.about-card:hover .about-icon i {
    color: #ffffff;
}

/* ===================================
   Conteúdo dos Cards
   =================================== */

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-card p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-card-main p strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* ===================================
   Lista de Features
   =================================== */

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

/* ===================================
   Citação Winston Churchill
   =================================== */

.churchill-quote {
    max-width: 750px;
    margin: 50px auto;
    padding: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.churchill-quote::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(200, 16, 46, 0.2) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
}

.quote-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-weight: 500;
    text-align: center;
}

.quote-author {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-style: normal;
    text-align: center;
}

/* ===================================
   Estatísticas - Fundo Full Width
   =================================== */

.about-stats-wrapper {
    margin: 0;
    padding: 100px 0;
    background: #1a1f3a;
    background-image: linear-gradient(
            135deg,
            rgba(26, 31, 58, 0.65) 0%,
            rgba(17, 24, 39, 0.7) 100%
        ),
        url("https://armazupleilaovipprd.blob.core.windows.net/uploads/230df6e4-b354-4647-9e87-764368f31bb5.jpg?w=1920&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-stats-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.stats-header h3 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 1;
    position: relative;
    display: inline-block;
}

.stats-header h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--color-primary);
    width: 0;
    left: 50%;
    transition: none;
}

.stats-header h3.title-visible::after {
    animation: underlineGrow 0.8s ease-out 0.3s both;
}

.stats-header p {
    font-size: 1.125rem;
    color: #e5e7eb;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 36px;
    color: #ffffff;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
    opacity: 1;
}

.stat-number {
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stat-label {
    font-size: 0.95rem;
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

/* ===================================
   Call to Action
   =================================== */

.about-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(
        135deg,
        rgba(200, 16, 46, 0.03) 0%,
        rgba(69, 123, 157, 0.03) 100%
    );
    border-radius: 20px;
    border: 2px solid rgba(200, 16, 46, 0.1);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(200, 16, 46, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Sobrescreve cores do CTA genérico para fundo claro */
.about-cta .cta-text {
    color: var(--text-dark);
}

.about-cta .cta-subtitle {
    color: var(--text-dark);
}

.about-cta .cta-subtitle-line {
    display: block;
}

/* ===================================
   Responsividade
   =================================== */

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

    .about-card-main {
        grid-column: 1 / -1;
    }

    .about-card {
        padding: 32px 24px;
    }

    .about-icon {
        width: 56px;
        height: 56px;
        border-radius: 10px;
    }

    .about-icon i {
        font-size: 24px;
    }

    .about-stats-wrapper {
        padding: 80px 0;
        margin: 0;
        background-attachment: scroll;
    }

    .stats-header {
        margin-bottom: 40px;
    }

    .about-stats {
        gap: 25px;
    }

    .stat-item {
        padding: 35px 25px;
    }

    .stat-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .stat-icon i {
        font-size: 30px;
    }

    .churchill-quote {
        padding: 30px 20px;
        margin: 40px auto;
    }

    .quote-icon {
        font-size: 2.5rem;
        top: 10px;
        left: 15px;
    }

    .quote-text {
        font-size: 1.15rem;
    }

    .about-cta {
        padding: 40px 20px 0;
    }

    .about-cta .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        margin-top: 30px;
    }

    .about-cta .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .about-cta .cta-buttons .btn:not(:last-child) {
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 50px;
    }

    .about-card {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .about-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
        border-radius: 10px;
    }

    .about-icon i {
        font-size: 22px;
    }

    .about-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .about-card p {
        font-size: 0.95rem;
    }

    .features-list li {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .about-stats-wrapper {
        padding: 70px 0;
        margin: 0;
        background-attachment: scroll;
    }

    .stats-header {
        margin-bottom: 30px;
    }

    .stats-header h3 {
        font-size: 1.75rem;
    }

    .stats-header p {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .stat-icon i {
        font-size: 26px;
    }

    .stat-number {
        font-size: 2.25rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .churchill-quote {
        padding: 28px 22px;
        margin: 35px auto;
        border-radius: 8px;
    }

    .quote-icon {
        font-size: 22px;
        top: 8px;
        left: 12px;
    }

    .quote-text {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .quote-author {
        font-size: 0.9rem;
    }

    .about-cta {
        padding: 60px 30px;
        margin-top: 40px;
    }

    .about-cta .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        margin-top: 30px;
    }

    .about-cta .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .about-cta .cta-buttons .btn:not(:last-child) {
        margin-bottom: 8px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .about-card {
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .about-card:nth-child(1) {
        animation-delay: 0.1s;
    }
    .about-card:nth-child(2) {
        animation-delay: 0.2s;
    }
    .about-card:nth-child(3) {
        animation-delay: 0.3s;
    }
    .about-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .stat-item {
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .stat-item:nth-child(1) {
        animation-delay: 0.1s;
    }
    .stat-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    .stat-item:nth-child(3) {
        animation-delay: 0.3s;
    }
    .stat-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
