/* ===================================
   NEVARO TALENT - MAIN STYLESHEET
   Modern, Dynamic, Responsive Design
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --color-black: #000000;
    --color-cyan: #06b6d4;
    --color-purple: #8b5cf6;
    --color-gray: #e2e8f0;
    --color-white: #ffffff;
    --color-dark-gray: #1a1a1a;
    --color-light-gray: #f8f9fa;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --container-max: 1280px;
    --container-padding: 2rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Mobile Touch Optimization */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        touch-action: manipulation;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent text size adjustment on orientation change */
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gray);
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-purple));
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-btn {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--color-white);
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray);
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--color-cyan);
    transform: translateX(10px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: visible;
    width: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(0, 0, 0, 1) 50%, rgba(139, 92, 246, 0.05) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.2), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.2), transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    overflow: visible;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.hero .scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--color-cyan), transparent);
}

/* ===== MARQUEE SECTION ===== */
.marquee-section {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 2rem;
    font-weight: 800;
    padding: 0 2rem;
    color: var(--color-white);
}

.marquee-content .separator {
    color: var(--color-cyan);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== BRAND ICONS MARQUEE ===== */
.brand-icons-section {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.brand-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.brand-marquee-content {
    display: flex;
    align-items: center;
    animation: scroll 25s linear infinite;
    gap: 3rem;
    flex-shrink: 0;
    min-width: 100%;
}

.brand-icon {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.brand-icon:hover {
    transform: scale(1.1);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 6rem 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 10rem 0 6rem;
    text-align: center;
    background: rgba(10, 10, 15, 1);
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ===== STORY SECTION ===== */
section.story-section,
section.about-story-section {
    background: rgba(15, 15, 20, 1);
    padding: 6rem 0 3rem 0 !important;
    margin-bottom: 0 !important;
}

/* Kane name - split on mobile only */
@media (max-width: 768px) {
    .kane-name {
        word-spacing: 100vw;
    }
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.story-text .btn {
    margin-top: 1rem;
}

/* About Story Hero Layout - Text Left, Image Right */
.about-story-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 2rem !important;
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-story-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.about-story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-story-image:hover img {
    transform: scale(1.05);
}

.founder-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.founder-label .talent-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.founder-label h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.founder-label p {
    font-size: 1rem;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* About Story Alternate Layout - Image Left, Text Right */
.about-story-alternate {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .about-story-hero,
    .about-story-alternate {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-story-hero {
        margin-bottom: 3rem;
    }
    
    .about-story-section {
        padding: 4rem 0 2rem 0;
    }
    
    .philosophy-detail-section {
        padding: 2rem 0 4rem 0;
    }
    
    .about-story-image {
        aspect-ratio: 1/1;
    }
    
    .about-story-image .talent-overlay {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* ===== FOUNDERS SECTION ===== */
.founders-section {
    padding: 4rem 0;
    background: rgba(10, 10, 15, 1);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
    border-color: var(--color-cyan);
}

.founder-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-info {
    padding: 2rem;
    text-align: center;
}

.founder-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-role {
    color: var(--color-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 1);
    overflow: hidden;
}

.portfolio-slider {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
}

.portfolio-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.portfolio-slide {
    flex: 0 0 calc(33.333% - 1.334rem);
    min-width: calc(33.333% - 1.334rem);
}

.portfolio-embed {
    position: relative;
    aspect-ratio: 2/3;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.portfolio-embed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.portfolio-embed:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-embed:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
}

.portfolio-embed:hover img {
    transform: scale(1.05);
}

.portfolio-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.portfolio-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.portfolio-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-btn:hover {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    transform: scale(1.1);
}

.portfolio-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.portfolio-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: scale(1);
}

/* Portfolio Responsive */
@media (max-width: 1024px) {
    .portfolio-slide {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .portfolio-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .portfolio-track {
        gap: 1rem;
    }
}

/* ===== PHILOSOPHY SECTION ===== */
section.philosophy-section,
section.philosophy-detail-section {
    padding: 3rem 0 6rem 0 !important;
    background: rgba(15, 15, 20, 1);
    margin-top: 0 !important;
    border-top: none !important;
    overflow-x: hidden;
    width: 100%;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem !important;
}

.philosophy-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
    border-color: transparent;
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.tab-inner {
    text-align: center;
}

.tab-inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.tab-inner .btn {
    margin-top: 1rem;
    display: inline-block;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.philosophy-block {
    touch-action: pan-y;
    pointer-events: auto;
}

.philosophy-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-cyan);
    white-space: nowrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.philosophy-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* ===== POLICY PAGES ===== */
.policy-section {
    padding: 4rem 0 6rem;
    background: rgba(0, 0, 0, 1);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-gray);
}

.policy-content h2 {
    font-size: 2rem;
    color: var(--color-white);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.5rem;
    color: var(--color-cyan);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
}

.policy-content strong {
    color: var(--color-white);
    font-weight: 600;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 4rem 0 6rem;
    background: rgba(0, 0, 0, 1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    pointer-events: auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-cyan);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
    border-radius: 15px;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--color-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-cyan);
    font-weight: bold;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: rgba(15, 15, 20, 1);
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ===== TALENT SECTION ===== */
.talent-section {
    padding: 4rem 0 6rem;
    background: rgba(10, 10, 15, 1);
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.talent-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    touch-action: pan-y;
    pointer-events: auto;
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
    border-color: var(--color-cyan);
}

.talent-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.talent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.talent-card:hover .talent-image img {
    transform: scale(1.1);
}

.talent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.talent-card:hover .talent-overlay {
    opacity: 1;
}

.talent-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
    transform: translateY(-5px);
}

.talent-info {
    padding: 1.5rem;
}

.talent-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.talent-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.stat svg {
    color: var(--color-cyan);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 4rem 0 6rem;
    background: rgba(0, 0, 0, 1);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item a,
.contact-item p {
    color: var(--color-gray);
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--color-cyan);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--color-white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2306b6d4' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select option {
    background: rgba(0, 0, 0, 0.95);
    color: var(--color-white);
    padding: 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    background: rgba(0, 0, 0, 0.75);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 5rem 0 0;
    background: rgba(0, 0, 0, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.footer-social .social-link:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column a {
    color: var(--color-gray);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: var(--color-cyan);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--color-cyan);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-location svg {
    flex-shrink: 0;
    color: var(--color-cyan);
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--color-gray);
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--color-cyan);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.2);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-main {
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

/* ===== TABLET RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .brand-marquee-content {
        gap: 2rem;
    }
    
    .brand-icon {
        height: 60px;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 80vh;
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .page-header-content {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        max-width: 85%;
        text-wrap: balance;
        -webkit-text-wrap: balance;
        padding: 0 1rem;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Brand Icons */
    .brand-icons-section {
        padding: 2rem 0;
    }
    
    .brand-marquee-content {
        gap: 1.5rem;
    }
    
    .brand-icon {
        height: 50px;
    }
    
    /* Portfolio Slider */
    .portfolio-section {
        padding: 3rem 0;
    }
    
    /* Portfolio Overlay - Always visible on tablet/mobile */
    .portfolio-overlay {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    /* Talent Overlay - Always visible on tablet/mobile */
    .talent-overlay {
        opacity: 1 !important;
    }
    
    /* Hero adjustments for tablet */
    .hero {
        padding-top: 100px;
    }
    
    .hero-badge {
        margin-top: 1rem;
    }
    
    .portfolio-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Grids */
    .story-grid,
    .founders-grid,
    .philosophy-content,
    .services-grid,
    .process-grid,
    .talent-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Philosophy Block - Mobile Fix */
    .philosophy-block {
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 0.5rem;
    }
    
    .philosophy-block h3 {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 1.5rem;
    }
    
    .philosophy-block p {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 1rem;
    }
    
    .philosophy-content {
        padding: 0 1rem;
    }
    
    /* Philosophy Tabs */
    .philosophy-tabs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    /* Cards */
    .service-card,
    .talent-card,
    .founder-card {
        padding: 2rem;
    }
    
    /* Contact */
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Marquee */
    .marquee-content span {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-main {
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    /* Hide "For Talent" and "For Brands" footer columns on mobile */
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        display: none;
    }
    
    /* Touch Targets - Minimum 44x44px for accessibility */
    .nav-link,
    .btn,
    .social-link,
    .footer-column a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* ===== SMALL MOBILE RESPONSIVE ===== */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    /* Hero */
    .hero {
        min-height: 90vh; /* Increased from 75vh */
        padding-top: 100px; /* Increased from 80px */
        padding-bottom: 8rem; /* Increased padding to prevent scroll indicator overlap */
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-top: 1.5rem; /* Add space between menu and badge */
    }
    
    /* Scroll Indicator - prevent overlap with buttons */
    .scroll-indicator {
        bottom: 4.5rem; /* Moved further up */
    }
    
    /* Page Header */
    .page-header {
        padding: 7rem 0 3rem;
    }
    
    .page-header-content {
        padding: 0 1.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        max-width: 80%;
        text-wrap: balance;
        -webkit-text-wrap: balance;
        padding: 0 0.5rem;
    }
    
    /* Sections */
    section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* Brand Icons */
    .brand-icon {
        height: 40px;
    }
    
    /* Cards */
    .service-card,
    .talent-card,
    .founder-card {
        border-radius: 15px;
        padding: 1.5rem;
    }
    
    .service-card h3,
    .talent-card h3 {
        font-size: 1.25rem;
    }
    
    /* Contact Form */
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .input,
    .textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer */
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-social .social-link {
        width: 40px;
        height: 40px;
    }
    
    /* Portfolio */
    .portfolio-overlay h3 {
        font-size: 1rem;
    }
    
    .portfolio-btn {
        width: 35px;
        height: 35px;
    }
    
    /* Portfolio Navigation - Hide buttons on mobile (swipe enabled) */
    .portfolio-nav {
        display: none;
    }
    
    /* Portfolio Track - Enable touch scrolling */
    .portfolio-slider {
        overflow: hidden;
        touch-action: pan-y; /* Allow vertical scrolling */
        -webkit-overflow-scrolling: touch;
    }
    
    .portfolio-track {
        display: flex;
        gap: 1rem; /* Match mobile gap */
        pointer-events: none; /* Allow scroll through */
    }
    
    .portfolio-slide {
        flex: 0 0 100%;
        min-width: 100%;
        pointer-events: auto; /* Re-enable for slides */
    }
    
    /* Portfolio Overlay - Always visible on mobile */
    .portfolio-overlay {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .portfolio-embed:hover {
        transform: none; /* Disable hover transform on mobile */
    }
    
    /* Talent Overlay - Always visible on mobile */
    .talent-overlay {
        opacity: 1 !important;
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ===== LOADING ANIMATION ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 100%);
    background-size: 1000px 100%;
}

/* ===== SMOOTH SCROLL ===== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

