/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Modern and Bold */
    --primary-color: #0f0f23;
    --secondary-color: #1a1a2e;
    --accent-primary: #00f5d4;
    --accent-secondary: #7b2cbf;
    --accent-tertiary: #f72585;
    --accent-gradient: linear-gradient(135deg, #00f5d4 0%, #00d4ff 50%, #7b2cbf 100%);
    --text-color: #1a1a2e;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --text-white: #ffffff;
    --bg-color: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(0, 245, 212, 0.3);
    --shadow-glow-purple: 0 0 30px rgba(123, 44, 191, 0.3);
    
    /* Spacing */
    --max-width: 1400px;
    --spacing-unit: 1rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Navigation - Modern Glass Effect */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.nav-brand a:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.2px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-primary);
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu .cta-primary {
    background: var(--accent-primary);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    font-weight: 700;
}

.nav-menu .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #00e5c4;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent-gradient);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Section - Bold and Modern */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
    filter: blur(40px);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }
}

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

/* Simplified Animations - No staggering to prevent overlap */
.hero h1,
.hero-subtitle,
.hero-description,
.hero-cta,
.hero-statement {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1.5px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.rotating-text {
    display: inline-block;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rotating-text::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background: var(--accent-primary);
    margin-left: 8px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.rotating-text.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

.rotating-text.fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-line {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 500;
    font-style: italic;
}

/* Trusted By Logo Slider */
.trusted-by {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.trusted-by-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-lighter);
    font-weight: 600;
    margin-bottom: 2rem;
}

.logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    display: flex;
    align-items: center;
    gap: 6rem;
    padding: 0 3rem;
}

.client-logo {
    height: 95px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

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

.hero-statement {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: left;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.hero-statement::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--accent-gradient);
}

.hero-statement p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.hero-statement .highlight {
    font-size: 1.3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1.5rem;
    font-weight: 700;
}

/* Buttons - Modern with Gradients */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: #00e5c4;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

/* Upwork Credentials Section */
.upwork-credentials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid var(--border-light);
}

.upwork-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.upwork-stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.upwork-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.upwork-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.badge-icon {
    width: 32px;
    height: 32px;
    color: #14a800;
}

.upwork-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.upwork-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    font-size: 2rem;
    color: #ffb800;
    letter-spacing: 2px;
}

.rating-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upwork-stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

.upwork-certifications {
    margin: 4rem 0 3rem;
    text-align: center;
}

.upwork-certifications h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}

.cert-icon {
    font-size: 1.5rem;
}

.cert-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.upwork-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Success Stories Section */
.success-stories-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.success-stories-section .section-intro {
    margin-bottom: 0;
}

.success-stories-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .success-stories-layout {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
    }
}

.story-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-tab {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-tab:hover {
    border-color: var(--accent-primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.story-tab.active {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.05) 0%, rgba(123, 44, 191, 0.05) 100%);
    box-shadow: var(--shadow-md);
}

.story-tab h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-tab p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.story-content-area {
    position: relative;
}

.story-content {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.story-content.active {
    display: block;
}

.story-testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--accent-primary);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.story-testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-testimonial .testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
}

.story-testimonial .testimonial-author strong {
    color: var(--text-color);
    font-size: 1rem;
}

.story-testimonial .testimonial-author span {
    font-size: 0.9rem;
}

.story-highlights {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.story-highlights h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-highlights h3:not(:first-child) {
    margin-top: 2rem;
}

.story-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-primary);
    margin-top: 1rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.highlight-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.05) 0%, rgba(123, 44, 191, 0.05) 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.highlight-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
}

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

.story-cta .btn {
    min-width: 250px;
}

.story-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.story-details p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.story-details p:last-of-type {
    margin-bottom: 0;
}

.story-details p strong {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.story-details p:first-child strong {
    margin-top: 0;
}

.story-highlights .results-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.story-highlights .results-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
}

.story-highlights .results-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.section-alt {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-color);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.section-conclusion {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 2rem;
    font-weight: 500;
}

.section-note {
    font-size: 1rem;
    color: var(--text-lighter);
    font-style: italic;
    margin-top: 1.5rem;
}

.emphasis {
    font-weight: 700;
    font-size: 1.3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2rem 0;
    line-height: 1.6;
}

