    /* ====== CSS Variables ====== */
        :root {
            --strela-dark: #1a2744;
            --strela-navy: #152238;
            --strela-blue: #1e3a5f;
            --strela-deep: #0f1824;
            --strela-yellow: #ffc72c;
            --strela-gold: #e6b800;
            --strela-amber: #d4a00d;
            --strela-light: #f8fafc;
            --strela-text: #e8eef4;
            --strela-muted: #8a9bb3;
            --glass-bg: rgba(30, 58, 95, 0.25);
            --glass-border: rgba(255, 199, 44, 0.15);
            --glass-shadow: rgba(0, 0, 0, 0.3);
        }

        /* ====== Reset ====== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        /* ====== Body ====== */
        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(180deg, var(--strela-dark) 0%, var(--strela-navy) 30%, var(--strela-deep) 100%);
            min-height: 100vh;
            color: var(--strela-text);
            overflow-x: hidden;
            padding-top: 70px;
        }

        /* ====== Animated Background ====== */
        .page-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .bg-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .bg-gradient-orb:nth-child(1) {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 199, 44, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -100px;
            animation-delay: 0s;
        }

        .bg-gradient-orb:nth-child(2) {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(30, 58, 95, 0.4) 0%, transparent 70%);
            bottom: 20%;
            left: -150px;
            animation-delay: -7s;
        }

        .bg-gradient-orb:nth-child(3) {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 199, 44, 0.1) 0%, transparent 70%);
            top: 50%;
            right: -100px;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(-20px, 20px) scale(0.95); }
            75% { transform: translate(20px, 30px) scale(1.02); }
        }

        /* Grid Pattern Overlay */
        .grid-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 199, 44, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 199, 44, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: -1;
        }

        /* ====== Main Container ====== */
        .about-page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px 80px;
        }

        /* ====== Hero Section ====== */
        .hero-section {
            text-align: center;
            padding: 60px 20px 80px;
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(255, 199, 44, 0.2), rgba(230, 184, 0, 0.1));
            border: 1px solid rgba(255, 199, 44, 0.3);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--strela-yellow);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-badge i {
            font-size: 14px;
        }

        .hero-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(42px, 8vw, 72px);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .hero-title .text-white {
            color: white;
            display: block;
        }

        .hero-title .text-gradient {
            background: linear-gradient(135deg, var(--strela-yellow) 0%, var(--strela-gold) 50%, var(--strela-amber) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(16px, 2.5vw, 20px);
            color: var(--strela-muted);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--strela-yellow), var(--strela-gold));
            color: var(--strela-dark);
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 199, 44, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 199, 44, 0.4);
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--strela-yellow);
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid rgba(255, 199, 44, 0.4);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 199, 44, 0.1);
            border-color: var(--strela-yellow);
            transform: translateY(-3px);
        }

        /* ====== Stats Section ====== */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 0.8s ease 0.8s forwards;
        }

        .stat-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--strela-yellow), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 199, 44, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 199, 44, 0.2), rgba(255, 199, 44, 0.05));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 26px;
            color: var(--strela-yellow);
            transition: transform 0.3s ease;
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: white;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-number .counter {
            display: inline-block;
        }

        .stat-label {
            font-size: 14px;
            color: var(--strela-muted);
            font-weight: 500;
        }

        /* ====== Glass Card Base ====== */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
        }

        .glass-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .glass-card:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--strela-yellow), var(--strela-gold), transparent);
        }

        /* Decorative corner glow */
        .glass-card::after {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(255, 199, 44, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        /* ====== Section Headers ====== */
        .section-header {
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            color: var(--strela-yellow);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 12px;
        }

        .section-tag::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--strela-yellow);
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 700;
            color: white;
            line-height: 1.2;
        }

        .section-title span {
            color: var(--strela-yellow);
        }

        /* ====== About Section ====== */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-text p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--strela-text);
            margin-bottom: 20px;
        }

        .about-text p:last-child {
            margin-bottom: 0;
        }

        .about-features {
            display: grid;
            gap: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: rgba(255, 199, 44, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(255, 199, 44, 0.1);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255, 199, 44, 0.1);
            transform: translateX(8px);
            border-color: rgba(255, 199, 44, 0.2);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--strela-yellow), var(--strela-gold));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--strela-dark);
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }

        .feature-text p {
            font-size: 14px;
            color: var(--strela-muted);
            margin: 0;
        }

        /* ====== Goals Section ====== */
        .goals-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

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

        @media (min-width: 901px) {
            .goals-grid.goals-grid--four {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .goal-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 199, 44, 0.1);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .goal-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--strela-yellow), var(--strela-gold));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .goal-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 199, 44, 0.08);
            border-color: rgba(255, 199, 44, 0.25);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

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

        .goal-number {
            font-family: 'Oswald', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: rgba(255, 199, 44, 0.15);
            position: absolute;
            top: 16px;
            right: 20px;
        }

        .goal-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(255, 199, 44, 0.15), rgba(255, 199, 44, 0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--strela-yellow);
            transition: all 0.4s ease;
        }

        .goal-card:hover .goal-icon {
            transform: scale(1.15) rotate(-5deg);
            background: linear-gradient(135deg, var(--strela-yellow), var(--strela-gold));
            color: var(--strela-dark);
        }

        .goal-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }

        .goal-card p {
            font-size: 14px;
            color: var(--strela-muted);
            line-height: 1.6;
        }

        /* ====== Timeline / Plans Section ====== */
        .timeline {
            position: relative;
            padding-left: 40px;
            z-index: 1;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--strela-yellow), var(--strela-gold), transparent);
        }

        .timeline-item {
            position: relative;
            padding-bottom: 40px;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: -33px;
            top: 6px;
            width: 16px;
            height: 16px;
            background: var(--strela-yellow);
            border-radius: 50%;
            border: 3px solid var(--strela-dark);
            box-shadow: 0 0 0 4px rgba(255, 199, 44, 0.2);
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-dot {
            transform: scale(1.3);
            box-shadow: 0 0 0 8px rgba(255, 199, 44, 0.3);
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 199, 44, 0.1);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-content {
            background: rgba(255, 199, 44, 0.05);
            border-color: rgba(255, 199, 44, 0.2);
            transform: translateX(8px);
        }

        .timeline-date {
            display: inline-block;
            background: linear-gradient(135deg, var(--strela-yellow), var(--strela-gold));
            color: var(--strela-dark);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .timeline-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .timeline-content p {
            font-size: 14px;
            color: var(--strela-muted);
            line-height: 1.6;
        }

        /* ====== Ecosystem Section ====== */
        .ecosystem-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            padding: 40px 0;
            position: relative;
            z-index: 1;
        }

        
        .ecosystem-nodes {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .ecosystem-node {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 28px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 199, 44, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
            min-width: 240px;
        }

        .ecosystem-node:hover {
            background: rgba(255, 199, 44, 0.08);
            transform: translateX(10px);
            border-color: rgba(255, 199, 44, 0.3);
        }

        .ecosystem-node.right:hover {
            transform: translateX(-10px);
        }

        .ecosystem-node i {
            font-size: 28px;
            color: var(--strela-yellow);
        }

        .ecosystem-node-text h4 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }

        .ecosystem-node-text p {
            font-size: 13px;
            color: var(--strela-muted);
        }

        /* Connection lines */
        .connection-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, rgba(255, 199, 44, 0.5), rgba(255, 199, 44, 0.1));
            position: relative;
        }

        .connection-line::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--strela-yellow);
            border-radius: 50%;
        }

        .connection-line.reverse {
            background: linear-gradient(90deg, rgba(255, 199, 44, 0.1), rgba(255, 199, 44, 0.5));
        }

        .connection-line.reverse::after {
            right: auto;
            left: 0;
        }

        /* ====== Socials Section ====== */
        .socials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px 18px;
            max-width: 920px;
            margin-left: auto;
            margin-right: auto;
            justify-content: center;
            align-items: stretch;
        }

        .social-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 22px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 199, 44, 0.1);
            border-radius: 16px;
            text-decoration: none;
            color: white;
            transition: all 0.4s ease;
            min-width: 0;
            width: 100%;
            box-sizing: border-box;
        }

        .social-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--strela-yellow);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .social-card.instagram:hover {
            background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(252, 175, 69, 0.2));
        }

        .social-card.telegram:hover {
            background: rgba(0, 136, 204, 0.2);
        }

        .social-card.whatsapp:hover {
            background: rgba(37, 211, 102, 0.18);
        }

        .social-card.tiktok:hover {
            background: rgba(255, 0, 80, 0.15);
        }

        .social-card i {
            font-size: 32px;
            color: var(--strela-yellow);
            transition: transform 0.3s ease;
        }

        .social-card:hover i {
            transform: scale(1.2);
        }

        .social-info h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .social-info p {
            font-size: 13px;
            color: var(--strela-muted);
        }

        .social-footer-note {
            margin: 20px 0 0;
            text-align: center;
            font-size: 14px;
            color: var(--strela-muted);
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }

        .social-footer-note a {
            color: var(--strela-yellow);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 199, 44, 0.35);
        }

        .social-footer-note a:hover {
            border-bottom-color: var(--strela-yellow);
        }

        /* ====== Contact Section ====== */
        .contact-info-block {
            max-width: 640px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .contact-info h3 {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 199, 44, 0.1);
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(255, 199, 44, 0.15), rgba(255, 199, 44, 0.05));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--strela-yellow);
        }

        .contact-item-text span {
            display: block;
            font-size: 13px;
            color: var(--strela-muted);
            margin-bottom: 4px;
        }

        .contact-item-text a,
        .contact-item-text p {
            font-size: 17px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item-text a:hover {
            color: var(--strela-yellow);
        }

        .contact-map {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 199, 44, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .contact-map iframe {
            width: 100%;
            height: 300px;
            border: none;
            filter: saturate(0.8) contrast(1.1);
            transition: filter 0.3s ease;
        }

        .contact-map--strela iframe {
            height: min(420px, 52vh);
            min-height: 300px;
            filter: none;
        }

        .contact-map:hover iframe {
            filter: saturate(1) contrast(1.15);
        }

        .contact-map--strela:hover iframe {
            filter: none;
        }

        .contact-map-link-wrap {
            margin: 10px 0 0;
        }

        .contact-map-open-full {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--strela-yellow);
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 199, 44, 0.35);
        }

        .contact-map-open-full:hover {
            border-bottom-color: var(--strela-yellow);
        }

        .contact-map-open-full i {
            font-size: 11px;
            opacity: 0.85;
        }

        /* Встроенная карта (режим embed=bare — только тайлы и маркеры, как на странице «Сообщество») */
        .glass-card--aboutme-map {
            padding: 0;
            overflow: hidden;
        }

        .aboutme-map-iframe {
            display: block;
            width: 100%;
            height: min(520px, 65vh);
            min-height: 360px;
            border: 0;
            background: #1a1d23;
            vertical-align: top;
        }

        .aboutme-map-foot {
            text-align: center;
            padding: 14px 16px 16px;
            border-top: 1px solid rgba(255, 199, 44, 0.12);
            background: rgba(15, 24, 36, 0.35);
        }

        /* ====== Footer CTA ====== */
        .footer-cta {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, rgba(255, 199, 44, 0.1), rgba(255, 199, 44, 0.02));
            border: 1px solid rgba(255, 199, 44, 0.15);
            border-radius: 24px;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }

        .footer-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--strela-yellow), transparent);
        }

        .footer-cta h2 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .footer-cta p {
            font-size: 17px;
            color: var(--strela-muted);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ====== Animations ====== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ====== Responsive ====== */
        @media (max-width: 1024px) {
            .ecosystem-visual {
                flex-direction: column;
                gap: 30px;
            }

            .ecosystem-nodes {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }

            .ecosystem-node.right {
                flex-direction: row-reverse;
            }

            .connection-line {
                display: none;
            }
        }

        @media (max-width: 900px) {
            .about-content {
                grid-template-columns: 1fr;
            }

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

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

            .glass-card--aboutme-map {
                padding: 0 !important;
            }

            .aboutme-map-iframe {
                min-height: 300px;
                height: min(480px, 58vh);
            }

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

        @media (max-width: 600px) {
            .about-page {
                padding: 20px 15px 60px;
            }

            .glass-card {
                padding: 28px 20px;
                border-radius: 20px;
            }

            .hero-section {
                padding: 40px 15px 60px;
            }

            .hero-cta {
                flex-direction: column;
            }

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

            .stats-section {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .stat-card {
                padding: 20px 15px;
            }

            .stat-number {
                font-size: 32px;
            }

            .socials-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 14px;
                max-width: 420px;
                margin-left: auto;
                margin-right: auto;
            }

            .social-card {
                width: 100%;
                min-width: 0;
                justify-content: flex-start;
            }

            .goal-card {
                padding: 22px 16px 24px;
            }

            .goal-icon {
                width: 58px;
                height: 58px;
                font-size: 24px;
                margin-bottom: 14px;
            }

            .goal-card h3 {
                font-size: 16px;
            }

            .goal-card p {
                font-size: 13px;
            }

            .ecosystem-node {
                min-width: 100%;
            }
        }

        /* ====== Ecosystem Section ====== */
.ecosystem-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.ecosystem-center {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--strela-yellow), var(--strela-gold));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 60px rgba(255, 199, 44, 0.4),
        0 0 100px rgba(255, 199, 44, 0.2);
    animation: pulse-glow 4s ease-in-out infinite;
    padding: 25px;
    overflow: visible;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 
            0 0 60px rgba(255, 199, 44, 0.4), 
            0 0 100px rgba(255, 199, 44, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 0 80px rgba(255, 199, 44, 0.6), 
            0 0 120px rgba(255, 199, 44, 0.3);
        transform: scale(1.02);
    }
}

