/* ========================================
   YAZILIMAORG A.Ş. — Corporate V2 Styles
   Premium dark-theme design extensions
   ======================================== */

/* === NEON ACCENT VARIABLES === */
:root {
    --neon-purple: #a855f7;
    --neon-blue: #3b82f6;
    --neon-cyan: #06b6d4;
    --neon-pink: #ec4899;
    --neon-green: #10b981;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
}

/* === PARTICLE CANVAS === */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

/* === DUAL HERO (Homepage) === */
.dual-hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
}

.dual-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.dual-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dual-hero .hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-purple);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.dual-hero .hero-overline i {
    font-size: 12px;
    animation: pulse-glow 2s infinite;
}

.dual-hero .hero-title-main {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.dual-hero .hero-title-main .accent {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dual-hero .hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* Identity Badges */
.identity-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.identity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid;
}

.identity-badge.community {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--neon-green);
}

.identity-badge.corporate {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--neon-purple);
}

/* Hero CTAs */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-neon.primary {
    background: linear-gradient(135deg, var(--neon-purple), #7c3aed);
    color: white;
    box-shadow: 0 4px 24px rgba(168, 85, 247, 0.3);
}

.btn-neon.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.5);
}

.btn-neon.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-neon.secondary:hover {
    border-color: var(--neon-purple);
    background: rgba(168, 85, 247, 0.08);
    transform: translateY(-3px);
}

/* === ANIMATED STATS BAR === */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.stats-bar .stat-item {
    background: rgba(18, 18, 26, 0.9);
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s;
}

.stats-bar .stat-item:first-child {
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.stats-bar .stat-item:last-child {
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.stats-bar .stat-item:hover {
    background: rgba(168, 85, 247, 0.08);
}

.stats-bar .stat-number {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stats-bar .stat-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* === GLASSMORPHISM CARD === */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
}

/* === ICON BOX === */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
}

.icon-box.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(124, 58, 237, 0.1));
    color: var(--neon-purple);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.icon-box.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
    color: var(--neon-blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.icon-box.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(8, 145, 178, 0.1));
    color: var(--neon-cyan);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-box.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1));
    color: var(--neon-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.icon-box.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.1));
    color: var(--neon-pink);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.icon-box.large {
    width: 72px;
    height: 72px;
    font-size: 32px;
}

/* === SECTION DIVIDER === */
.section-glow {
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.03) 50%, transparent 100%);
}

/* === FEATURE GRID V2 === */
.features-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* === PRODUCT CARDS (AI Studio) === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.12);
}

.product-card .card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.product-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === INNOVATION / PATENT SHOWCASE === */
.innovation-showcase {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.04));
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.innovation-showcase .inno-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.innovation-showcase .inno-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.innovation-showcase h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    line-height: 1.3;
}

.innovation-showcase .inno-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.innovation-showcase .inno-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.innovation-showcase .inno-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.innovation-showcase .inno-features li i {
    color: var(--neon-green);
    font-size: 14px;
    width: 20px;
}

.innovation-visual {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    position: relative;
}

.innovation-visual .visual-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
    animation: float 6s ease-in-out infinite;
}

.innovation-visual .visual-label {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.innovation-visual .visual-sub {
    font-size: 13px;
    color: var(--text-muted);
}

/* === TAB SYSTEM V2 (Education) === */
.tabs-v2 {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    margin-bottom: 48px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tabs-v2 .tab-btn {
    padding: 12px 32px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s;
}

.tabs-v2 .tab-btn.active {
    background: linear-gradient(135deg, var(--neon-purple), #7c3aed);
    color: white;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.tabs-v2 .tab-btn:hover:not(.active) {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BOOTCAMP CARD === */
.bootcamp-card {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.08), rgba(18, 18, 26, 0.95));
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.bootcamp-card .bc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 16px;
    width: fit-content;
}

.bootcamp-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.bootcamp-card .bc-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.bootcamp-card .bc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.bootcamp-card .bc-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-secondary);
}

.bootcamp-card .bc-meta span i {
    color: var(--neon-purple);
    font-size: 11px;
}

.bootcamp-card .bc-side {
    text-align: center;
    padding: 32px;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius-xl);
    min-width: 200px;
}