/* Qualifier Section */
.section-qualifier {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.qualifier-list {
    list-style: none;
    margin: 2.5rem 0;
    display: grid;
    gap: 1.25rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.qualifier-list li {
    padding: 1.5rem 1.75rem 1.5rem 4rem;
    position: relative;
    font-size: 1.15rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow: var(--shadow-xs);
}

.qualifier-list li::before {
    content: "✓";
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qualifier-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.qualifier-conclusion {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 2rem;
}

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

.qualifier-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.qualifier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.qualifier-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.qualifier-card:hover::before {
    transform: scaleX(1);
}

.qualifier-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.qualifier-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}

/* Feature Lists - Enhanced */
.feature-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.feature-list li {
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    position: relative;
    font-size: 1.15rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.feature-list li:hover::before {
    transform: translateY(-50%) translateX(5px);
}

.execution-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.execution-list li {
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    position: relative;
    font-size: 1.15rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.execution-list li::before {
    content: "✓";
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.execution-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.execution-list li:hover::before {
    transform: translateY(-50%) scale(1.2);
}

/* Problem List */
.section-problem {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-list li {
    padding: 1rem 1.5rem 1rem 3rem;
    position: relative;
    font-size: 1.1rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgba(247, 37, 133, 0.2);
    font-weight: 500;
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-tertiary);
}

/* Process Steps */
.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 4rem auto;
    max-width: 1000px;
    position: relative;
}

.timeline-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 245, 212, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step:hover .step-content {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.timeline-connector {
    grid-column: 1;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Credibility List */
.credibility-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.credibility-list li {
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    position: relative;
    font-size: 1.1rem;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    font-weight: 500;
}

.credibility-list li::before {
    content: "→";
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Outcomes Grid - Card Design Enhanced */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.outcome-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.outcome-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.outcome-card:hover::before {
    transform: scaleX(1);
}

.outcome-card:hover::after {
    opacity: 1;
}

.outcome-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-primary);
}

.outcome-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.outcome-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.outcomes-footer {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 3rem;
}

.link-arrow {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.link-arrow:hover {
    gap: 0.75rem;
    text-decoration: underline;
}

/* Partnership Types */
.partnership-types {
    margin: 3rem 0;
}

.partnership-types p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 500;
}

.tiers-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.tier-preview-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tier-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-preview-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tier-preview-card:hover::before {
    transform: scaleX(1);
}

.tier-preview-card:hover::after {
    opacity: 1;
}

.tier-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-primary);
}

.tier-preview-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.tier-preview-card h3 a {
    transition: color 0.3s ease;
}

.tier-preview-card h3 a:hover {
    color: var(--accent-color);
    cursor: pointer;
}

.tier-preview-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.section-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Results Preview */
.results-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.results-section {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.results-section:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--accent-primary);
}

.results-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.case-study-list {
    list-style: none;
}

.case-study-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.case-study-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.case-study-list li:hover {
    color: var(--text-color);
    transform: translateX(5px);
}

/* CTA Section - Dark with Gradient */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite;
    filter: blur(60px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 35s ease-in-out infinite reverse;
    filter: blur(60px);
}

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

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.cta-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Case Studies System */

/* Case Studies Hero */
.case-studies-hero {
    text-align: center;
    padding: 4rem 0 3rem;
}

/* Outcomes Discovery Slider */
.outcomes-discovery {
    padding: 5rem 0;
}

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

.outcome-filter-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.outcome-filter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.outcome-filter-card:hover,
.outcome-filter-card.active {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.outcome-filter-card:hover::before,
.outcome-filter-card.active::before {
    transform: scaleX(1);
}

.outcome-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.outcome-filter-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.outcome-teaser {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.filter-reset {
    text-align: center;
    margin-top: 2rem;
}

/* Case Study Grid */
.case-study-tabs-section {
    padding: 5rem 0;
}

.case-study-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.case-study-preview {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.case-study-preview:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.case-study-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.outcome-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1) 0%, rgba(123, 44, 191, 0.1) 100%);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-secondary);
}

.case-snapshot {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.snapshot-item {
    font-size: 0.95rem;
    color: var(--text-light);
}

.snapshot-item strong {
    color: var(--text-color);
    font-weight: 600;
}

.case-problem,
.case-built,
.case-results {
    margin-bottom: 2rem;
}

.case-problem h4,
.case-built h4,
.case-results h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.case-problem p {
    color: var(--text-light);
    line-height: 1.7;
}

.case-built ul,
.case-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-built li,
.case-results li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.case-built li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

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

.case-results li strong {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.case-testimonial {
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.05) 0%, rgba(123, 44, 191, 0.05) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-primary);
    margin-bottom: 1.5rem;
}

.case-testimonial p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-attribution {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-attribution strong {
    color: var(--text-color);
    font-weight: 600;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.link-button {
    background: none;
    border: none;
    color: var(--accent-primary);
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
    font-weight: 600;
}

.link-button:hover {
    color: var(--accent-secondary);
}

/* Company Discovery Slider */
.company-discovery {
    padding: 4rem 0;
}

.company-slider {
    margin-top: 3rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.company-slide-track {
    display: flex;
    gap: 2rem;
}

.company-card {
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.company-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.company-outcome {
    font-size: 0.875rem;
    color: var(--text-light);
    display: block;
}

/* Individual Case Study Page Styles */

/* Case Study Hero */
.case-study-hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.case-study-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.case-study-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.meta-item {
    font-size: 1rem;
    color: var(--text-light);
}

.meta-item strong {
    color: var(--text-color);
    font-weight: 600;
}

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

.result-stat {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Case Study Content */
.case-study-content {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-wrapper h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.challenge-list,
.results-list {
    list-style: none;
    margin: 2rem 0;
}

.challenge-list li,
.results-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.7;
}

.challenge-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--accent-tertiary);
    font-weight: bold;
    font-size: 1.5rem;
}

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

/* Built Grid */
.built-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.built-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.built-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.built-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.built-item li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.built-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

/* Results Highlight */
.results-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.result-item {
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.05) 0%, rgba(123, 44, 191, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-primary);
    text-align: center;
}

.result-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.result-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 0;
}

.testimonial-block {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.testimonial-quote p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
}

/* Cross-Link Section */
.case-study-crosslink {
    padding: 5rem 0;
    background: var(--bg-alt);
}

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

.crosslink-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    box-shadow: var(--shadow-sm);
}

.crosslink-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.crosslink-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.crosslink-outcome {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.crosslink-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.crosslink-card .link-arrow {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #000000 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0;
    text-align: center;
    font-size: 0.95rem;
}

/* Page Content Styles */
.page-content {
    padding: 2rem 0;
}

.page-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.25;
}

.page-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.page-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.page-content ul, .page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Tier Pages */
.tier-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-light);
}

