/* ========================================
   CG Experts - Main Stylesheet
   Light Theme, Clean, Conversion-Optimized
   ======================================== */

/* CSS Variables - Light Theme */
:root {
    --accent-main: #CFFF04;
    --accent-blue-mid: #4a8aae;
    --bg-primary: #fafafa;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --text-primary: #0a0a0a;
    --text-secondary: #666666;
    --text-muted: #888888;
    --border-color: #e5e5e5;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 60px rgba(207, 255, 4, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-blue-mid);
}

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

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .nav-toggle {
        display: none;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-main);
    color: #0a0a0a !important;
    box-shadow: 0 2px 8px rgba(207, 255, 4, 0.3);
}

.btn-primary:hover {
    background: #b8e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(207, 255, 4, 0.4);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: #f5f5f5;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(207, 255, 4, 0.25) 0%,
        rgba(74, 138, 174, 0.15) 30%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(207, 255, 4, 0.1);
    border: 1px solid rgba(207, 255, 4, 0.2);
    border-radius: 30px;
    width: fit-content;
    font-size: 0.85rem;
    color: #7a8500;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title .thin-line {
    font-weight: 300;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-main), var(--accent-blue-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-video-container {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    --mouse-x: -500px;
    --mouse-y: -500px;
}

.hero-video-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: radial-gradient(
        400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(207, 255, 4, 0.6) 0%,
        rgba(207, 255, 4, 0.6) 30%,
        transparent 70%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 2px;
    pointer-events: none;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-clients {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    text-align: center;
    font-weight: 400;
    max-width: 700px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* ========================================
   Process/Timeline Section
   ======================================== */
.process {
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff, transparent);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    bottom: -100px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 15%,
        rgba(255, 255, 255, 0.7) 35%,
        rgba(255, 255, 255, 0.5) 55%,
        rgba(255, 255, 255, 0.3) 75%,
        rgba(255, 255, 255, 0.1) 90%,
        rgba(255, 255, 255, 0) 100%
    );
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.process .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue-mid);
    margin-bottom: 16px;
}

/* Timeline Layout */
.timeline {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, rgba(207, 255, 4, 0), rgba(207, 255, 4, 1) 18%, rgba(207, 255, 4, 1) 82%, rgba(207, 255, 4, 0));
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-step {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.step-left-content,
.step-right-content {
    flex: 1;
    padding: 0 2rem;
}

.step-left-content {
    display: flex;
    justify-content: flex-end;
}

.step-right-content {
    display: flex;
    justify-content: flex-start;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    width: 4.5rem;
    height: 4.5rem;
    background: var(--accent-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(207, 255, 4, 0.3);
    z-index: 2;
    position: relative;
}

.step-image {
    position: relative;
    flex-shrink: 0;
    width: 480px;
    height: 270px;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.8s ease-in-out;
    display: block;
}

/* For image cycling containers */
.image-cycle img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.image-cycle img.active {
    opacity: 1;
    position: relative;
}

.step-text {
    max-width: 400px;
    text-align: left;
}

.step-left-content .step-text {
    text-align: right;
}

.step-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.step-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    opacity: 0.7;
    font-style: italic;
    line-height: 1.4;
}

/* Reveal Slider for Step 02 */
.reveal-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.reveal-slider-container .reveal-before {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    opacity: 1;
}

.reveal-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.reveal-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    opacity: 1;
}

.reveal-line-vertical {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-main);
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 0 16px rgba(207, 255, 4, 0.8), 0 0 32px rgba(207, 255, 4, 0.4);
}

/* Pricing Container and Toggle */
.pricing-container {
    margin-top: 1rem;
}

.pricing-toggle {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--accent-main);
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-toggle:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-panel {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    max-width: 400px;
}

.pricing-panel.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.slider-top-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.duration-top,
.price-top {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-top {
    color: var(--text-primary);
}

.starting-at {
    font-size: 0.75rem;
    font-weight: 400;
    font-style: italic;
    color: #999;
    opacity: 0.7;
}

.duration-slider {
    width: 100%;
    display: block;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    border-radius: 2px;
    outline: none;
    margin: 1rem 0;
}

.duration-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-main);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quality-toggles {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.quality-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #ddd;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.quality-btn:hover {
    border-color: var(--accent-main);
    color: var(--text-primary);
}

.quality-btn.active {
    background: var(--accent-main);
    border-color: var(--accent-main);
    color: #000;
    font-weight: 600;
}

/* ========================================
   Portfolio Section
   ======================================== */