.bootcamp-card .bc-side .price-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.bootcamp-card .bc-side .price {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
}

.bootcamp-card .bc-side .price-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* === HALL OF FAME === */
.hall-of-fame {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hof-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.hof-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}

.hof-card .hof-number {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hof-card .hof-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* === TEAM GRID === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all 0.4s;
}

.team-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.1);
}

.team-card .team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.team-card .team-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.team-card .team-role {
    font-size: 13px;
    color: var(--neon-purple);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card .team-bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-card .team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.team-card .team-social a:hover {
    background: var(--neon-purple);
    color: white;
}

/* === VISION/MISSION CARDS === */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.vm-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.vm-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.vm-card.vision::before {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
}

.vm-card.mission::before {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
}

.vm-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vm-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* === INVESTOR RELATIONS === */
.investor-section {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.06), rgba(59, 130, 246, 0.03));
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.investor-section .inv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.investor-section h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.investor-section .inv-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.investor-section .inv-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.investor-section .inv-highlight {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.investor-section .inv-highlight .inv-h-value {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 2px;
}

.investor-section .inv-highlight .inv-h-label {
    font-size: 11px;
    color: var(--text-muted);
}

/* Investor Form */
.investor-form {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.investor-form h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.investor-form .form-group {
    margin-bottom: 14px;
}

.investor-form .form-group label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.investor-form .form-group input,
.investor-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.investor-form .form-group input:focus,
.investor-form .form-group textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
}

/* === SOCIAL PLATFORM CARDS (Community) === */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.social-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.4s;
    display: block;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.social-card.instagram:hover {
    border-color: #E1306C;
}

.social-card.linkedin:hover {
    border-color: #0077B5;
}

.social-card.discord:hover {
    border-color: #5865F2;
}

.social-card.youtube:hover {
    border-color: #FF0000;
}

.social-card.github:hover {
    border-color: #f0f6fc;
}

.social-card .social-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    color: white;
}

