/* ===========================
   CSS Variables & Reset
   D-Arrow Brand Identity — V2 Layout
   =========================== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fdfdfd;
    --bg-tertiary: #f8f8fa;
    --bg-card: #ffffff;
    --border-light: #f0f0f5;
    
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a5a;
    --text-muted: #8a8a9a;
    
    --brand-pink: #FF4D6D;
    --brand-orange: #FF9A3C;
    --brand-coral: #FF6F4F;
    --brand-gradient: linear-gradient(135deg, #FF4D6D, #FF6F4F, #FF9A3C);
    --brand-gradient-alt: linear-gradient(135deg, #FF9A3C, #FF4D6D);
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 12px 40px rgba(255, 77, 109, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 100px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --font-heading: 'El Messiri', sans-serif;
    --font-body: 'Cairo', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title-v2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--brand-gradient);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 154, 60, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-hover .custom-cursor {
    width: 12px;
    height: 12px;
}

.cursor-hover .custom-cursor-follower {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 77, 109, 0.1);
    border-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-bounce);
    cursor: none;
    border: none;
}

.btn-primary {
    background: var(--brand-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 77, 109, 0.4);
}

.btn-gradient {
    background: var(--brand-gradient-alt);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 154, 60, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 154, 60, 0.4);
}

.btn-outline-v2 {
    background: #fff;
    color: var(--text-primary);
    border: 1px solid #ddd;
    box-shadow: var(--shadow-soft);
}

.btn-outline-v2:hover {
    border-color: var(--brand-pink);
    color: var(--brand-pink);
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: var(--brand-pink);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.text-logo {
    font-size: 2rem;
    font-weight: 800;
    font-family: Arial, sans-serif;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.text-logo-sub {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--brand-pink);
}

.nav-links a.active {
    color: var(--brand-pink);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--brand-pink);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: none;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-v2 {
    padding: 160px 0 100px;
    background: #fff;
    position: relative;
}

.hero-v2-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.hero-v2-text {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-v2-greeting {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.hero-v2-name {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.verification-badge {
    font-size: 2rem;
    color: var(--brand-pink);
}

.hero-v2-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-v2-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-v2-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-v2-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socials-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-v2-socials a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.hero-v2-socials a:hover {
    color: var(--brand-pink);
    transform: translateY(-3px);
}

.hero-v2-image {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--brand-gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-bg-graphic {
    position: absolute;
    font-size: 25rem;
    font-family: Arial, sans-serif;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 4px rgba(255, 77, 109, 0.4);
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
    white-space: nowrap;
}

.main-portrait {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero-signature {
    margin-top: -20px;
    z-index: 2;
    text-align: center;
}

.hero-sig-img {
    max-width: 180px;
}

/* Stats Bar */
.stats-section {
    position: relative;
    margin-top: -50px; /* Overlaps hero */
    z-index: 10;
}

.stats-bar {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    border: 1px solid var(--border-light);
}

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