.portfolio {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image,
.portfolio-video {
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.portfolio-image img,
.portfolio-video video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}



.portfolio-content {
    padding: 24px;
}

.portfolio-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue-mid);
    margin-bottom: 8px;
}

.portfolio-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.portfolio-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   Team Section (Index Page)
   ======================================== */
.team {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-card.featured {
    border: 2px solid var(--accent-main);
}

.team-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f0f0f0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-image.initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-main);
}

.team-image.initials span {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.team-content {
    padding: 24px;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Team Page (team.html)
   ======================================== */
.team-hero {
    padding: 160px 0 80px;
    background: var(--bg-primary);
    text-align: center;
}

.team-page {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Team Member Image */
.member-image.multiplied {
    position: relative;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .team-member {
        grid-template-columns: 1fr 1fr;
    }
}

.member-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: multiply;
}

.member-image.initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-main);
}

.member-image.initials span {
    font-size: 6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.member-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.member-role {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-blue-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.member-nickname {
    display: block;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.member-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 120px 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: var(--transition-base);
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-main);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--accent-main);
    background: linear-gradient(145deg, var(--bg-card), rgba(207, 255, 4, 0.05));
}

.service-card .badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-main);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   ICP Section
   ======================================== */
.icp-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.icp-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.icp-content .section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(207, 255, 4, 0.1);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: 24px;
}

.icp-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.icp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.icp-card {
    background: var(--bg-primary);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.icp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.icp-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.icp-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.icp-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.icp-roles {
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 32px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.icp-roles p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.icp-roles strong {
    color: var(--text-primary);
}

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

@media (max-width: 500px) {
    .icp-grid {
        grid-template-columns: 1fr;
    }
    
    .icp-section {
        padding: 80px 0;
    }
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 120px 0;
    background: var(--text-primary);
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.info-item:hover {
    opacity: 0.8;
}

.info-icon-large {
    font-size: 48px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1;
}

.info-text-large {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}

.contact-clients {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-items {
        gap: 40px;
    }
    
    .info-icon-large {
        font-size: 36px;
    }
    
    .info-text-large {
        font-size: 16px;
    }
}

/* ========================================
   Jobs Page
   ======================================== */
.jobs-hero {
    padding: 160px 0 80px;
    background: var(--bg-secondary);
    text-align: center;
}

.why-join {
    padding: 80px 0;
    background: var(--bg-primary);
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-join-card {
    background: var(--bg-secondary);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.why-join-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.why-join-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.why-join-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.why-join-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.open-positions {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.positions-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.job-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: background 0.2s;
}

.job-header:hover {
    background: var(--bg-secondary);
}

.job-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    padding: 4px 12px;
    border-radius: 20px;
}

.job-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.job-toggle:hover {
    background: var(--accent-main);
}

.toggle-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
}

.job-details {
    display: none;
    padding: 0 32px 32px;
    border-top: 1px solid var(--border-color);
}

.job-card.expanded .job-details {
    display: block;
}

.job-section {
    margin-top: 24px;
}

.job-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-section ul {
    margin-left: 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.job-apply {
    margin-top: 32px;
    display: inline-block;
}

.general-application {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.general-application h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.general-application p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hiring-process {
    padding: 80px 0;
    background: var(--bg-primary);
}

.process-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--accent-main);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-join-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        padding: 20px 24px;
    }
    
    .job-details {
        padding: 0 24px 24px;
    }
    
    .job-title {
        font-size: 18px;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0 30px;
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact h4,
.footer-legal h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-contact p,
.footer-legal p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--accent-main);
    transition: opacity 0.2s;
}

.footer-contact a:hover {
    opacity: 0.8;
}

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

/* Mobile Responsive */
@media (max-width: 968px) {
    .timeline::before {
        display: none;
    }
    
    .timeline-step {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-left-content,
    .step-right-content {
        width: 100%;
        padding: 0;
        justify-content: center;
    }
    
    .step-left-content .step-text {
        text-align: left;
    }
    
    .step-number {
        order: -1;
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }
    
    .step-image {
        width: 100%;
        max-width: 400px;
        height: 220px;
    }
    
    .step-text {
        max-width: 400px;
        text-align: center;
    }
    
    .pricing-panel {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 1.5rem 4rem;
        min-height: auto;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .process {
        padding: 80px 0;
    }
    
    .timeline {
        gap: 60px;
    }
    
    .step-text h3 {
        font-size: 1.4rem;
    }
}