.social-card.instagram .social-icon {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.social-card.linkedin .social-icon {
    background: linear-gradient(135deg, #0077B5, #00a0dc);
}

.social-card.discord .social-icon {
    background: linear-gradient(135deg, #5865F2, #7289da);
}

.social-card.youtube .social-icon {
    background: linear-gradient(135deg, #FF0000, #cc0000);
}

.social-card.github .social-icon {
    background: linear-gradient(135deg, #333, #555);
}

.social-card .social-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.social-card .social-handle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.social-card .social-stat {
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-purple);
}

/* === BLOG CARDS === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s;
    text-decoration: none;
    color: white;
    display: block;
}

.blog-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-6px);
}

.blog-card .blog-thumb {
    height: 180px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--neon-purple);
}

.blog-card .blog-body {
    padding: 24px;
}

.blog-card .blog-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--neon-purple);
    margin-bottom: 12px;
}

.blog-card .blog-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card .blog-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === VALUES GRID (Corporate) === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}

.value-card .value-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.value-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === REPORT CARDS (AI Studio) === */
.report-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.report-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: var(--glass-bg-hover);
}

.report-item .report-icon {
    width: 44px;
    height: 44px;
    background: rgba(168, 85, 247, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--neon-purple);
    flex-shrink: 0;
}

.report-item .report-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.report-item .report-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* === CURRICULUM LIST === */
.curriculum-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.curriculum-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--text-secondary);
}

.curriculum-list li i {
    color: var(--neon-purple);
    font-size: 12px;
    width: 16px;
    flex-shrink: 0;
}

/* === CTA SECTION V2 === */
.cta-v2 {
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.cta-v2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-v2 h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-v2 p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-v2 .cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* === PAGE HERO (Inner pages) === */
.page-hero {
    padding: 120px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--neon-purple);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* === DROPDOWN NAV === */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    padding: 8px;
    background: rgba(18, 18, 26, 0.98);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    margin-top: 12px;
    z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.nav-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.nav-dropdown .dropdown-menu a:hover {
    background: rgba(168, 85, 247, 0.1);
    color: white;
}

.nav-dropdown .dropdown-menu a i {
    width: 16px;
    color: var(--neon-purple);
    font-size: 12px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .features-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .innovation-showcase .inno-grid {
        grid-template-columns: 1fr;
    }

    .investor-section .inv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hall-of-fame {
        grid-template-columns: repeat(2, 1fr);
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .report-list {
        grid-template-columns: 1fr;
    }

    .curriculum-list {
        grid-template-columns: 1fr;
    }

    .bootcamp-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dual-hero .hero-title-main {
        font-size: 36px;
    }

    .dual-hero .hero-desc {
        font-size: 16px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar .stat-item:first-child {
        border-radius: var(--radius-xl) 0 0 0;
    }

    .stats-bar .stat-item:nth-child(2) {
        border-radius: 0 var(--radius-xl) 0 0;
    }

    .stats-bar .stat-item:nth-child(3) {
        border-radius: 0 0 0 var(--radius-xl);
    }

    .stats-bar .stat-item:last-child {
        border-radius: 0 0 var(--radius-xl) 0;
    }

    .features-v2 {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .innovation-showcase {
        padding: 20px;
    }

    .innovation-showcase .inno-grid {
        gap: 24px;
    }

    .innovation-showcase h3 {
        font-size: 20px;
    }

    .innovation-showcase .inno-desc {
        font-size: 14px;
    }

    .innovation-showcase .inno-features li {
        font-size: 13px;
        gap: 8px;
    }

    .innovation-visual {
        padding: 24px;
    }

    .innovation-visual .visual-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hof-card .hof-number {
        font-size: 28px;
    }

    .hof-card {
        padding: 16px;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tabs-v2 {
        flex-direction: column;
        border-radius: var(--radius-lg);
        width: 100%;
    }

    .tabs-v2 .tab-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dual-hero .hero-title-main {
        font-size: 28px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-neon {
        width: 100%;
        justify-content: center;
    }

    .identity-badges {
        flex-direction: column;
        align-items: center;
    }

    .stats-bar .stat-number {
        font-size: 24px;
    }

    .hall-of-fame {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   LIGHT MODE — Corporate V2 Overrides
   ======================================== */
[data-theme="light"] {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-bg-hover: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .dual-hero::before {
    background: radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
}

[data-theme="light"] .dual-hero .hero-title-main {
    -webkit-text-fill-color: #1a1a2e;
}

[data-theme="light"] .dual-hero .hero-desc {
    color: var(--text-secondary);
}

[data-theme="light"] .identity-badge {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .stats-bar {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .stats-bar .stat-number {
    background: linear-gradient(135deg, #1a1a2e, var(--purple-primary));
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .glass-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(168, 85, 247, 0.2);
}

[data-theme="light"] .glass-card h3 {
    color: var(--text-primary);
}

[data-theme="light"] .product-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .product-card:hover {
    border-color: rgba(168, 85, 247, 0.2);
}

[data-theme="light"] .product-card h3 {
    color: var(--text-primary);
}

[data-theme="light"] .page-hero {
    background: linear-gradient(180deg, rgba(237, 233, 246, 0.5) 0%, transparent 100%);
}

[data-theme="light"] .page-hero h1 {
    color: var(--text-primary);
}

[data-theme="light"] .page-badge {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
}

[data-theme="light"] .innovation-showcase {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.04), rgba(59, 130, 246, 0.02));
    border-color: rgba(168, 85, 247, 0.12);
}

[data-theme="light"] .innovation-showcase h3 {
    color: var(--text-primary);
}

[data-theme="light"] .innovation-visual {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .hof-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .hof-card .hof-number {
    background: linear-gradient(135deg, var(--neon-purple), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .vm-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .vm-card h3 {
    color: var(--text-primary);
}

[data-theme="light"] .team-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .team-card .team-name {
    color: var(--text-primary);
}

[data-theme="light"] .value-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .value-card h4 {
    color: var(--text-primary);
}

[data-theme="light"] .investor-section {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .investor-section h3 {
    color: var(--text-primary);
}

[data-theme="light"] .investor-form {
    background: rgba(248, 249, 252, 0.9);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .investor-form h4 {
    color: var(--text-primary);
}

[data-theme="light"] .investor-form input,
[data-theme="light"] .investor-form textarea {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

[data-theme="light"] .bootcamp-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(168, 85, 247, 0.15);
}

[data-theme="light"] .bootcamp-card h3 {
    color: var(--text-primary);
}

[data-theme="light"] .bc-side {
    background: rgba(248, 249, 252, 0.95);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .cta-v2 {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.06) 0%, rgba(59, 130, 246, 0.04) 100%);
}

[data-theme="light"] .cta-v2 h2 {
    -webkit-text-fill-color: var(--text-primary);
}

[data-theme="light"] .testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .testimonial-name {
    color: var(--text-primary);
}

[data-theme="light"] .social-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .social-card h3 {
    color: var(--text-primary);
}

[data-theme="light"] .blog-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .blog-card h3 {
    color: var(--text-primary);
}

/* Process Flow & Use Case cards (AI Studio) */
[data-theme="light"] .process-flow .flow-step {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .process-flow .flow-step h4 {
    color: var(--text-primary);
}

[data-theme="light"] .use-case-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .use-case-card h3 {
    color: var(--text-primary);
}

/* Section Glow */
[data-theme="light"] .section-glow {
    background: linear-gradient(180deg, rgba(237, 233, 246, 0.3) 0%, transparent 50%, rgba(237, 233, 246, 0.15) 100%);
}

/* Btn Neon */
[data-theme="light"] .btn-neon.secondary {
    border-color: rgba(0, 0, 0, 0.12);
    color: var(--text-primary);
}

[data-theme="light"] .btn-neon.secondary:hover {
    border-color: var(--neon-purple);
    background: rgba(168, 85, 247, 0.06);
}

/* Inv highlights */
[data-theme="light"] .inv-highlight {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .inv-h-value {
    color: var(--text-primary);
}

/* Tab buttons */
[data-theme="light"] .tabs-v2 {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .tabs-v2 .tab-btn {
    color: var(--text-secondary);
}

[data-theme="light"] .tabs-v2 .tab-btn.active {
    background: white;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Footer logo invert for light mode */
[data-theme="light"] .premium-footer .footer-logo {
    filter: invert(1) brightness(0.2);
}

[data-theme="light"] .premium-header .logo-img {
    filter: invert(1) brightness(0.2);
}

[data-theme="light"] .mobile-menu-header img {
    filter: invert(1) brightness(0.2);
}

/* ========================================
   NEW COMPONENTS — Logo Placeholder,
   Teknokent Badge, Founder Story
   ======================================== */

/* === PAGE LOGO PLACEHOLDER === */
.page-logo-placeholder {
    width: 160px;
    height: 160px;
    border: 2px dashed rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    background: rgba(168, 85, 247, 0.04);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.page-logo-placeholder i {
    font-size: 28px;
    color: var(--neon-purple);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .page-logo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 9px;
    }

    .page-logo-placeholder i {
        font-size: 20px;
    }
}

/* === TEKNOKENT BADGE === */
.teknokent-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
}

.teknokent-badge .tk-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--neon-green);
    flex-shrink: 0;
}

.teknokent-badge .tk-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.teknokent-badge .tk-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .teknokent-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
}

/* === FOUNDER STORY SECTION === */
.founder-story {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.06), rgba(59, 130, 246, 0.03));
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.founder-story::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 120px;
    color: rgba(168, 85, 247, 0.06);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.founder-story .story-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.founder-story .story-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.founder-story .story-meta .story-name {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 2px;
}

.founder-story .story-meta .story-title {
    font-size: 13px;
    color: var(--neon-purple);
    font-weight: 600;
}

.founder-story .story-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 100%;
}

.founder-story .story-text p {
    margin-bottom: 16px;
}

.founder-story .story-text strong {
    color: white;
    font-weight: 600;
}

.founder-story .story-milestones {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--glass-border);
}

.founder-story .story-milestones .milestone {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.founder-story .story-milestones .milestone .m-value {
    font-size: 22px;
    font-weight: 900;
    color: var(--neon-purple);
    margin-bottom: 4px;
}

.founder-story .story-milestones .milestone .m-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .founder-story {
        padding: 28px 20px;
    }

    .founder-story .story-milestones {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-story .story-header {
        flex-direction: column;
        text-align: center;
    }
}

/* === FLAGSHIP PRODUCT SHOWCASE === */
.flagship-showcase {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.05));
    border: 2px solid rgba(168, 85, 247, 0.25);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.flagship-showcase::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.flagship-showcase .flagship-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-purple);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flagship-showcase h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.flagship-showcase .flagship-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 700px;
}

.flagship-showcase .flagship-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.flagship-showcase .flagship-features .ff-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    font-size: 13px;
    color: var(--text-secondary);
}

.flagship-showcase .flagship-features .ff-item i {
    color: var(--neon-purple);
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .flagship-showcase {
        padding: 28px 20px;
    }

    .flagship-showcase .flagship-features {
        grid-template-columns: 1fr;
    }
}

/* === TESTIMONIAL CARDS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.testimonial-role {
    font-size: 11px;
    color: var(--text-muted);
}

.testimonial-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 12px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* === CURRICULUM LIST === */
.curriculum-list {
    list-style: none;
    padding: 0;
    column-count: 2;
    column-gap: 20px;
}

.curriculum-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
    break-inside: avoid;
}

.curriculum-list li i {
    color: var(--neon-purple);
    font-size: 10px;
    width: 14px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .curriculum-list {
        column-count: 1;
    }
}

/* === REPORT LIST (Ar-Ge Sayfası) === */
.report-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
}

.report-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(4px);
}

.report-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--neon-purple);
    flex-shrink: 0;
}

.report-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.report-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* === VALUES GRID === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* === HERO IMPACT BADGE === */
.hero-impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.06));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-full);
    animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        border-color: rgba(16, 185, 129, 0.25);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }

    50% {
        border-color: rgba(16, 185, 129, 0.5);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
    }
}