.tier-hero .breadcrumb {
    margin-bottom: 2rem;
}

.tier-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tier-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tier-tagline {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.tier-content {
    padding: 4rem 0;
}

.tier-content .content-wrapper {
    max-width: 100%;
}

.tier-content .content-wrapper h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tier-content .content-wrapper h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.tier-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.tier-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.tier-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.tier-feature-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.tier-feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.other-tiers-section {
    padding: 5rem 0;
}

.other-tiers-section h2 {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.other-tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.other-tier-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.other-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.other-tier-card:hover::before {
    transform: scaleX(1);
}

.other-tier-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.other-tier-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.tier-card-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.tier-card-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.other-tier-card .link-arrow {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1rem;
}

.contact-form {
    margin: 3rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(0, 245, 212, 0.1);
}

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

.case-study-placeholder {
    padding: 2.5rem;
    background-color: var(--bg-alt);
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.case-study-placeholder ul {
    margin-top: 1.5rem;
}

/* What We Do Page - Creative Enhancements */
.what-we-do-page .section:nth-child(even) {
    position: relative;
    overflow: hidden;
}

.what-we-do-page .section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
}

.what-we-do-page .section:nth-child(odd) {
    position: relative;
    overflow: hidden;
}

.what-we-do-page .section:nth-child(odd)::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Animated Content Wrapper */
.what-we-do-page .content-wrapper {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Enhanced Emphasis Text */
.what-we-do-page .emphasis {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1) 0%, rgba(123, 44, 191, 0.1) 100%) !important;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-primary);
    animation: pulseGlow 3s ease-in-out infinite;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.3rem;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 245, 212, 0.4);
    }
}

