/* ============================================
   SECUREVERIFY — ABOUT PAGE STYLES
   ============================================ */

/* ---- ABOUT HERO ---- */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #0A2540 0%, #1B3A5C 50%, #0D2F4F 100%);
    overflow: hidden;
    padding-bottom: 60px;
}

/* Hero Background Image */
.about-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 1;
}

.about-hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.about-hero-particles .particle {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(212, 168, 67, .3);
    animation: float-particle linear infinite;
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, .06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(37, 99, 235, .06) 0%, transparent 50%);
    z-index: 0;
}

.about-hero .container { z-index: 2; }

.about-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    font-family: 'Playfair Display', serif;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .65);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb-custom {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 0;
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--gold);
    font-size: .85rem;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .3);
}

/* Wave */
.wave-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.wave-separator svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ============================================
   OUR STORY SECTION
   ============================================ */

.story-image-wrapper {
    position: relative;
    padding: 20px;
}

.story-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.story-visual {
    background: linear-gradient(135deg, #0A2540, #1B3A5C);
    padding: 50px 30px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon-grid {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.visual-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    color: var(--white);
    min-width: 90px;
    transition: var(--transition);
}

.visual-icon-item:hover {
    background: rgba(212, 168, 67, .15);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.visual-icon-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

.visual-icon-item span {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Floating Stat Cards */
.story-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.story-float-card strong {
    display: block;
    font-size: .95rem;
    color: var(--primary);
    line-height: 1;
}

.story-float-card span {
    font-size: .72rem;
    color: var(--gray-500);
}

.float-card-1 {
    top: -10px;
    right: -10px;
}

.float-card-2 {
    bottom: -10px;
    left: -10px;
    animation-delay: 3s;
}

.sfc-icon {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
}

/* Story Highlights */
.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(212, 168, 67, .08);
    transform: translateX(4px);
}

.highlight-item i {
    font-size: 1.2rem;
}

.text-gold {
    color: var(--gold) !important;
}

.highlight-item strong {
    display: block;
    font-size: .88rem;
    color: var(--primary);
}

.highlight-item span {
    font-size: .78rem;
    color: var(--gray-500);
}

/* ============================================
   MISSION, VISION, VALUES
   ============================================ */

.mvv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.vision-card::before {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.values-card::before {
    background: linear-gradient(135deg, var(--purple), #6D28D9);
}

.mvv-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.mvv-icon {
    width: 70px; height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(212, 168, 67, .3);
}

.mvv-icon.vision-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    box-shadow: 0 8px 20px rgba(37, 99, 235, .3);
}

.mvv-icon.values-icon {
    background: linear-gradient(135deg, var(--purple), #6D28D9);
    box-shadow: 0 8px 20px rgba(124, 58, 237, .3);
}

.mvv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.mvv-card p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.mvv-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 16px;
}

.mvv-list li {
    padding: 8px 0;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.mvv-list li:last-child { border-bottom: none; }

.mvv-list li i {
    color: var(--green);
    font-size: .8rem;
    min-width: 16px;
}

/* ============================================
   IMPACT / STATS SECTION
   ============================================ */

.impact-section {
    background: linear-gradient(135deg, #0A2540 0%, #1B3A5C 100%);
    position: relative;
}

.impact-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 30px 16px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.impact-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-6px);
    border-color: var(--gold);
}

.impact-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.impact-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1;
}

.impact-card p {
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ============================================
   JOURNEY / MILESTONES TIMELINE
   ============================================ */

.journey-timeline {
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.journey-track {
    display: flex;
    gap: 0;
    position: relative;
    min-width: 900px;
    padding: 40px 20px 60px;
}

.journey-line {
    position: absolute;
    bottom: 52px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--blue), var(--green), var(--purple), var(--gold));
    border-radius: 3px;
    z-index: 0;
}

.milestone-card {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.milestone-year {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    position: absolute;
    bottom: -5px;
    background: var(--white);
    padding: 0 8px;
}

.milestone-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
    position: absolute;
    bottom: 0;
    z-index: 2;
    transition: var(--transition);
}

.milestone-dot.dot-current {
    background: var(--green);
    box-shadow: 0 0 0 3px var(--green), 0 0 0 8px rgba(16, 185, 129, .2);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px var(--green), 0 0 0 8px rgba(16, 185, 129, .2); }
    50%      { box-shadow: 0 0 0 3px var(--green), 0 0 0 16px rgba(16, 185, 129, .1); }
}

.milestone-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    margin-bottom: 30px;
    text-align: center;
    transition: var(--transition);
    width: 100%;
}

.milestone-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.milestone-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 12px;
    font-size: 1.2rem;
    background: rgba(212, 168, 67, .1);
    color: var(--gold);
}