.ecosystem-logo {
    width: 100%;
    height: auto;
    margin-bottom: -15px;
    position: relative;
    z-index: 2;
    overflow: visible;
}

/* Анимированные пути */
.ecosystem-path-animated {
    fill: transparent;
    stroke: #1a2744;
    stroke-width: 0.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    
    /* Настройка для анимации прорисовки */
    stroke-dasharray: var(--path-length);
    stroke-dashoffset: var(--path-length);
    
    /* Применяем анимации */
    animation: 
        neon-draw 8s ease-in-out infinite,
        neon-fill 8s ease-in-out infinite;
}

/* Задержка для второго пути */
.ecosystem-path-animated:nth-child(2) {
    animation-delay: 0.5s;
}

/* Анимация прорисовки линии */
@keyframes neon-draw {
    0% {
        stroke-dashoffset: var(--path-length);
        stroke-width: 0.6;
    }
    25% {
        stroke-dashoffset: 0;
        stroke-width: 0.8;
    }
    45%, 55% {
        stroke-dashoffset: 0;
        stroke-width: 0.6;
    }
    75% {
        stroke-dashoffset: var(--path-length);
        stroke-width: 0.4;
    }
    100% {
        stroke-dashoffset: var(--path-length);
        stroke-width: 0.6;
    }
}

