/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 25%, #141414 50%, #0f0f0f 75%, #141414 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* CSS Variables - Dark Theme with Orange Accents */
:root {
    --primary: #ff6b35 !important;
    --primary-light: #ff8c5a !important;
    --primary-dark: #e55a2b !important;
    --secondary: #ffab00 !important;
    --accent: #ffd54f !important;
    --background: #141414 !important;
    --foreground: #ffffff !important;
    --muted: #2a2a2a !important;
    --muted-foreground: #cccccc !important;
    --border: #333333 !important;
    --gradient-start: #ff6b35 !important;
    --gradient-end: #ffab00 !important;
    --container-padding: 1rem;
    --section-padding: 4rem 0;
    --border-radius: 0.5rem;
}

/* Typography */
.nav-font {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: -0.025em;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animated-gradient {
    background: linear-gradient(-45deg, #ff6b35, #ffab00, #e55a2b, #ff8c5a);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

.section {
    padding: var(--section-padding);
}

.section-alt {
    background: rgba(26, 26, 26, 0.5);
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    padding: 0.5rem 0;
    gap: 3rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.2;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-toggle:hover {
    color: var(--primary);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-dropdown-menu .nav-link:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.nav-link {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    background: rgba(26, 26, 26, 0.95);
    border-top: 1px solid var(--border);
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--animated-gradient, linear-gradient(135deg, var(--gradient-start), var(--gradient-end)));
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--foreground);
    border-color: var(--border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-mobile {
    width: 100%;
    margin-top: 1rem;
}

/* Hero Banner Section */
.hero-banner {
    margin: 2rem 0;
    text-align: center;
}

.hero-banner-image {
    width: 100%;
    max-width: 560px; /* Reduced by 30% from 800px */
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-banner-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

/* Story Hero Section */
.story-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('Images/hero-story-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 5rem; /* Account for fixed header */
}

.story-hero-content {
    text-align: center;
    z-index: 2;
}

.story-hero-text {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Outfit', 'Inter', sans-serif;
}

/* What We Do Section */
.what-we-do-section {
    padding: var(--section-padding);
    background: var(--background);
}

.what-we-do-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.what-we-do-content .section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Outfit', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.what-we-do-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin-top: 2rem;
}

.what-we-do-text p {
    margin-bottom: 1.5rem;
}

.whats-next-title {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #ffab00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2.5rem 0 1.5rem 0;
    font-family: 'Outfit', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.whats-next-image {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.whats-next-img {
    width: 36%; /* Increased by 20% from 30% */
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whats-next-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.next-chapter-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2.5rem 0 1.5rem 0;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.what-we-do-image {
    margin: 2rem 0;
    text-align: center;
}

.what-we-do-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-we-do-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.what-we-do-cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-section {
    text-align: center;
    padding: 2rem;
    background: var(--muted);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .what-we-do-cta {
        flex-direction: row;
        gap: 2rem;
    }
    
    .cta-section {
        flex: 1;
    }
}

.cta-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 4rem); /* Adjust height for header only */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 6rem; /* Add padding to ensure badge is visible below header */
    background: radial-gradient(circle at 20% 80%, rgba(42, 42, 42, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(42, 42, 42, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(42, 42, 42, 0.2) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.2), rgba(42, 42, 42, 0.2));
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    padding-top: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--muted);
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item .icon {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 1rem;
}

/* Section Headers */
.section-header {
    max-width: 64rem;
    margin: 0 auto 4rem;
    text-align: center;
}

/* Growth Visual Section */
.growth-visual {
    text-align: center;
    margin: 3rem 0 4rem;
}

.growth-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.growth-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

/* Talent Visual Section */
.talent-visual-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0 4rem;
    align-items: center;
}

.talent-image-left,
.talent-image-right {
    text-align: center;
}

.talent-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.talent-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Talent Visual */
@media (max-width: 768px) {
    .talent-visual-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0 3rem;
    }
    
    .talent-image {
        max-width: 350px;
    }
}

/* Scale Smarter Visual Section */
.scale-visual {
    text-align: center;
    margin: 2.5rem 0;
}

.scale-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scale-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

/* Enhanced visual impact for the lightbulb concept */
@media (max-width: 768px) {
    .scale-image {
        max-width: 400px;
    }
    
    .scale-visual {
        margin: 2rem 0;
    }
}

/* Who It's For Visual Section */
.who-visual {
    text-align: center;
    margin: 3rem 0 4rem;
}

.who-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18);
}

/* Responsive design for Who section */
@media (max-width: 768px) {
    .who-image {
        max-width: 450px;
    }
    
    .who-visual {
        margin: 2.5rem 0 3rem;
    }
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--muted);
    border-radius: var(--border-radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Why It Works */
.why-it-works {
    max-width: 48rem;
    margin: 0 auto;
}

/* Fractional Talent Section */
.fractional-talent-section {
    margin: 2rem 0 3rem 0;
    text-align: center;
}

.fractional-talent-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.fractional-talent-image {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.fractional-talent-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fractional-talent-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.fractional-talent-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
}

/* Fractional Power Section */
.fractional-power-section {
    margin-top: 4rem;
    text-align: center;
}

.fractional-power-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.two-column-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.cta-column {
    flex: 1;
    text-align: center;
    padding: 2.5rem;
    background: var(--muted);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.cta-column p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button-secondary {
    background: #4a4a4a !important;
    border: 2px solid #6a6a6a !important;
    color: white !important;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(74, 74, 74, 0.25) !important;
}

.cta-button-secondary:hover {
    background: #5a5a5a !important;
    border-color: #7a7a7a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 74, 74, 0.35) !important;
}

.cta-button-with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button-with-icon .button-icon:first-child {
    order: -1;
}

.cta-button-with-icon .button-icon:last-child {
    order: 1;
}

.button-icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
    flex-shrink: 0;
}

.cta-description {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--muted-foreground);
    font-style: italic;
}

@media (min-width: 768px) {
    .two-column-cta {
        flex-direction: row;
        gap: 3rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-item .icon {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Talent Network */
.talent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.talent-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.talent-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.talent-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.talent-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.talent-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Audience Cards */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.audience-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--muted);
    border-radius: var(--border-radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.audience-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    position: relative;
}

.audience-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.audience-icon svg:nth-child(2) {
    position: absolute;
    margin-left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
}

.audience-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.audience-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    background: var(--muted);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-height: 250px;
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-number span {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
    text-align: center;
}

.process-step p {
    color: var(--muted-foreground);
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

/* Talent Profile Section */
.talent-profile-section {
    margin-bottom: 4rem;
}

.profile-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-item {
    background: var(--muted);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.profile-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.profile-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.profile-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.profile-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.profile-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Fit Section */
.fit-section {
    margin-bottom: 4rem;
}

.fit-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.5rem;
}

.fit-item {
    background: var(--muted);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fit-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.fit-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.fit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.fit-item p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* Roles Section */
.roles-section {
    margin-bottom: 4rem;
}

.roles-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.talent-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.role-item {
    background: var(--muted);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.role-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.role-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    line-height: 1.3;
}

.role-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* Roles Visual Section */
.roles-visual {
    text-align: center;
    margin: 3rem 0;
}

.roles-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roles-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

/* Responsive design for roles visual */
@media (max-width: 768px) {
    .roles-image {
        max-width: 400px;
    }
    
    .roles-visual {
        margin: 2rem 0;
    }
}

/* Go-Fractional Section */
.go-fractional-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.business-types {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.business-intro {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.business-box {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.business-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 10px;
}

.business-box:hover::before {
    opacity: 0.1;
}

.business-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.business-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.business-box p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .business-box {
        padding: 1.25rem;
    }
    
    .business-icon {
        font-size: 2rem;
    }
    
    .business-intro {
        font-size: 1.25rem;
    }
}

/* Contact and CTA Section */
.contact-cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-email {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.email-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.primary-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-color: transparent;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    filter: brightness(1.1);
}

.secondary-button {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.secondary-button:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
    .contact-cta-section {
        padding: 2rem 1rem;
        margin: 3rem 0;
    }
    
    .contact-email {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        min-width: 100%;
        max-width: 300px;
    }
}

/* Fractional Professionals Section */
.fractional-professionals-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: rgba(26, 26, 26, 0.4);
    border-radius: 16px;
    text-align: center;
}

.career-challenge-text {
    font-size: 1.3rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 2rem auto;
    max-width: 800px;
    font-style: italic;
    text-align: center;
}

.fractional-image-container {
    margin: 3rem 0;
    text-align: center;
}

.fractional-section-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fractional-section-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
}

.professional-opportunity-text {
    font-size: 1.2rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 2rem auto 3rem auto;
    max-width: 700px;
    text-align: center;
}

.fractional-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.fractional-talent-btn {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
    min-width: 320px;
}

@media (max-width: 768px) {
    .fractional-professionals-section {
        padding: 2rem 1rem;
        margin: 3rem 0;
    }
    
    .career-challenge-text {
        font-size: 1.1rem;
        margin: 1.5rem auto;
    }
    
    .professional-opportunity-text {
        font-size: 1.1rem;
        margin: 1.5rem auto 2rem auto;
    }
    
    .fractional-section-image {
        max-width: 100%;
    }
    
    .fractional-talent-btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        min-width: 280px;
    }
}

/* Experience Section */
.experience-section {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--muted);
    border-radius: var(--border-radius);
    padding: 2rem 3rem;
    border: 2px solid var(--primary);
    max-width: 40rem;
}

.experience-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.experience-icon svg {
    width: 2rem;
    height: 2rem;
}

.experience-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.experience-text p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* Talent CTA Section */
.talent-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

/* Choose Us Section */
.choose-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 96rem;
    margin: 0 auto;
}

.choose-us-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-impact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-impact p {
    color: var(--muted-foreground);
}

/* FAQ Section */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--muted);
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    max-width: 64rem;
    margin: 0 auto 5rem;
    text-align: center;
}

.scale-smarter-content {
    text-align: left;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.scale-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    text-align: center;
}

.how-to-start {
    margin-bottom: 3rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Scoped to how-to-start section to avoid conflicts */
.how-to-start .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--primary);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
    height: auto;
    min-height: 0;
}

