/* ========================================
   EPHEMERAL CONSULTING - MODERN MINIMALIST DESIGN
   Fresh, Clean, Bold Typography
   ======================================== */

/* Typography - Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Typography */
.ephemeral-modern {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ephemeral-modern * {
    box-sizing: border-box;
}

/* Page Container */
.ephemeral-modern {
    background: #0a0a0a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Container Utilities */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   STICKY CTA BAR
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(154, 213, 202, 0.2);
    padding: 1rem 2rem;
    z-index: 1000;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.sticky-text {
    color: #fff;
    font-size: 0.9375rem;
}

.btn-sticky {
    background: linear-gradient(135deg, #7B44C1, #1E96FC);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 68, 193, 0.4);
    color: #fff;
    text-decoration: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(-45deg, #7B44C1, #1E96FC, #9AD5CA, #7B44C1);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

.hero-content {
    max-width: 1000px;
}

.headline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.headline-line {
    display: block;
}

.headline-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.subheadline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.ephemeral-modern .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #7B44C1, #1E96FC);
    color: #fff;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.ephemeral-modern .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.ephemeral-modern .btn-primary:hover::before {
    left: 100%;
}

.ephemeral-modern .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(123, 68, 193, 0.4);
    color: #fff;
    text-decoration: none;
}

/* ========================================
   RESULTS BAR (REMOVED)
   ======================================== */
.results-bar {
    padding: 4rem 2rem;
    background: linear-gradient(90deg,
        rgba(123, 68, 193, 0.05) 0%,
        rgba(30, 150, 252, 0.05) 50%,
        rgba(123, 68, 193, 0.05) 100%);
    border-top: 1px solid rgba(154, 213, 202, 0.1);
    border-bottom: 1px solid rgba(154, 213, 202, 0.1);
    position: relative;
    z-index: 1;
}

.results-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #9AD5CA, #1E96FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.result-divider {
    width: 1px;
    height: 60px;
    background: rgba(154, 213, 202, 0.2);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg,
        rgba(154, 213, 202, 0.7) 0%,
        rgba(123, 68, 193, 0.5) 50%,
        rgba(30, 150, 252, 0.6) 100%);
    border-top: 2px solid rgba(154, 213, 202, 0.5);
    border-bottom: 2px solid rgba(154, 213, 202, 0.5);
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-modern {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(154, 213, 202, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-gradient {
    height: 8px;
    width: 100%;
}

.ai-gradient {
    background: linear-gradient(90deg, #7B44C1, #9AD5CA);
}

.systems-gradient {
    background: linear-gradient(90deg, #1E96FC, #9AD5CA);
}

.campaigns-gradient {
    background: linear-gradient(90deg, #9AD5CA, #7B44C1);
}

.service-content {
    padding: 2.5rem;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-bullets li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9375rem;
}

.service-bullets li:last-child {
    border-bottom: none;
}

/* ========================================
   SHARED SECTION UTILITIES
   ======================================== */
.section-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   CASE STUDY SECTION
   ======================================== */
.case-study {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.case-study-modern {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 4rem;
    border-left: 4px solid #9AD5CA;
}

.case-header {
    text-align: center;
    margin-bottom: 4rem;
}

.case-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9AD5CA;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.case-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.case-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.case-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-section {
    margin-bottom: 3rem;
}

.story-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1E96FC;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.story-section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.case-bullets li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.case-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #9AD5CA;
    font-weight: bold;
}

.case-results {
    position: sticky;
    top: 2rem;
}

.results-hero-card {
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.1), rgba(30, 150, 252, 0.1));
    border: 2px solid #9AD5CA;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.results-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(154, 213, 202, 0.1), transparent 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mega-stat {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.mega-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #9AD5CA, #1E96FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.mega-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-top: 0.75rem;
}

.roi-tag {
    display: inline-block;
    background: #7B44C1;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.supporting-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.stat-pill strong {
    color: #9AD5CA;
    font-weight: 700;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg,
        rgba(30, 150, 252, 0.08) 0%,
        rgba(154, 213, 202, 0.08) 100%);
    border-top: 1px solid rgba(154, 213, 202, 0.2);
    border-bottom: 1px solid rgba(154, 213, 202, 0.2);
}

.team-subheading {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    font-weight: 400;
}

.team-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(154, 213, 202, 0.3);
}

.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    margin: 0 auto 1rem;
    display: block;
    border: 2px solid rgba(154, 213, 202, 0.2);
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.team-expertise {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.team-expertise li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.team-expertise li:last-child {
    border-bottom: none;
}

/* ========================================
   WHY EPHEMERAL SECTION
   ======================================== */
.why-ephemeral {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg,
        rgba(30, 150, 252, 0.08) 0%,
        rgba(154, 213, 202, 0.08) 100%);
    border-top: 1px solid rgba(154, 213, 202, 0.2);
    border-bottom: 1px solid rgba(154, 213, 202, 0.2);
}

.why-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
}

.why-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-item {
    text-align: center;
    padding: 2rem 1rem;
}

.why-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #9AD5CA;
    margin-bottom: 0.75rem;
}

.why-item p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.why-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-style: italic;
    line-height: 1.6;
}