/* Заливка после прорисовки */
@keyframes neon-fill {
    0%, 25% {
        fill: transparent;
    }
    35% {
        fill: rgba(26, 39, 68, 0.3);
    }
    40% {
        fill: rgba(26, 39, 68, 0.8);
    }
    45%, 65% {
        fill: #1a2744;
    }
    75% {
        fill: rgba(26, 39, 68, 0.5);
    }
    80%, 100% {
        fill: transparent;
    }
}

/* Текст STRELA - чистый, без теней */
.ecosystem-center span {
    font-family: 'Oswald', sans-serif;
    font-size: 40x;
    font-weight: 700;
    color: var(--strela-dark);
    margin-top: 5px;
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

/* Адаптивность */
@media (max-width: 768px) {
    .ecosystem-center {
        width: 160px;
        height: 160px;
        padding: 20px;
    }
    
    .ecosystem-logo {
        margin-bottom: -12px;
    }
    
    .ecosystem-center span {
        font-size: 30px;
        letter-spacing: 4px;
    }
    
    .ecosystem-path-animated {
        stroke-width: 0.5;
    }
}

@media (max-width: 480px) {
    .ecosystem-center {
        width: 140px;
        height: 140px;
        padding: 15px;
    }
    
    .ecosystem-logo {
        margin-bottom: -10px;
    }
    
    .ecosystem-center span {
        font-size: 20px;
        letter-spacing: 3px;
    }
    
    .ecosystem-path-animated {
        stroke-width: 0.4;
    }
}

/* ═══════════ Блок основателя (фото + история) ═══════════ */
.glass-card--founder {
    padding: 36px 26px 40px;
}

.glass-card--founder .founder-spotlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .glass-card--founder .founder-spotlight {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
        gap: 44px;
        align-items: start;
    }
}