.hero-impact-badge .impact-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-impact-badge .impact-number span {
    font-size: 28px;
}

.hero-impact-badge .impact-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
    text-align: left;
}

/* === TRUST BADGE STRIP === */
.trust-badge-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 24px 36px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.04), rgba(16, 185, 129, 0.03));
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: var(--radius-xl);
    margin-bottom: 8px;
}

.trust-badge-strip.trust-compact {
    padding: 14px 24px;
    margin-bottom: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(124, 58, 237, 0.1));
    color: var(--neon-purple);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.trust-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    color: var(--neon-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.trust-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
    color: var(--neon-blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.trust-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.trust-content p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 24px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-badge-strip {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .trust-badge-strip.trust-compact {
        gap: 8px;
        padding: 12px 16px;
    }

    .trust-badge-strip.trust-compact .trust-divider {
        display: none;
    }

    .trust-badge-strip.trust-compact .trust-item {
        gap: 10px;
    }

    .trust-badge-strip.trust-compact .trust-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .trust-badge-strip.trust-compact .trust-content h4 {
        font-size: 13px;
    }

    .trust-divider {
        width: 80%;
        height: 1px;
        margin: 0;
    }

    .trust-item {
        justify-content: flex-start;
        width: 100%;
    }

    .hero-impact-badge {
        padding: 12px 20px;
    }

    .hero-impact-badge .impact-number {
        font-size: 32px;
    }

    .hero-impact-badge .impact-text {
        font-size: 12px;
    }
}

/* === STORY VIDEO PLAYER === */
.story-video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-video-wrapper {
    position: relative;
    width: 220px;
    height: 390px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(168, 85, 247, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #0a0a14;
}

.story-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease;
    z-index: 2;
}

.story-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--neon-purple), #7c3aed);
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
}

.story-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
}

.story-play-btn i {
    margin-left: 3px;
}

.story-video-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.story-pause-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.story-pause-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .story-video-wrapper {
        width: 180px;
        height: 320px;
    }
}