/* About Page Styles */

.about-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #667eea 50%, #764ba2 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(96, 165, 250, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
}

.about-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.about-content {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: calc(100vh - 300px);
}

.about-section {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #667eea);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-section:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.about-section:hover::before {
    transform: scaleX(1);
}

.about-section .section-header {
    margin-bottom: 2rem;
}

.about-section .section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: -0.01em;
}

.about-section .section-header h2 i {
    color: var(--primary-color);
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(102, 126, 234, 0.1));
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    color: var(--text-secondary);
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.offer-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc, #f0f4f8);
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #667eea);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offer-card:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
    background: white;
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
    position: relative;
}

.offer-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #93c5fd, #3b82f6);
    border-radius: 21px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover .offer-icon::after {
    opacity: 1;
}

.offer-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.offer-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.08));
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.highlight-box p {
    margin: 0;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

/* Reason Cards */
.reason-card {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc, #f0f4f8);
    border-radius: 18px;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #667eea);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.reason-card:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.12);
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
}

.reason-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.reason-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.principle-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc, #f0f4f8);
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.principle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #667eea);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.principle-item:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
    background: white;
}

.principle-item:hover::before {
    transform: scaleX(1);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
    position: relative;
}

.principle-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #93c5fd, #3b82f6);
    border-radius: 21px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.principle-item:hover .principle-icon::after {
    opacity: 1;
}

.principle-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.principle-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Company Info */
.company-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.info-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(59, 130, 246, 0.1);
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.badge:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-4px);
}

.badge i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
}

.badge span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Disclaimer Box */
.disclaimer-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.08));
    border-left: 4px solid #ef4444;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.15);
    position: relative;
    overflow: hidden;
}

.disclaimer-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.disclaimer-box p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0;
        margin-top: 70px;
    }

    .about-hero .hero-content h1 {
        font-size: 2rem;
    }

    .about-hero .hero-content p {
        font-size: 1rem;
    }

    .about-content {
        padding: 2rem 0;
    }

    .about-section {
        padding: 1.5rem;
    }

    .about-section .section-header h2 {
        font-size: 1.5rem;
    }

    .offers-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        flex-direction: column;
        text-align: center;
    }

    .reason-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-content h1 {
        font-size: 1.5rem;
    }

    .about-section {
        padding: 1rem;
    }

    .about-section .section-header h2 {
        font-size: 1.3rem;
    }

    .offer-icon,
    .principle-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .reason-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .highlight-box,
    .disclaimer-box {
        padding: 1rem;
    }
}