/* ========================================
   SECTION DIVIDER
   ======================================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(154, 213, 202, 0.3) 50%, transparent);
    margin: 4rem auto;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 8rem 0 6rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact .animated-gradient-contact {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(45deg, #9AD5CA, #1E96FC, #7B44C1, #9AD5CA);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.contact-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #334155;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-intro {
    font-size: 1.25rem;
    color: #475569;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.messages-container {
    margin-bottom: 2rem;
}

.message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.message-success {
    background: rgba(154, 213, 202, 0.1);
    border: 1px solid #9AD5CA;
    color: #9AD5CA;
}

.message-error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
}

.form-container {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.modern-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(10, 10, 10, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #0a0a0a !important;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    -webkit-text-fill-color: #0a0a0a;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.7);
    border-color: #1E96FC;
    box-shadow: 0 0 0 3px rgba(30, 150, 252, 0.2);
    color: #0a0a0a !important;
    -webkit-text-fill-color: #0a0a0a;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(10, 10, 10, 0.4);
    -webkit-text-fill-color: rgba(10, 10, 10, 0.4);
}

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

.form-field small {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

#thank-you-message {
    text-align: center;
    padding: 2rem;
}

.thank-you-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #334155;
    margin: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    margin-top: 1rem;
    font-size: 1.125rem;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 1;
}

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

.link-secondary {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.link-secondary:hover {
    color: #9AD5CA;
    text-decoration: none;
}

.link-divider {
    margin: 0 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   SCROLL-TRIGGERED ANIMATIONS
   ======================================== */

/* Scroll-triggered animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.animate-slide-left {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays for cards */
.service-modern:nth-child(1) {
    transition-delay: 0.1s;
}

.service-modern:nth-child(2) {
    transition-delay: 0.2s;
}

.service-modern:nth-child(3) {
    transition-delay: 0.3s;
}

.team-card:nth-child(1) {
    transition-delay: 0.1s;
}

.team-card:nth-child(2) {
    transition-delay: 0.2s;
}

.team-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .case-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .case-results {
        position: static;
    }

    .results-grid {
        gap: 2rem;
    }

    .result-divider {
        display: none;
    }

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

    .services-modern-grid {
        grid-template-columns: 1fr;
    }

    .sticky-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 80vh;
        padding: 4rem 1.5rem;
    }

    .section-container,
    .section-container-narrow {
        padding: 0 1.5rem;
    }

    .case-study-modern {
        padding: 2.5rem 1.5rem;
    }

    .results-hero-card {
        padding: 2rem 1.5rem;
    }

    .team-modern-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   WORK CAROUSEL SECTION
   ======================================== */
.work-carousel-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.work-carousel {
    position: relative;
    margin-top: 4rem;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.slide-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.slide-visual {
    position: relative;
}

.project-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.placeholder-visual {
    aspect-ratio: 16/10;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.slide-details {
    padding: 2rem 0;
}

.project-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9AD5CA;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.project-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.project-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.project-components,
.project-differentiators {
    margin-bottom: 2rem;
}

.project-components h4,
.project-differentiators h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1E96FC;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.project-components ul,
.project-differentiators ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-components li,
.project-differentiators li {
    padding: 0.5rem 0 0.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    position: relative;
    line-height: 1.6;
}

.project-components li::before,
.project-differentiators li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #9AD5CA;
}

.project-results {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-stat-inline {
    background: rgba(154, 213, 202, 0.1);
    border: 1px solid rgba(154, 213, 202, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.result-stat-inline strong {
    color: #9AD5CA;
    font-weight: 700;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(154, 213, 202, 0.2);
    border-color: #9AD5CA;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -80px;
}

.carousel-nav.next {
    right: -80px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator:hover {
    background: rgba(154, 213, 202, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: #9AD5CA;
    width: 32px;
    border-radius: 6px;
}

/* ========================================
   SMOOTH SCROLLING - DISABLED (causing scroll lock)
   ======================================== */
/* html {
    scroll-behavior: smooth;
} */

/* ========================================
   RESPONSIVE - CAROUSEL
   ======================================== */
@media (max-width: 968px) {
    .slide-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .carousel-nav.prev {
        left: -20px;
    }

    .carousel-nav.next {
        right: -20px;
    }
}

@media (max-width: 640px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .slide-details {
        padding: 1rem 0;
    }
}
