/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0f0e0c;
    --bg-light: #151311;
    --bg-card: #1c1a17;
    --bg-card-hover: #221f1b;
    --text: #e8e4de;
    --text-dim: #9a958c;
    --text-muted: #5c5750;
    --gold: #c4a265;
    --gold-light: #d4b87a;
    --gold-dark: #a08245;
    --gold-subtle: rgba(196, 162, 101, 0.10);
    --border: rgba(196, 162, 101, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --radius: 6px;
    --radius-lg: 10px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

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

ul {
    list-style: none;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(15, 14, 12, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

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

.nav-cta {
    padding: 9px 22px !important;
    border: 1px solid var(--gold);
    border-radius: 2px;
    color: var(--gold) !important;
    font-weight: 500 !important;
    letter-spacing: 0.03em !important;
    transition: background var(--transition), color var(--transition) !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--bg) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: var(--bg);
}

.hero-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.8rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--text);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-tagline {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    max-width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
section {
    padding: 110px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--border);
}

.hero::before {
    display: none;
}

.section-header {
    margin-bottom: 56px;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--text);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--border);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-content {
    max-width: 680px;
}

.about-text {
    font-size: 1.02rem;
    color: var(--text-dim);
    line-height: 1.85;
    margin-bottom: 20px;
}

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

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 56px;
}

.stat-card {
    background: var(--bg-card);
    padding: 36px 24px;
    text-align: center;
    transition: background var(--transition);
}

.stat-card:hover {
    background: var(--bg-card-hover);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-number small {
    font-size: 1.2rem;
    font-weight: 500;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* ========================================
   GLOBAL PRESENCE
   ======================================== */
.global-presence {
    text-align: center;
}

.global-presence-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.global-presence-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.country-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 500;
    transition: var(--transition);
}

.country-tag:hover {
    border-color: var(--border);
    background: var(--gold-subtle);
}

.country-flag {
    font-size: 0.95rem;
    line-height: 1;
}

/* ========================================
   FEATURED IN - MARQUEE
   ======================================== */
.featured {
    padding: 72px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.featured-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 36px;
}

.marquee-wrapper {
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.marquee {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-logo {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dim);
    white-space: nowrap;
    transition: var(--transition);
    opacity: 0.7;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 36px;
}

.marquee-logo img {
    height: 26px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(0.55);
    transition: var(--transition);
}

.marquee-logo:hover {
    opacity: 1;
}

.marquee-logo:hover img {
    filter: brightness(0) invert(0.8);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   VENTURES SECTION
   ======================================== */
.ventures {
    background: var(--bg-light);
}

.venture-hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    margin-bottom: 20px;
    position: relative;
}

.venture-logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.venture-kd-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.venture-tagline {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.venture-desc {
    font-size: 0.98rem;
    color: var(--text-dim);
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 24px;
}

.venture-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.venture-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

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

.venture-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 36px;
    transition: border-color var(--transition), background var(--transition);
}

.venture-card:hover {
    border-color: var(--border);
    background: var(--bg-card-hover);
}

.venture-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--gold-subtle);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.venture-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.venture-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.venture-card p {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.venture-wins {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px;
}

.venture-wins li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    padding: 5px 0;
    padding-left: 16px;
    position: relative;
}

.venture-wins li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

.venture-badge {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: var(--gold-subtle);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 2px;
    vertical-align: middle;
    margin-left: 8px;
}

/* ========================================
   SPEAKING SECTION
   ======================================== */
.speaking {
    background: var(--bg);
}

.speaking-content {
    margin-bottom: 48px;
}

.speaking-intro {
    font-size: 1.02rem;
    color: var(--text-dim);
    line-height: 1.85;
    max-width: 620px;
}

.speaking-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.highlight-heading {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-list li {
    font-size: 0.92rem;
    color: var(--text-dim);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.highlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.speaking-cta {
    text-align: center;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
}

.speaking-cta p {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

/* ========================================
   PHOTO GALLERY / CAROUSEL
   ======================================== */
.gallery {
    margin-bottom: 48px;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 calc((var(--gallery-w, 1064px) - 24px) / 3);
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-slide:hover img {
    transform: scale(1.04);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 14px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.03em;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.gallery-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-btn:hover {
    border-color: var(--gold);
    background: var(--gold-subtle);
}

.gallery-btn svg {
    width: 18px;
    height: 18px;
    color: var(--text-dim);
}

.gallery-btn:hover svg {
    color: var(--gold);
}

.gallery-dots {
    display: flex;
    gap: 6px;
}

.gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.gallery-dot.active {
    opacity: 1;
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .gallery-slide {
        flex: 0 0 calc((var(--gallery-w, 700px) - 12px) / 2);
    }
}

@media (max-width: 640px) {
    .gallery-slide {
        flex: 0 0 var(--gallery-w, 100%);
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--border);
}

.testimonial-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.testimonial-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-role {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.testimonials-cta {
    text-align: center;
}

.view-link {
    font-size: 0.88rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.view-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    text-align: center;
    background: var(--bg);
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-style: italic;
}

.contact-text {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    background: var(--gold-subtle);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
    transition: color var(--transition);
}

.social-link:hover svg {
    color: var(--gold);
}

/* ========================================
   TOOLS PROMO SECTION
   ======================================== */
.tools-promo {
    padding: 72px 0;
    background: var(--bg-light);
}

.tools-promo::before {
    display: none;
}

.tools-promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tools-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tools-promo-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: var(--text);
    margin: 16px 0;
    line-height: 1.2;
}

.tools-promo-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 28px;
}

/* Resources Nav Link */
.nav-resources {
    color: var(--gold) !important;
    font-weight: 500 !important;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer p {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        justify-content: center;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 320px;
    }

    .about-grid {
        grid-template-columns: 220px 1fr;
        gap: 32px;
    }

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

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

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: left;
    }

    .about-image-wrapper {
        width: 200px;
        aspect-ratio: 3 / 4;
    }

    section {
        padding: 80px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 14, 12, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-name {
        font-size: 2.6rem;
    }

    .hero-image-wrapper {
        width: 260px;
    }

    .ventures-grid,
    .speaking-highlights {
        grid-template-columns: 1fr;
    }

    .speaking-highlights {
        gap: 32px;
    }

    .venture-hero-card {
        padding: 28px 24px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-image-wrapper {
        width: 220px;
    }
}