/* Creative Feature List with Stagger Animation */
.what-we-do-page .feature-list li {
    animation: slideInLeft 0.6s ease-out backwards;
    background: linear-gradient(to right, rgba(0, 245, 212, 0.02) 0%, white 50%);
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}

.what-we-do-page .feature-list li:nth-child(1) { animation-delay: 0.1s; }
.what-we-do-page .feature-list li:nth-child(2) { animation-delay: 0.2s; }
.what-we-do-page .feature-list li:nth-child(3) { animation-delay: 0.3s; }
.what-we-do-page .feature-list li:nth-child(4) { animation-delay: 0.4s; }
.what-we-do-page .feature-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.what-we-do-page .feature-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.what-we-do-page .feature-list li:hover::after {
    transform: scaleY(1);
}

/* Animated Tier Preview Cards */
.what-we-do-page .tier-preview-card {
    background: linear-gradient(135deg, white 0%, rgba(248, 250, 252, 0.5) 100%);
    animation: floatIn 0.8s ease-out backwards;
}

.what-we-do-page .tier-preview-card:nth-child(1) { animation-delay: 0.2s; }
.what-we-do-page .tier-preview-card:nth-child(2) { animation-delay: 0.4s; }
.what-we-do-page .tier-preview-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Creative Execution List */
.what-we-do-page .execution-list li {
    background: linear-gradient(135deg, white 0%, rgba(0, 245, 212, 0.02) 100%);
    animation: slideInRight 0.6s ease-out backwards;
    box-shadow: var(--shadow-xs);
}

.what-we-do-page .execution-list li:nth-child(1) { animation-delay: 0.1s; }
.what-we-do-page .execution-list li:nth-child(2) { animation-delay: 0.2s; }
.what-we-do-page .execution-list li:nth-child(3) { animation-delay: 0.3s; }
.what-we-do-page .execution-list li:nth-child(4) { animation-delay: 0.4s; }
.what-we-do-page .execution-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Problem List with Creative Styling */
.what-we-do-page .problem-list li {
    animation: popIn 0.5s ease-out backwards;
    background: linear-gradient(135deg, white 0%, rgba(247, 37, 133, 0.02) 100%);
    box-shadow: var(--shadow-xs);
    transform-origin: left;
}

.what-we-do-page .problem-list li:nth-child(1) { animation-delay: 0.1s; }
.what-we-do-page .problem-list li:nth-child(2) { animation-delay: 0.2s; }
.what-we-do-page .problem-list li:nth-child(3) { animation-delay: 0.3s; }

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-2deg);
    }
    60% {
        transform: scale(1.05) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Animated Section Headers */
.what-we-do-page .section h2 {
    position: relative;
    display: inline-block;
    animation: slideDown 0.8s ease-out;
}

.what-we-do-page .section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s backwards;
}

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Interactive Paragraphs */
.what-we-do-page .content-wrapper p {
    animation: fadeIn 0.8s ease-out;
    transition: transform 0.3s ease, color 0.3s ease;
}

.what-we-do-page .content-wrapper p:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

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