.glass-card--founder .founder-section-header {
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 900px) {
    .glass-card--founder .founder-section-header {
        text-align: left;
    }
}

.glass-card--founder .founder-section-tag.section-tag::before {
    display: none;
}

.glass-card--founder .founder-section-tag {
    justify-content: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 199, 44, 0.45);
    margin-bottom: 4px;
}

@media (min-width: 900px) {
    .glass-card--founder .founder-section-tag {
        justify-content: flex-start;
    }
}

.glass-card--founder .founder-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
}

.glass-card--founder .founder-photo-ring {
    position: relative;
    width: min(220px, 78vw);
    height: min(220px, 78vw);
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(145deg, #ffc72c 0%, #e8a317 40%, rgba(255, 255, 255, 0.22) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 199, 44, 0.25),
        0 18px 48px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(255, 199, 44, 0.12);
    z-index: 1;
}

@media (min-width: 900px) {
    .glass-card--founder .founder-photo-ring {
        width: 260px;
        height: 260px;
    }
}

.glass-card--founder .founder-photo-ring img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #0f1824;
}

.glass-card--founder .founder-visual-glow {
    position: absolute;
    width: min(280px, 95vw);
    height: min(280px, 95vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 199, 44, 0.22) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
    animation: founderGlow 5s ease-in-out infinite;
}