.how-to-start .process-step:hover {
    background: rgba(26, 26, 26, 0.9);
    border-color: var(--primary-light);
}

.how-to-start .step-number {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex: 0 0 auto;
    margin: 0;
}

.how-to-start .process-step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    text-align: left;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.how-to-start .process-step p {
    color: var(--muted-foreground);
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

.how-to-start .process-step > div {
    margin: 0;
    text-align: left;
}

/* Remove trailing margins from last elements */
.how-to-start .process-step > :last-child,
.how-to-start .process-step p:last-child,
.how-to-start .process-step h4:last-child {
    margin-bottom: 0;
}

.why-next-chapter {
    margin-bottom: 3rem;
}

.benefits-list .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--muted);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.checkmark {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.who-its-for {
    margin-bottom: 2rem;
}

.target-audience {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.audience-item {
    padding: 0.75rem 1rem;
    background: var(--muted);
    border-radius: var(--border-radius);
    color: var(--muted-foreground);
    border-left: 3px solid var(--primary);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Career Section */
.career-section {
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem;
    background: var(--muted);
    border-radius: 1rem;
}

/* Talent Summary */
.talent-summary {
    max-width: 48rem;
    margin: 3rem auto 0;
    text-align: center;
}

.talent-note {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.talent-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: left;
}

.category-item {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    padding: 0.5rem 0;
}

/* Social Impact List */
.social-impact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.social-impact-list li {
    padding: 0.25rem 0;
    color: var(--muted-foreground);
    position: relative;
    padding-left: 1.5rem;
}

.social-impact-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Privacy Policy Styles */
.privacy-section {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.privacy-content {
    max-width: 48rem;
    margin: 0 auto;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-intro {
    background: var(--muted);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.privacy-intro p {
    margin-bottom: 1rem;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-section-content {
    margin-bottom: 3rem;
}

.privacy-section-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.privacy-section-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: var(--foreground);
}

.privacy-section-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.privacy-section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.data-categories {
    margin-top: 2rem;
}

.data-categories h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: var(--primary);
}

.data-categories p {
    margin-bottom: 1.5rem;
}

.contact-info {
    background: var(--muted);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.privacy-back {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.career-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.career-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 2rem;
}

.career-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.career-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.career-item .icon {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.career-item-wide {
    grid-column: 1 / -1;
    justify-content: center;
}

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

/* Our Team Section */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--muted);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-image {
    margin-bottom: 1.5rem;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.member-photo:hover {
    transform: scale(1.05);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.member-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.member-email {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.member-email:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Contact Us Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 171, 0, 0.1) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-section {
    padding: 4rem 0;
    background: #141414;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container,
.contact-info-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.contact-form-header p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.contact-info {
    height: 100%;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2;
}

.contact-method-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-method-content p,
.contact-method-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.5;
}

.contact-method-content a:hover {
    color: var(--primary);
}

/* Contact Call-to-Action Section Styles */
.contact-cta-section {
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 171, 0, 0.05) 100%);
    z-index: 1;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-cta-button-wrapper {
    margin-bottom: 3rem;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin: 0.5rem;
}

.contact-cta-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.contact-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.contact-cta-btn .btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.contact-cta-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-cta-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-cta-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.contact-cta-card-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.contact-info-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.contact-info-card {
    text-align: left;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-email {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.contact-info-disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.contact-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact-cta-image:hover {
    transform: scale(1.02);
}

/* Mobile Responsiveness for Contact CTA */
@media (max-width: 968px) {
    .contact-cta-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-info-card {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-cta-title {
        font-size: 2rem;
    }
    
    .contact-cta-card {
        padding: 1.5rem;
    }
    
    .contact-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }
    
    .contact-form-header h2 {
        font-size: 1.75rem;
    }
}

/* Footer */
.footer {
    background: var(--muted);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-link {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* About Us Page Styles */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 5rem;
    background: radial-gradient(circle at 20% 80%, rgba(42, 42, 42, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(42, 42, 42, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(42, 42, 42, 0.2) 0%, transparent 50%);
}

.about-hero-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.about-hero-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
}

.about-hero-text {
    text-align: left;
}

.about-hero-image {
    display: flex;
    justify-content: center;
}

.about-hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.about-content {
    max-width: 80rem;
    margin: 0 auto;
}

.about-text-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-text-centered {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.about-text-image.reverse {
    direction: rtl;
}

.about-text-image.reverse > * {
    direction: ltr;
}

.about-text {
    max-width: none;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: translateY(-5px);
}

.transformation-highlights {
    margin-top: 2rem;
}

.highlight-item {
    background: var(--muted);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.highlight-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Social Mission Section */
.social-mission-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.mission-text {
    margin-top: 2rem;
}

.mission-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.mission-conclusion {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.3);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.mission-passion {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.mission-welcome {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0;
}

/* Story Hero Responsive */
@media (max-width: 768px) {
    .story-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .story-hero-text {
        padding: 2rem 2.5rem;
        margin: 0 1rem;
    }
    
    .whats-next-img {
        width: 60%;
    }
    
    .what-we-do-text {
        font-size: 1rem;
    }
    
    .what-we-do-content .section-title {
        font-size: 2.5rem;
    }
    
    .whats-next-title {
        font-size: 1.75rem;
    }
    
    .next-chapter-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .story-hero-text h1 {
        font-size: 2rem;
    }
    
    .story-hero-text {
        padding: 1.5rem 2rem;
    }
    
    .whats-next-img {
        width: 80%;
    }
    
    .what-we-do-content {
        padding: 0 1rem;
    }
    
    .what-we-do-content .section-title {
        font-size: 2rem;
    }
    
    .whats-next-title {
        font-size: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero {
        padding-top: 5rem; /* Reduced padding for mobile */
    }
    
    .hero-banner-image {
        max-width: 390px; /* 30% reduction for mobile (560px * 0.7) */
    }
}

@media (min-width: 640px) {
    .banner-image {
        max-width: 500px;
    }
    
    .hero-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .about-text-image {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .about-text-image.reverse {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-text-image.reverse .about-text {
        order: 2;
    }
    
    .about-text-image.reverse .about-image {
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .talent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .career-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .talent-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        justify-content: center;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
        --section-padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .about-hero-title {
        font-size: 3.75rem;
    }
    
    .about-hero-content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero-text {
        text-align: center;
    }
    
    .about-text-image {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .talent-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    :root {
        --section-padding: 8rem 0;
    }
    
    .hero-title {
        font-size: 5rem;
    }
}