.stat-divider {
    width: 1px;
    background: var(--border-light);
    margin: 0 20px;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.stat-platform {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-total {
    background: var(--bg-tertiary);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: -10px;
    margin-bottom: -10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-icon-group {
    color: var(--brand-pink);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* About Section */
.about-v2 {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-v2-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-v2-text {
    flex: 1;
}

.about-v2-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tag {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-coral);
    box-shadow: var(--shadow-soft);
}

.about-contact-cards {
    display: flex;
    gap: 20px;
}

.contact-mini-card {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.contact-mini-card i {
    font-size: 1.5rem;
    color: var(--brand-orange);
}

.contact-mini-card .title {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-mini-card .subtitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.about-v2-gallery {
    flex: 1;
    display: flex;
    gap: 15px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-large {
    flex: 1.5;
    height: 400px;
}

.item-small {
    height: 192.5px;
}

.item-more {
    height: 192.5px;
    background: var(--brand-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.item-more span {
    font-size: 2rem;
    font-weight: 800;
}

.item-more p {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: #fff;
}

.achievements-grid {
    display: flex;
    gap: 40px;
}

.achievements-cards {
    flex: 1;
    display: flex;
    gap: 20px;
}

.achieve-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
}

.achieve-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 77, 109, 0.2);
}

.achieve-card .icon-wrap {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid var(--brand-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand-pink);
}

.achieve-card p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.companies-logos {
    flex: 1.5;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 100%;
}

.logo-item {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-secondary);
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition-smooth);
}

.logo-item:hover {
    filter: grayscale(0%) opacity(1);
}

.logo-item.stc { color: #4f008c; font-family: Tahoma; }
.logo-item.amazon { color: #ff9900; }
.logo-item.noon { color: #fce000; text-shadow: 1px 1px 1px #000; }
.logo-item.riyad { color: #004b87; }
.logo-item.salla { color: #00d5a3; }

/* Media Appearances */
.media-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.media-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    box-shadow: 0 4px 10px rgba(255, 77, 109, 0.3);
    flex-shrink: 0;
}

.media-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.media-carousel::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.media-card {
    min-width: 280px;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition-bounce);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.media-thumb {
    position: relative;
    height: 160px;
}

.media-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.article-placeholder {
    width: 100%; height: 100%;
    background: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(4px);
}

.duration {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.media-info {
    padding: 20px;
    text-align: right;
}

.media-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.media-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Important Links */
.links-section {
    padding: 100px 0;
    background: #fff;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.link-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-bounce);
}

.link-card:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.link-card i {
    font-size: 1.5rem;
    color: var(--brand-pink);
    background: rgba(255, 77, 109, 0.1);
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.link-card h3 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.link-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Final CTA Banner */
.cta-banner-section {
    padding: 50px 0 100px;
    background: #fff;
}

.cta-banner {
    background: var(--brand-gradient);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(255, 77, 109, 0.2);
}

.cta-visuals {
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer-v2 {
    background: #fff;
    border-top: 1px solid var(--border-light);
    padding: 30px 0;
}

.footer-v2-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--brand-pink);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.separator {
    color: var(--border-light);
}

.copyright {
    margin-right: 20px;
}

/* ===========================
   Responsive — Tablet
   =========================== */
@media (max-width: 992px) {
    /* Layout stacking */
    .hero-v2-container,
    .about-v2-container,
    .achievements-grid,
    .cta-banner {
        flex-direction: column;
    }

    /* Hero */
    .hero-v2 { padding: 120px 0 60px; }
    .hero-v2-text {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }
    .hero-v2-name {
        font-size: 3.2rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-v2-actions { justify-content: center; }
    .hero-v2-socials { justify-content: center; }
    .hero-signature { display: flex; justify-content: center; }
    .hero-v2-image { min-height: 350px; }
    .hero-bg-graphic { font-size: 18rem; }
    .hero-glow-bg { width: 300px; height: 300px; }

    /* Stats */
    .stats-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
    }
    .stat-item { flex: 1 1 40%; }
    .stat-divider { display: none; }
    .stat-total { margin: 0; flex: 1 1 100%; }

    /* About */
    .about-v2-gallery { gap: 10px; }
    .about-contact-cards { flex-direction: column; }

    /* Achievements */
    .achievements-cards { flex-direction: row; flex-wrap: wrap; }
    .achieve-card { flex: 1 1 45%; }

    /* Links */
    .links-grid { grid-template-columns: repeat(2, 1fr); }

    /* CTA */
    .cta-banner {
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
    .cta-visuals { flex-direction: column; gap: 20px; }

    /* Footer */
    .footer-v2-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-brand { align-items: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ===========================
   Responsive — Mobile
   =========================== */
@media (max-width: 768px) {
    /* Disable custom cursor on mobile */
    body { cursor: auto; }
    .custom-cursor, .custom-cursor-follower { display: none; }

    /* Mobile Navigation */
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 30px 20px;
        gap: 0;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        z-index: 999;
    }
    .nav-links.active li {
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-links.active li:last-child {
        border-bottom: none;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero — side by side, image on left (RTL: row puts image left naturally) */
    .hero-v2 { padding: 100px 0 40px; }
    .hero-v2-container {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }
    .hero-v2-text {
        text-align: right;
        flex: 1 1 55%;
        min-width: 0;
        max-width: 55%;
    }
    .hero-v2-name { font-size: 1.8rem; justify-content: flex-start; flex-wrap: wrap; }
    .verification-badge { font-size: 1.2rem; }
    .hero-v2-title { font-size: 0.85rem; }
    .hero-v2-desc { font-size: 0.8rem; margin-bottom: 15px; line-height: 1.6; }
    .hero-v2-greeting { font-size: 0.95rem; }
    .hero-v2-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-bottom: 30px;
    }
    .hero-v2-actions .btn { font-size: 0.8rem; padding: 8px 14px; }
    .hero-v2-socials { gap: 10px; }
    .socials-label { font-size: 0.7rem; }
    .hero-v2-socials a { font-size: 0.95rem; }
    .hero-v2-image {
        min-height: auto;
        flex: 0 0 38%;
        max-width: 38%;
    }
    .hero-bg-graphic { font-size: 6rem; }
    .hero-glow-bg { width: 150px; height: 150px; }
    .main-portrait { max-height: 35vh; }
    .hero-sig-img { max-width: 80px; }
    .hero-signature { margin-top: -5px; }

    /* Stats */
    .stats-section { margin-top: -30px; }
    .stats-bar { padding: 15px; gap: 15px; }
    .stat-item { flex: 1 1 45%; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.8rem; }
    .stat-icon { font-size: 1.5rem; margin-bottom: 8px; }

    /* Section titles */
    .section-title-v2 { font-size: 1.8rem; margin-bottom: 25px; }

    /* About */
    .about-v2 { padding: 60px 0; }
    .about-v2-desc { font-size: 1rem; }
    .about-tags { gap: 8px; }
    .tag { padding: 6px 14px; font-size: 0.8rem; }
    .about-v2-gallery { flex-direction: column; }
    .gallery-column { flex-direction: row; }
    .item-large { height: 250px; }
    .item-small { height: 150px; flex: 1; }
    .item-more { height: 150px; flex: 1; }

    /* Achievements */
    .achievements-section { padding: 60px 0; }
    .achievements-cards { flex-direction: column; }
    .achieve-card { padding: 20px 15px; }
    .companies-logos { padding: 25px; }
    .logo-grid { gap: 20px; }
    .logo-item { font-size: 1.2rem; }

    /* Media */
    .media-section { padding: 60px 0; }
    .media-carousel { gap: 15px; padding: 10px 0; }
    .media-card { min-width: 240px; }

    /* Links */
    .links-section { padding: 60px 0; }
    .links-grid { grid-template-columns: 1fr; gap: 12px; }
    .link-card { padding: 15px; }

    /* CTA */
    .cta-banner-section { padding: 30px 0 60px; }
    .cta-banner { padding: 30px 20px; border-radius: var(--radius-lg); }
    .cta-content h2 { font-size: 1.8rem; }
    .cta-content p { font-size: 0.95rem; }

    /* Footer */
    .footer-v2 { padding: 20px 0; }
    .footer-links { gap: 10px; font-size: 0.8rem; }
    .copyright { margin-right: 0; }
}

/* ===========================
   Responsive — Small Mobile
   =========================== */
@media (max-width: 480px) {
    .hero-v2-name { font-size: 2rem; }
    .verification-badge { font-size: 1.5rem; }
    .hero-bg-graphic { font-size: 8rem; }
    .hero-glow-bg { width: 200px; height: 200px; }

    .stat-item { flex: 1 1 100%; }
    .stat-number { font-size: 1.4rem; }

    .section-title-v2 { font-size: 1.5rem; }

    .gallery-column { flex-direction: column; }
    .item-large { height: 200px; }
    .item-small, .item-more { height: 120px; }

    .media-card { min-width: 200px; }

    .cta-banner { padding: 25px 15px; }
    .cta-content h2 { font-size: 1.5rem; }

    .text-logo { font-size: 1.6rem; }
    .text-logo-sub { font-size: 0.6rem; }
}