@keyframes founderGlow {
    0%, 100% { opacity: 0.55; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1.02); }
}

.glass-card--founder .founder-copy {
    text-align: left;
}

@media (max-width: 899px) {
    .glass-card--founder .founder-copy {
        max-width: 520px;
        margin: 0 auto;
    }
}

.glass-card--founder .founder-lead {
    font-size: 1.12rem;
    line-height: 1.45;
    color: #fff;
    margin: 0 0 18px;
}

.glass-card--founder .founder-body {
    font-size: 15px;
    line-height: 1.75;
    color: #c8d4e6;
    margin: 0 0 16px;
}

.glass-card--founder .founder-body--future {
    margin-bottom: 22px;
    padding: 14px 16px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 199, 44, 0.2);
    border-left: 4px solid var(--strela-yellow);
    background: linear-gradient(105deg, rgba(255, 199, 44, 0.07) 0%, rgba(15, 24, 36, 0.35) 55%, transparent 100%);
    color: #dce6f2;
}

.glass-card--founder .founder-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    margin-top: 4px;
    padding: 14px 22px;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 800;
}

@media (min-width: 900px) {
    .glass-card--founder .founder-wa-btn {
        width: auto;
        min-width: 260px;
    }
}

.glass-card--founder .founder-foot {
    font-size: 13px;
    line-height: 1.5;
    color: #8a9bb3;
    margin: 14px 0 0;
}

/* ═══════════ Миссия, приложение, фонд, соц. подпись ═══════════ */
.mission-intro {
    text-align: center;
    max-width: 760px;
    margin: -8px auto 26px;
    padding: 0 8px;
    font-size: clamp(14px, 2.8vw, 16px);
    line-height: 1.72;
    color: var(--strela-muted);
    position: relative;
    z-index: 1;
}

.about-app-fund-row {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 199, 44, 0.12);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    position: relative;
    z-index: 1;
    align-items: start;
}

@media (max-width: 720px) {
    .about-app-fund-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.about-app-fund__text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--strela-text);
    margin: 0 0 10px;
}

.btn-play-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    background: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-play-store:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.about-fond-link {
    color: var(--strela-yellow);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 199, 44, 0.35);
}

.about-fond-link:hover {
    border-bottom-color: var(--strela-yellow);
}

.social-fund-note {
    margin: 14px auto 0;
    max-width: 640px;
    text-align: center;
    font-size: 13px;
    line-height: 1.55;
    color: var(--strela-muted);
    position: relative;
    z-index: 1;
}

.social-fund-note a {
    color: var(--strela-yellow);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 199, 44, 0.35);
}

@media (max-width: 900px) {
    .goals-grid.goals-grid--four {
        gap: 14px;
    }

    .goal-card {
        padding: 24px 18px;
        text-align: left;
    }

    .goal-card .goal-icon {
        margin-left: 0;
        margin-right: auto;
    }

    .goal-number {
        right: 14px;
        top: 12px;
        font-size: 40px;
    }
}

/* ═══════════ Блок «сообщество» (перенесено с community.php) ═══════════ */
.about-community-hub {
    margin-top: 8px;
}