.milestone-icon.icon-blue   { background: rgba(37, 99, 235, .1);  color: var(--blue); }
.milestone-icon.icon-green  { background: rgba(16, 185, 129, .1); color: var(--green); }
.milestone-icon.icon-purple { background: rgba(124, 58, 237, .1); color: var(--purple); }
.milestone-icon.icon-gold   { background: rgba(212, 168, 67, .1); color: var(--gold); }

.milestone-icon.icon-current {
    background: linear-gradient(135deg, var(--green), #059669);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, .3);
}

.milestone-content h5 {
    font-size: .95rem;
    margin-bottom: 8px;
}

.milestone-content p {
    font-size: .8rem;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-card:hover .team-social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-avatar {
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A2540, #1B3A5C);
    color: rgba(255, 255, 255, .3);
    font-size: 4rem;
}

.avatar-placeholder.avatar-female {
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
}

.avatar-placeholder.avatar-alt {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.avatar-placeholder.avatar-blue {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
}

.team-social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.team-social-overlay a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.team-social-overlay a:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.team-info {
    padding: 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-info h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-role {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-info p {
    font-size: .85rem;
    color: var(--gray-500);
    flex-grow: 1;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
}

.team-tags span {
    padding: 3px 12px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Team Overview Stats */
.team-overview {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 40px;
}

.team-stat i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.team-stat h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.team-stat p {
    color: rgba(255, 255, 255, .6);
    font-size: .82rem;
    margin-bottom: 0;
}

/* ============================================
   DIFFERENTIATORS SECTION
   ============================================ */

.diff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.diff-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.diff-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.diff-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.3rem;
    margin-bottom: 16px;
    background: rgba(37, 99, 235, .1);
    color: var(--blue);
}

.diff-icon.icon-purple { background: rgba(124, 58, 237, .1); color: var(--purple); }
.diff-icon.icon-green  { background: rgba(16, 185, 129, .1); color: var(--green); }
.diff-icon.icon-orange { background: rgba(245, 158, 11, .1); color: var(--orange); }
.diff-icon.icon-cyan   { background: rgba(6, 182, 212, .1);  color: var(--cyan); }
.diff-icon.icon-red    { background: rgba(239, 68, 68, .1);  color: var(--red); }

.diff-card h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.diff-card p {
    font-size: .88rem;
    color: var(--gray-500);
    flex-grow: 1;
    line-height: 1.6;
}

.diff-stat {
    margin-top: 16px;
}

.diff-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-100);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
}

.diff-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 6px;
    transition: width 1.5s ease;
    width: 0; /* animated via JS */
}

.diff-bar.bar-purple .diff-bar-fill { background: linear-gradient(135deg, var(--purple), #6D28D9); }
.diff-bar.bar-green .diff-bar-fill  { background: linear-gradient(135deg, var(--green), #059669); }
.diff-bar.bar-orange .diff-bar-fill { background: linear-gradient(135deg, var(--orange), #D97706); }
.diff-bar.bar-cyan .diff-bar-fill   { background: linear-gradient(135deg, var(--cyan), #0891B2); }
.diff-bar.bar-red .diff-bar-fill    { background: linear-gradient(135deg, var(--red), #DC2626); }

.diff-stat span {
    font-size: .75rem;
    color: var(--gray-500);
}

/* ============================================
   PARTNERS & CERTIFICATIONS
   ============================================ */

.partner-heading {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    font-weight: 600;
}

.partner-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.partner-logo-item {
    flex: 0 0 auto;
}

.partner-logo-placeholder {
    width: 130px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
    gap: 4px;
    cursor: default;
}

.partner-logo-placeholder:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.partner-logo-placeholder i {
    font-size: 1.3rem;
    color: var(--primary);
}

.partner-logo-placeholder span {
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
}

/* Certifications */
.cert-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.cert-icon {
    width: 50px; height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, .1);
    color: var(--blue);
    font-size: 1.2rem;
}

.cert-icon.cert-rbi  { background: rgba(10, 37, 64, .1);    color: var(--primary); }
.cert-icon.cert-gdpr { background: rgba(16, 185, 129, .1);  color: var(--green); }
.cert-icon.cert-bis  { background: rgba(212, 168, 67, .1);  color: var(--gold-dark); }
.cert-icon.cert-ssl  { background: rgba(124, 58, 237, .1);  color: var(--purple); }
.cert-icon.cert-soc  { background: rgba(6, 182, 212, .1);   color: var(--cyan); }

.cert-card h6 {
    font-size: .85rem;
    margin-bottom: 4px;
}

.cert-card p {
    font-size: .75rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: var(--gray-100);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-stars {
    margin-bottom: 16px;
    color: var(--orange);
    font-size: .9rem;
}

.testimonial-text {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

.testimonial-author strong {
    display: block;
    font-size: .9rem;
    color: var(--primary);
}

.testimonial-author span {
    font-size: .78rem;
    color: var(--gray-500);
}

.testimonial-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    background: rgba(37, 99, 235, .08);
    color: var(--blue);
}

.testimonial-tag.tag-gold {
    background: rgba(212, 168, 67, .08);
    color: var(--gold-dark);
}

.testimonial-tag.tag-purple {
    background: rgba(124, 58, 237, .08);
    color: var(--purple);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-accordion {
    border: none;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    border: 1px solid var(--gray-200) !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-item .accordion-button {
    font-weight: 600;
    font-size: .95rem;
    color: var(--primary);
    background: var(--white);
    border: none;
    padding: 18px 24px;
    box-shadow: none !important;
}

.faq-item .accordion-button:not(.collapsed) {
    background: rgba(212, 168, 67, .04);
    color: var(--primary);
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4A843'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-item .accordion-body {
    padding: 0 24px 20px;
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.8;
}

.faq-item .accordion-body ul,
.faq-item .accordion-body ol {
    padding-left: 20px;
}

.faq-item .accordion-body li {
    padding: 3px 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--off-white);
}

.cta-card {
    background: linear-gradient(135deg, #0A2540, #1B3A5C);
    border-radius: var(--radius-lg);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(212, 168, 67, .06);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .05);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.cta-features {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
}

.cta-buttons {
    position: relative;
    z-index: 2;
}

.cta-note {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    position: relative;
    z-index: 2;
}

/* ============================================
   RESPONSIVE — ABOUT PAGE
   ============================================ */

@media (max-width: 991px) {
    .about-hero-title { font-size: 2.3rem; }
    .cta-card { padding: 35px; }
    .cta-title { font-size: 1.6rem; }
}

@media (max-width: 767px) {
    .about-hero-title { font-size: 1.8rem; }
    .about-hero-subtitle { font-size: .95rem; }
    .mvv-card { padding: 25px 20px; }
    .milestone-content { padding: 14px; }
    .milestone-content h5 { font-size: .85rem; }
    .milestone-content p { font-size: .75rem; }
    .cta-card { padding: 25px; }
    .cta-title { font-size: 1.4rem; }
    .story-float-card { display: none; }
    .partner-logo-placeholder { width: 100px; height: 60px; }
}

@media (max-width: 575px) {
    .about-hero-title { font-size: 1.5rem; }
    .team-avatar { height: 180px; }
    .impact-number { font-size: 1.5rem; }
}