/* Creative Button Animations */
.what-we-do-page .btn {
    position: relative;
    overflow: hidden;
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.what-we-do-page .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.what-we-do-page .btn:hover::before {
    width: 300px;
    height: 300px;
}

.what-we-do-page .btn span {
    position: relative;
    z-index: 1;
}

/* Strong Text Highlight Effect */
.what-we-do-page strong {
    position: relative;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

/* Section Intro Text Enhancement */
.what-we-do-page .section-intro {
    position: relative;
    padding-left: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

.what-we-do-page .section-intro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    animation: slideDown 0.8s ease-out 0.3s backwards;
}

/* Tiers Preview Section Enhancement - Simple hover only */
.what-we-do-page .tier-preview-card h3 {
    position: relative;
    transition: color 0.3s ease;
}

.what-we-do-page .tier-preview-card:hover h3 {
    /* Simple color change on hover */
    color: var(--accent-secondary);
}

/* CTA Section Enhancement */
.what-we-do-page .cta-section h2 {
    animation: scaleIn 0.8s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.what-we-do-page .cta-buttons a {
    animation: slideUp 0.8s ease-out backwards;
}

.what-we-do-page .cta-buttons a:nth-child(1) {
    animation-delay: 0.2s;
}

.what-we-do-page .cta-buttons a:nth-child(2) {
    animation-delay: 0.4s;
}

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

/* What We Do Page - Additional Polish */

/* Normal cursor - custom cursor removed */

/* Micro-interaction: Subtle bounce on card click */
.what-we-do-page .tier-preview-card:active {
    animation: cardBounce 0.3s ease;
}

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

/* Smooth gradient text animation */
.what-we-do-page h2 {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

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

/* List item hover glow */
.what-we-do-page .feature-list li:hover,
.what-we-do-page .execution-list li:hover {
    box-shadow: 0 8px 25px rgba(0, 245, 212, 0.2);
}

/* Smooth transitions for all interactive elements */
.what-we-do-page .tier-preview-card,
.what-we-do-page .feature-list li,
.what-we-do-page .execution-list li,
.what-we-do-page .btn {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Loading state animation */
.what-we-do-page.loading * {
    animation-play-state: paused;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .what-we-do-page * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hover state for section backgrounds */
.what-we-do-page .section:hover::before {
    filter: blur(60px);
    opacity: 0.7;
}

/* Text selection styling */
.what-we-do-page ::selection {
    background: var(--accent-primary);
    color: var(--primary-color);
}

.what-we-do-page ::-moz-selection {
    background: var(--accent-primary);
    color: var(--primary-color);
}

/* Smooth opacity transition for content */
.what-we-do-page .content-wrapper > * {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Focus states for accessibility */
.what-we-do-page a:focus,
.what-we-do-page button:focus,
.what-we-do-page .btn:focus {
    outline: 3px solid var(--accent-primary);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

/* About Page Styling */
.about-page .about-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-page .about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about-page .about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out;
}

/* About Content Section */
.about-content-section {
    background: white;
    padding: 5rem 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.8rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.about-content p:nth-child(1) { animation-delay: 0.1s; }
.about-content p:nth-child(2) { animation-delay: 0.2s; }
.about-content p:nth-child(3) { animation-delay: 0.3s; }
.about-content p:nth-child(4) { animation-delay: 0.4s; }
.about-content p:nth-child(5) { animation-delay: 0.5s; }
.about-content p:nth-child(6) { animation-delay: 0.6s; }
.about-content p:nth-child(7) { animation-delay: 0.7s; }
.about-content p:nth-child(8) { animation-delay: 0.8s; }
.about-content p:nth-child(9) { animation-delay: 0.9s; }
.about-content p:nth-child(10) { animation-delay: 1s; }

.about-content .emphasis {
    display: block;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.08) 0%, rgba(123, 44, 191, 0.08) 100%) !important;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-primary);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.8;
    margin-top: 3rem;
    box-shadow: var(--shadow-sm);
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* Mission Section */
.about-page .about-mission {
    padding: 4rem 0;
    background: white;
}

.about-page .mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-page .mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    animation: slideDown 0.8s ease-out;
}

.about-page .mission-content .emphasis {
    display: inline-block;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.08) 0%, rgba(123, 44, 191, 0.08) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-primary);
    font-size: 1.3rem;
    line-height: 1.8;
    animation: scaleIn 0.8s ease-out 0.3s backwards;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatIn 0.6s ease-out backwards;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }
.about-card:nth-child(4) { animation-delay: 0.4s; }
.about-card:nth-child(5) { animation-delay: 0.5s; }

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Difference Section */
.about-difference {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.difference-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.difference-problem h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.problem-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(247, 37, 133, 0.2);
    margin-top: 2rem;
}

.problem-box p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.problem-box p:last-child {
    margin-bottom: 0;
}

.solution-box {
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1) 0%, rgba(123, 44, 191, 0.1) 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--accent-primary);
    box-shadow: var(--shadow-lg);
}

.solution-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.solution-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.solution-box .emphasis {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

/* About Tiers Grid */
.about-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.about-tier-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    animation: floatIn 0.6s ease-out backwards;
}

.about-tier-card:nth-child(1) { animation-delay: 0.2s; }
.about-tier-card:nth-child(2) { animation-delay: 0.4s; }
.about-tier-card:nth-child(3) { animation-delay: 0.6s; }

.about-tier-card.featured {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.about-tier-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-tier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.about-tier-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.tier-price-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.tier-label {
    font-size: 0.95rem;
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.about-tier-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.about-tier-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Operator Section */
.about-operator {
    background: white;
}

.operator-content {
    max-width: 900px;
    margin: 0 auto;
}

.operator-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.operator-content .section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.operator-statement {
    background: linear-gradient(to right, rgba(0, 245, 212, 0.05) 0%, rgba(123, 44, 191, 0.05) 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border-left: 6px solid var(--accent-primary);
}

.operator-statement p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.operator-statement .emphasis {
    display: block;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
    text-align: center;
    transition: all 0.3s ease;
    animation: popIn 0.5s ease-out backwards;
}

.approach-card:nth-child(1) { animation-delay: 0.1s; }
.approach-card:nth-child(2) { animation-delay: 0.2s; }
.approach-card:nth-child(3) { animation-delay: 0.3s; }
.approach-card:nth-child(4) { animation-delay: 0.4s; }
.approach-card:nth-child(5) { animation-delay: 0.5s; }

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.approach-card p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-page .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .difference-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid,
    .about-tiers-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-tier-card.featured {
        transform: scale(1);
    }
    
    .about-tier-card.featured:hover {
        transform: translateY(-8px) scale(1);
    }
}

/* Start Here Page - Sticky Banner */
.start-here-banner {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 0;
    height: 180px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.start-here-banner p {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Start Here Page Layout */
.start-here-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.start-here-content {
    max-width: 600px;
}

.start-here-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.start-here-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.start-here-form {
    position: relative;
}

/* Responsive for Start Here */
@media (max-width: 1024px) {
    .start-here-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .start-here-form .contact-form {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .start-here-banner {
        height: auto;
        padding: 2.5rem 0;
    }
    
    .start-here-banner p {
        font-size: 1.2rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
    
    .start-here-layout {
        margin-top: 2rem;
    }
    
    .start-here-form .contact-form {
        padding: 2rem !important;
    }
    
    .start-here-content {
        padding: 0;
    }
    
    .start-here-content .feature-list {
        margin-left: 0;
        padding-left: 1rem;
    }
}

/* Scroll Animations - Simplified */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .section h2 {
        font-size: 2.5rem;
        line-height: 1.25;
    }
    
    .tier-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .qualifier-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .timeline-step {
        grid-template-columns: 90px 1fr;
        gap: 1.5rem;
    }

    .step-number {
        width: 85px;
        height: 85px;
        font-size: 1.75rem;
    }

    .timeline-connector {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
    }

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

    .nav-menu .cta-primary {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.45rem;
        letter-spacing: -0.5px;
        line-height: 1.3;
    }

    .rotating-text {
        display: inline;
        font-size: 2.45rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-statement {
        padding: 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }
    
    .success-stories-section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .page-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .page-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .cta-section {
        padding: 5rem 0;
    }

    .cta-section h2 {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .container {
        padding: 0 1.5rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .qualifier-card {
        padding: 2rem 1.5rem;
    }

    .qualifier-icon {
        font-size: 2.5rem;
        height: 60px;
        margin-bottom: 1rem;
    }

    .qualifier-card p {
        font-size: 1rem;
    }

    .timeline-step {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .timeline-connector {
        height: 40px;
        width: 3px;
    }

    .tiers-preview,
    .results-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .outcome-card,
    .tier-preview-card {
        padding: 2rem;
    }

    .logo-slide {
        gap: 4rem;
    }

    .client-logo {
        height: 100px;
        max-width: 280px;
    }

    .trusted-by-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .outcomes-slider {
        grid-template-columns: 1fr;
    }
    
    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .case-snapshot {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .case-study-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .case-study-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-results {
        grid-template-columns: 1fr;
    }
    
    .built-grid {
        grid-template-columns: 1fr;
    }
    
    .results-highlight {
        grid-template-columns: 1fr;
    }
    
    .crosslink-grid {
        grid-template-columns: 1fr;
    }
    
    .company-slide-track {
        gap: 1rem;
    }
    
    .company-card {
        min-width: 240px;
    }
    
    .success-stories-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-tabs {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }
    
    .story-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .story-tabs::-webkit-scrollbar-track {
        background: var(--border-light);
        border-radius: 2px;
    }
    
    .story-tabs::-webkit-scrollbar-thumb {
        background: var(--accent-primary);
        border-radius: 2px;
    }
    
    .story-tab {
        flex: 0 0 auto;
        min-width: 280px;
        max-width: 280px;
    }
    
    .story-tab:hover {
        transform: translateY(-4px);
    }
    
    .story-tab {
        padding: 1rem;
    }
    
    .story-tab h4 {
        font-size: 1.1rem;
    }
    
    .story-tab p {
        font-size: 0.85rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-stat {
        padding: 1.25rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .highlight-label {
        font-size: 0.85rem;
    }
    
    .story-testimonial {
        padding: 1.5rem;
    }
    
    .story-testimonial p {
        font-size: 1rem;
    }
    
    .story-highlights {
        padding: 1.5rem;
    }
    
    .story-highlights h3 {
        font-size: 1.25rem;
    }
    
    .story-description {
        font-size: 0.95rem;
        padding-left: 0.75rem;
    }
    
    .story-highlights .results-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0 0.6rem 1.75rem;
    }
    
    .story-details p {
        font-size: 0.9rem;
    }
    
    .story-details p strong {
        font-size: 1rem;
    }
    
    .story-cta .btn {
        width: 100%;
        min-width: auto;
    }
    
    .upwork-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .upwork-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .upwork-number {
        font-size: 2.5rem;
    }
    
    .upwork-badge {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .badge-icon {
        width: 28px;
        height: 28px;
    }
    
    .stars {
        font-size: 1.5rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .cert-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cert-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.1rem;
        line-height: 1.3;
    }

    .rotating-text {
        display: inline;
        font-size: 2.1rem;
    }

    .rotating-text::after {
        width: 3px;
        margin-left: 4px;
    }
    
    .section h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .case-study-hero h1 {
        font-size: 2rem;
    }
    
    .outcome-filter-card {
        padding: 2rem 1.5rem;
    }
    
    .case-study-preview {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
    
    .story-tab {
        padding: 0.875rem;
        min-width: 240px;
        max-width: 240px;
    }
    
    .story-tab h4 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }
    
    .story-tab p {
        font-size: 0.8rem;
    }
    
    .story-tabs {
        gap: 0.5rem;
    }
    
    .story-testimonial {
        padding: 1.25rem;
    }
    
    .story-testimonial p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .story-highlights {
        padding: 1.25rem;
    }
    
    .story-highlights h3 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .story-description {
        font-size: 0.9rem;
        padding-left: 0.5rem;
        border-left-width: 2px;
    }
    
    .highlight-stat {
        padding: 1rem;
    }
    
    .highlight-number {
        font-size: 1.75rem;
    }
    
    .highlight-label {
        font-size: 0.8rem;
    }
    
    .story-highlights .results-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0 0.5rem 1.5rem;
    }
    
    .story-details p {
        font-size: 0.85rem;
    }
    
    .story-details p strong {
        font-size: 0.95rem;
    }
    
    .upwork-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .upwork-stat-card {
        padding: 1.25rem 1rem;
    }
    
    .upwork-number {
        font-size: 2rem;
    }
    
    .upwork-badge {
        font-size: 0.95rem;
    }
    
    .badge-icon {
        width: 24px;
        height: 24px;
    }
    
    .upwork-certifications h3 {
        font-size: 1.5rem;
    }
    
    .cert-badge {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .cert-icon {
        font-size: 1.25rem;
    }
    
    .tier-hero h1 {
        font-size: 2.5rem;
    }
    
    .tier-price {
        font-size: 2rem;
    }
    
    .tier-tagline {
        font-size: 1.25rem;
    }
    
    .tier-content .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .tier-content .content-wrapper h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .other-tiers-section h2 {
        font-size: 2rem;
    }
    
    .other-tiers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .other-tier-card {
        padding: 2rem;
    }
    
    .other-tier-card h3 {
        font-size: 1.5rem;
    }
    
    .tier-card-price {
        font-size: 1.25rem;
    }
    
    .tier-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tier-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .tier-feature-card h4 {
        font-size: 1.15rem;
    }
}