.community-hub-lead {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto 1.25rem;
    line-height: 1.65;
    color: var(--strela-muted);
    font-size: 0.95rem;
}

.community-hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.community-hub-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--strela-text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.community-hub-btn:hover {
    background: rgba(255, 199, 44, 0.1);
    border-color: rgba(255, 199, 44, 0.35);
    transform: translateY(-1px);
}

.community-hub-btn--telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.25), rgba(0, 136, 204, 0.08));
    border-color: rgba(0, 136, 204, 0.45);
    color: #e8f4fc;
}

.community-hub-btn--telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.4), rgba(0, 136, 204, 0.15));
    border-color: rgba(0, 180, 255, 0.55);
}

.community-hub-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--strela-muted);
    margin-bottom: 1.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.community-hub-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 1.75rem;
}

@media (max-width: 520px) {
    .community-hub-stats {
        grid-template-columns: 1fr;
    }
}

.community-hub-stat {
    text-align: center;
    padding: 14px 10px;
    border-radius: 14px;
    background: rgba(15, 24, 36, 0.45);
    border: 1px solid var(--glass-border);
}

.community-hub-stat__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--strela-yellow);
    line-height: 1.2;
}

.community-hub-stat__label {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--strela-muted);
    line-height: 1.35;
}

.community-hub-gallery-head {
    text-align: center;
    margin-bottom: 1rem;
}

.community-hub-gallery-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--strela-text);
    margin-bottom: 0.35rem;
}

.community-hub-gallery-sub {
    font-size: 0.85rem;
    color: var(--strela-muted);
    line-height: 1.5;
    max-width: 36rem;
    margin: 0 auto;
}

.community-hub-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.community-hub-gallery__item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    aspect-ratio: 4 / 3;
    background: rgba(0, 0, 0, 0.2);
}

.community-hub-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.community-hub-gallery-empty {
    text-align: center;
    font-size: 0.875rem;
    color: var(--strela-muted);
    padding: 1rem 0 0.25rem;
}

/* ═══════════ Светлая тема (без «жёлтый на белом» для текста) ═══════════ */
html[data-theme="light"] body.aboutme-page {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 45%, #f8fafc 100%);
    color: #0f172a;
}

html[data-theme="light"] body.aboutme-page .grid-pattern {
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
}

html[data-theme="light"] body.aboutme-page .bg-gradient-orb:nth-child(1) {
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
}

html[data-theme="light"] body.aboutme-page .bg-gradient-orb:nth-child(3) {
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
}

html[data-theme="light"] body.aboutme-page .hero-title .text-white {
    color: #0f172a;
}

html[data-theme="light"] body.aboutme-page .hero-subtitle,
html[data-theme="light"] body.aboutme-page .stat-label,
html[data-theme="light"] body.aboutme-page .about-text p,
html[data-theme="light"] body.aboutme-page .feature-text p,
html[data-theme="light"] body.aboutme-page .ecosystem-node-text p,
html[data-theme="light"] body.aboutme-page .timeline-content p,
html[data-theme="light"] body.aboutme-page .mission-intro,
html[data-theme="light"] body.aboutme-page .about-app-fund__text,
html[data-theme="light"] body.aboutme-page .social-footer-note,
html[data-theme="light"] body.aboutme-page .social-fund-note,
html[data-theme="light"] body.aboutme-page .social-info p,
html[data-theme="light"] body.aboutme-page .contact-item-text span,
html[data-theme="light"] body.aboutme-page .contact-item-text p {
    color: #475569;
}

html[data-theme="light"] body.aboutme-page .section-tag {
    color: #b45309;
}

html[data-theme="light"] body.aboutme-page .section-title {
    color: #0f172a;
}

