/* ===================================
   ROOT VARIABLES (Matching Home Page)
   =================================== */
:root {
    --primary-navy: #0F2438;
    --primary-teal: #1A5F7A;
    --accent-emerald: #159895;
    --accent-gold: #D4AF37;
    --accent-mint: #57C5B6;
    --light-cream: #F8F6F0;
    --soft-beige: #EDE8DC;
    --warm-gold: #B8860B;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   ABOUT HERO SECTION
   =================================== */
.about-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(135deg,
            var(--primary-navy) 0%,
            var(--primary-teal) 40%,
            var(--accent-emerald) 70%,
            var(--accent-mint) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-gold);
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 30%; top: 40%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 50%; top: 60%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 70%; top: 30%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 80%; top: 70%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 40%; top: 90%; animation-delay: 4.5s; animation-duration: 19s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.7;
    }
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(87, 197, 182, 0.1), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 20px;
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.badge-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

/* FIXED: Keep "Thy Gifted Neighbor" text solid white, no gradient/fading */
.highlight-text {
    color: var(--white);
    font-weight: 800;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.stat-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===================================
   MISSION SECTION
   =================================== */
.mission-section {
    padding: 120px 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 36, 56, 0.7), rgba(21, 152, 149, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 4rem;
    color: var(--white);
    transform: scale(0);
    transition: var(--transition-smooth);
}

.image-wrapper:hover .overlay-icon {
    transform: scale(1);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 280px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.card-content p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-title.light {
    color: var(--white);
}

.mission-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--light-cream);
    border-radius: 15px;
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-emerald));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===================================
   VISION SECTION
   =================================== */
.vision-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal));
    overflow: hidden;
}

.vision-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.vision-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vision-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 60px;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
    margin: 0 auto 25px;
    transition: var(--transition-fast);
}

.pillar-card:hover .pillar-icon {
    transform: rotateY(360deg);
}

.pillar-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   ORIGIN SECTION
   =================================== */
.origin-section {
    padding: 120px 0;
    background: var(--light-cream);
}

.origin-header {
    text-align: center;
    margin-bottom: 60px;
}

.origin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.story-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
}

.story-card h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 600;
}

.story-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.metaphor-visual {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    padding: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.seed-animation {
    position: relative;
    text-align: center;
}

.seed {
    font-size: 4rem;
    color: var(--white);
    animation: seedGrow 3s infinite ease-in-out;
}

@keyframes seedGrow {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.2) translateY(-10px);
    }
}

.growth-lines {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.line {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    margin: 5px auto;
    animation: lineGrow 2s infinite ease-in-out;
}

.line:nth-child(2) {
    animation-delay: 0.3s;
}

.line:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes lineGrow {
    0%, 100% {
        height: 20px;
        opacity: 0.3;
    }
    50% {
        height: 40px;
        opacity: 1;
    }
}

.flowers {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.flowers i {
    font-size: 2rem;
    color: var(--accent-gold);
    animation: flowerBloom 3s infinite ease-in-out;
}

.flowers i:nth-child(2) {
    animation-delay: 0.5s;
}

.flowers i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes flowerBloom {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

.metaphor-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.metaphor-content h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 600;
}

.metaphor-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.metaphor-highlight {
    background: var(--light-cream);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 25px;
    position: relative;
}

.metaphor-highlight i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.metaphor-highlight p {
    font-size: 1.05rem;
    color: var(--primary-navy);
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

/* ===================================
   TEAM INTRO SECTION
   =================================== */
.team-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.team-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--white);
    margin: 0 auto 30px;
    box-shadow: var(--shadow-lg);
}

.team-intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   FOUNDERS SECTION
   =================================== */
.founders-section {
    padding: 120px 0;
    background: var(--light-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.founders-image-section {
    margin-bottom: 80px;
}

.founders-image-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
}

.founders-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent-gold);
    border-radius: 30px;
    pointer-events: none;
    z-index: 1;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.founder-profile {
    margin-bottom: 60px;
}

.profile-content {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light-cream);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-emerald));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
    flex-shrink: 0;
}

.profile-title h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.profile-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.role-badge {
    padding: 6px 15px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.profile-body p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.profile-impact {
    margin-top: 35px;
    padding: 30px;
    background: var(--light-cream);
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.impact-text h4 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.impact-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal), var(--accent-emerald));
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.cta-particles .particle:nth-child(1) {
    left: 20%;
    top: 20%;
    animation-delay: 0s;
}

.cta-particles .particle:nth-child(2) {
    left: 80%;
    top: 60%;
    animation-delay: 2s;
}

.cta-particles .particle:nth-child(3) {
    left: 50%;
    top: 80%;
    animation-delay: 4s;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--accent-gold);
    margin: 0 auto 30px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span,
.cta-btn i {
    position: relative;
    z-index: 1;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3rem;
    }

    .mission-grid,
    .origin-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .floating-card {
        position: static;
        margin-top: 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .profile-content {
        padding: 35px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 80px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-content h3 {
        font-size: 2rem;
    }

    .mission-section,
    .vision-section,
    .origin-section,
    .team-intro-section,
    .founders-section,
    .cta-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .mission-text,
    .vision-description {
        font-size: 1rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .vision-pillars {
        grid-template-columns: 1fr;
    }

    .story-card,
    .metaphor-content {
        padding: 30px;
    }

    .metaphor-visual {
        padding: 40px;
        min-height: 250px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-content {
        padding: 25px;
    }

    .profile-title h3 {
        font-size: 1.6rem;
    }

    .profile-roles {
        justify-content: center;
    }

    .profile-impact {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-badge,
    .section-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .story-card,
    .metaphor-content {
        padding: 20px;
    }

    .profile-content {
        padding: 20px;
    }

    .image-frame {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .about-hero-particles,
    .about-hero-overlay,
    .scroll-indicator,
    .vision-bg-shapes,
    .cta-particles,
    .particle {
        display: none;
    }

    body {
        background: white;
    }

    .section-title {
        color: black;
    }
}