/* ============================================
   ABOUT US PAGE STYLES - Masha International
   ============================================ */

/* Hero Section */
.about-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
}

.about-hero .gradient-mesh {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
    z-index: 0;
}

.about-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.about-hero h1 span {
    display: block;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.25rem;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--soft-blue), white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--deep-blue);
    font-size: 1rem;
}

.trust-text span {
    font-size: 0.85rem;
    color: #64748b;
}

/* Trust Orb Animation */
.trust-orb {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 255, 0.1);
    animation: orbRotate 20s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 102, 255, 0.15);
    animation-duration: 20s;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(0, 212, 255, 0.2);
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(0, 102, 255, 0.25);
    animation-duration: 10s;
}

.orb-core {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.orb-core svg {
    width: 40px;
    height: 40px;
}

/* Who We Are Section */
.who-we-are {
    padding: 8rem 5%;
    padding-bottom: 4rem;
    background: var(--pure-white);
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.story-content .section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.story-content .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--deep-blue);
}

.story-text .lead {
    font-size: 1.3rem;
    color: var(--deep-blue);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.story-text .highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.story-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

.story-stat {
    display: flex;
    flex-direction: column;
}

.story-stat .stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.story-stat .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-left: 2rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-cyan));
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.timeline-item.active,
.timeline-item:hover {
    opacity: 1;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    transform: translateX(-7px);
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot,
.timeline-item:hover .timeline-dot {
    background: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.2);
    transform: translateX(-7px) scale(1.2);
}

.timeline-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: -5rem;
    top: 0.25rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 8rem 5%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, var(--soft-blue) 0%, var(--pure-white) 100%);
}

.vm-container {
    max-width: 1400px;
    margin: 0 auto;
}

.vm-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.vm-header .section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.vm-header .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vm-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.15);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--soft-blue), white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.vm-icon svg {
    width: 35px;
    height: 35px;
}

.vm-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.vm-statement {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vm-statement strong {
    color: var(--deep-blue);
    font-weight: 600;
}

.vm-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vm-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #64748b;
}

.vm-points li::before {
    content: '→';
    color: var(--primary-blue);
    font-weight: 700;
}

/* Core Values Section */
.core-values {
    padding: 8rem 5%;
    padding-top: 4rem;
    background: var(--pure-white);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.values-header .section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.values-header .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.values-header .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

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

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
    border-color: var(--primary-blue);
}

.value-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(0, 102, 255, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    transform: scale(1.1);
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.value-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.value-card:hover .value-hover {
    transform: translateY(0);
}

.value-hover span {
    font-size: 0.9rem;
    font-weight: 600;
    font-style: italic;
}

/* Compliance Section */
.compliance-section {
    padding: 8rem 5%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #1a2744 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.compliance-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.compliance-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.compliance-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.compliance-header .section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.compliance-header .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.compliance-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.compliance-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.secp-card {
    height: 100%;
}

.compliance-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.badge-status {
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.compliance-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.compliance-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.compliance-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.detail-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 600;
    color: white;
}

.status-active {
    color: #10b981;
}

.compliance-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.member-card .member-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.member-card .member-icon svg {
    width: 24px;
    height: 24px;
}

.member-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.member-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.member-id {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-cyan);
}

.security-card .security-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.security-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.security-list li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: 700;
}

.trust-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-stats {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.trust-stat-item {
    text-align: center;
    flex: 1;
}

.t-stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.t-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Leadership Section */
.leadership-section {
    padding: 8rem 5%;
    padding-top: 4rem;
    background: var(--pure-white);
}

.leadership-container {
    max-width: 1200px;
    margin: 0 auto;
}

.leadership-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.leadership-header .section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.leadership-header .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.leadership-header .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

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

.leader-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}
.avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover; /* Yeh ensure karega k image stretch na ho */
    object-position: center top; /* Face center mein rahe */
    border: 3px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.leader-card:hover .avatar-img {
    transform: scale(1.1);
}
.leader-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.leader-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.leader-title {
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-bio {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.about-cta-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
}

.about-cta-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta-container > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--deep-blue);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(5px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .story-visual {
        order: -1;
    }

    .timeline-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

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

    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 6rem 5% 3rem;
        text-align: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .trust-orb {
        width: 200px;
        height: 200px;
    }

    .story-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .compliance-card {
        padding: 1.5rem;
    }

    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}