html[data-theme="light"] body.aboutme-page .glass-card {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] body.aboutme-page .glass-card:hover {
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

html[data-theme="light"] body.aboutme-page .goal-card {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.aboutme-page .goal-card h3,
html[data-theme="light"] body.aboutme-page .feature-text h4,
html[data-theme="light"] body.aboutme-page .ecosystem-node-text h4,
html[data-theme="light"] body.aboutme-page .timeline-content h3,
html[data-theme="light"] body.aboutme-page .social-info h4,
html[data-theme="light"] body.aboutme-page .stat-number,
html[data-theme="light"] body.aboutme-page .contact-item-text a {
    color: #0f172a;
}

html[data-theme="light"] body.aboutme-page .goal-icon {
    color: #b45309;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(217, 119, 6, 0.04));
}

html[data-theme="light"] body.aboutme-page .goal-card:hover .goal-icon {
    color: #0f172a;
}

html[data-theme="light"] body.aboutme-page .social-card {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

html[data-theme="light"] body.aboutme-page .social-card i {
    color: #b45309;
}

html[data-theme="light"] body.aboutme-page .social-footer-note a,
html[data-theme="light"] body.aboutme-page .social-fund-note a,
html[data-theme="light"] body.aboutme-page .about-fond-link {
    color: #b45309;
    border-bottom-color: rgba(180, 83, 9, 0.35);
}

html[data-theme="light"] body.aboutme-page .community-hub-lead,
html[data-theme="light"] body.aboutme-page .community-hub-note,
html[data-theme="light"] body.aboutme-page .community-hub-gallery-sub,
html[data-theme="light"] body.aboutme-page .community-hub-gallery-empty {
    color: #475569;
}

html[data-theme="light"] body.aboutme-page .community-hub-gallery-title {
    color: #0f172a;
}

html[data-theme="light"] body.aboutme-page .community-hub-btn {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.1);
}

html[data-theme="light"] body.aboutme-page .community-hub-btn:hover {
    background: rgba(217, 119, 6, 0.1);
    border-color: rgba(217, 119, 6, 0.28);
}

html[data-theme="light"] body.aboutme-page .community-hub-btn--telegram {
    color: #0c4a6e;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(14, 165, 233, 0.06));
    border-color: rgba(14, 165, 233, 0.35);
}

html[data-theme="light"] body.aboutme-page .community-hub-btn--telegram:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.28), rgba(14, 165, 233, 0.1));
    border-color: rgba(2, 132, 199, 0.45);
}

html[data-theme="light"] body.aboutme-page .community-hub-stat {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.aboutme-page .community-hub-stat__value {
    color: #b45309;
}

html[data-theme="light"] body.aboutme-page .community-hub-stat__label {
    color: #64748b;
}

html[data-theme="light"] body.aboutme-page .community-hub-gallery__item {
    border-color: rgba(15, 23, 42, 0.08);
    background: #e2e8f0;
}

html[data-theme="light"] body.aboutme-page .aboutme-map-foot {
    background: rgba(241, 245, 249, 0.95);
    border-top-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.aboutme-page .aboutme-map-iframe {
    background: #e2e8f0;
}

html[data-theme="light"] body.aboutme-page .about-app-fund-row {
    border-top-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.aboutme-page .stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] body.aboutme-page .chart-stats,
html[data-theme="light"] body.aboutme-page .chart-container {
    border-color: rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] body.aboutme-page .glass-card--founder .founder-lead {
    color: #0f172a;
}

html[data-theme="light"] body.aboutme-page .glass-card--founder .founder-body {
    color: #334155;
}

html[data-theme="light"] body.aboutme-page .glass-card--founder .founder-body--future {
    background: linear-gradient(105deg, rgba(217, 119, 6, 0.08) 0%, rgba(255, 255, 255, 0.9) 55%, #fff 100%);
    border-color: rgba(217, 119, 6, 0.25);
    border-left-color: #d97706;
    color: #1e293b;
}

html[data-theme="light"] body.aboutme-page .glass-card--founder .founder-foot {
    color: #64748b;
}

html[data-theme="light"] body.aboutme-page .footer-cta {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(255, 255, 255, 0.95)) !important;
    border-color: rgba(217, 119, 6, 0.2) !important;
}

html[data-theme="light"] body.aboutme-page .footer-cta h2 {
    color: #0f172a !important;
}

html[data-theme="light"] body.aboutme-page .footer-cta p {
    color: #475569 !important;
}

html[data-theme="light"] body.aboutme-page .hero-badge {
    color: #b45309;
    border-color: rgba(217, 119, 6, 0.28);
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(255, 255, 255, 0.6));
}

html[data-theme="light"] body.aboutme-page .timeline-date {
    color: #b45309;
}

html[data-theme="light"] body.aboutme-page .ecosystem-center span {
    color: #0f172a;
}

html[data-theme="light"] body.aboutme-page .btn-secondary {
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.15);
    background: rgba(255, 255, 255, 0.85);
}