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

:root {
    /* Black Theme Color Palette */
    --primary-black: #000000;
    --dark-black: #111111;
    --light-black: #1a1a1a;
    --gray-dark: #333333;
    --gray-medium: #666666;
    
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-icon: #a0a0a0;
    
    /* Accent Colors */
    --accent-white: #ffffff;
    
    /* Typography */
    --font-family: 'Georgia', 'Times New Roman', serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 3.5rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-black);
    overflow-x: hidden;
    margin: 0;
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
}

.site-wrapper {
    background-color: var(--primary-black);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    padding: 0.175rem 0;
}

/* Ensure no hamburger menu appears */
.header::before,
.header::after,
.logo::before,
.logo::after {
    display: none !important;
}

/* Hide any potential menu elements */
[class*="menu"],
[class*="nav"],
[class*="burger"],
[class*="toggle"] {
    display: none !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
    font-size: var(--font-size-xl);
    margin-top: 3rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.logo-text {
    color: var(--white);
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: var(--spacing-md);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60vh;
    position: relative;
    z-index: 2;
    gap: var(--spacing-3xl);
}

.hero-text {
    z-index: 2;
    flex: 1;
    text-align: left;
    padding-right: var(--spacing-xl);
}

.hero-text .hero-title {
    margin-bottom: var(--spacing-lg);
}

.hero-text .cta-button {
    margin-top: var(--spacing-lg);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graph {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.reddit-i {
    position: relative;
    display: inline-block;
}

.reddit-i::after {
    content: '';
    background-color: #FF4500;
    width: 0.2em;
    height: 0.2em;
    border-radius: 50%;
    position: absolute;
    top: 0.12em;
    left: 47%;
    transform: translateX(-50%);
    box-shadow: 
        0 0 10px rgba(255, 69, 0, 0.7),
        0 0 20px rgba(255, 69, 0, 0.5),
        0 0 30px rgba(255, 69, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px rgba(255, 69, 0, 0.7),
            0 0 20px rgba(255, 69, 0, 0.5),
            0 0 30px rgba(255, 69, 0, 0.3);
    }
    to {
        text-shadow: 
            0 0 20px rgba(255, 69, 0, 0.9),
            0 0 30px rgba(255, 69, 0, 0.7),
            0 0 40px rgba(255, 69, 0, 0.5);
    }
}

.hero-benefits {
    list-style: none;
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits li {
    font-size: var(--font-size-lg);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid #ffffff;
    backdrop-filter: blur(10px);
}

.cta-button {
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: var(--font-size-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
}

.cta-button.primary {
    background-color: var(--white);
    color: var(--primary-black);
}

.cta-button.primary:hover {
    background-color: var(--primary-black);
    color: var(--white);
    border: 1px solid var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background-color: var(--white);
    color: var(--primary-black);
}

.cta-button.secondary:hover {
    background-color: var(--primary-black);
    color: var(--white);
    border: 1px solid var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* Partners Section */
.partners {
    padding: var(--spacing-lg) 0;
    background-color: var(--primary-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partners::before {
    content: 'A few of our partners';
    display: block;
    text-align: center;
    color: var(--white);
    font-size: var(--font-size-sm);
    opacity: 0.7;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logos {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.partner-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--primary-black) 0%, transparent 10%, transparent 90%, var(--primary-black) 100%);
    pointer-events: none;
    z-index: 2;
}

.logo-scroll {
    display: flex;
    align-items: center;
    animation: scroll 30s linear infinite;
    gap: var(--spacing-3xl);
}

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

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

.partner-logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    min-width: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.partner-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
}

/* Scale Outreach Section */
.scale-outreach {
    padding: var(--spacing-3xl) 0;
    background-color: var(--primary-black);
}

/* Section Dividers */
.scale-outreach::before,
.why-love-us::before,
.case-studies::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 0 auto var(--spacing-3xl);
    width: 80%;
}

/* Enhanced Section Titles */
.section-subtitle {
    font-size: var(--font-size-sm);
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-medium);
    font-family: var(--font-family);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

.section-description {
    font-size: var(--font-size-xl);
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    color: var(--white);
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-family);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: var(--font-family);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    display: none;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-family);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--white);
    opacity: 0.9;
    font-family: var(--font-family);
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Why Love Us Section */
.why-love-us {
    padding: var(--spacing-3xl) 0;
    background-color: var(--primary-black);
}

.benefits-timeline {
    margin-top: var(--spacing-3xl);
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.3) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-4px);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-family);
    position: relative;
    z-index: 3;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline-item:hover .timeline-number {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.15);
}

.timeline-content {
    flex: 1;
    padding: 0 var(--spacing-lg);
    text-align: left;
    max-width: 400px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-family);
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.timeline-description {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.2px;
}

/* Case Studies Section */
.case-studies {
    padding: var(--spacing-3xl) 0;
    background-color: var(--primary-black);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.case-study-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 75%,
        rgba(255, 255, 255, 0.1) 100%);
    padding: var(--spacing-2xl);
    border-radius: 24px;
    color: var(--white);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-family);
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.case-study-card:hover::before {
    left: 100%;
}

.case-study-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.08) 75%,
        rgba(255, 255, 255, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
}

.case-logo {
    margin-bottom: var(--spacing-md);
    text-align: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    flex-shrink: 0;
}

.case-logo-img {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.case-results {
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-results p {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 400;
    opacity: 0.95;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.case-results p::before {
    display: none;
}

.case-results p:hover {
    opacity: 1;
    transform: translateY(-4px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.case-results p:hover::before {
    display: none;
}

/* Get in Touch Section */
.get-in-touch {
    padding: var(--spacing-3xl) 0;
    background-color: var(--primary-black);
    text-align: center;
}

/* Footer */
.footer {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--white);
    text-decoration: underline;
}

.footer-copyright {
    color: var(--white);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    opacity: 0.7;
}

.footer-copyright p {
    margin: 0;
}

.rocket {
    display: none;
}

.legal-text {
    margin-top: var(--spacing-xl);
    font-size: var(--font-size-sm);
    color: var(--white);
    opacity: 0.7;
    font-family: var(--font-family);
}

/* Mobile-First iPhone Optimization */
@media (max-width: 768px) {
    /* Base Mobile Layout */
    body {
        padding: 0;
        margin: 0;
        background: var(--primary-black);
    }
    
    .site-wrapper {
        border-radius: 0;
        margin: 0;
        box-shadow: none;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    /* Header Optimization */
    .header {
        padding: 12px 0;
    }
    
    .logo {
        margin-top: 0;
        gap: 6px;
        font-size: 18px;
    }
    
    .logo-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Hero Section - Mobile Perfection */
    .hero {
        padding: 16px 0 32px;
        min-height: auto;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 24px;
        min-height: auto;
        padding: 0;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        padding: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.2;
        margin-bottom: 16px;
        font-weight: 800;
        text-align: center;
    }

    .reddit-i::after {
        width: 0.25em;
        height: 0.25em;
        top: 0.1em;
        left: 48%;
    }
    
    .hero-graph {
        max-height: 180px;
        width: 100%;
        object-fit: contain;
        margin: 0 auto;
    }
    
    .hero-benefits {
        margin: 20px auto;
        gap: 10px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-benefits li {
        padding: 10px 14px;
        font-size: 14px;
        line-height: 1.5;
        border-radius: 10px;
        text-align: center;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 12px;
        font-weight: 700;
        width: auto;
        max-width: none;
        margin: 24px auto 0;
        text-align: center;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.5px;
    }
    
    /* Partners Section */
    .partners {
        padding: 16px 0;
        text-align: center;
        margin-top: 0;
    }

    /* Reduce spacing between all sections on mobile */
    .scale-outreach,
    .why-love-us,
    .case-studies,
    .get-in-touch {
        padding: 24px 0;
    }

    .section-title {
        margin-bottom: 16px;
    }
    
    .partner-logos {
        padding: 0;
        text-align: center;
    }
    
    .partner-logo-img {
        max-height: 28px;
        opacity: 0.7;
        margin: 0 auto;
    }
    
    /* Stats Section */
    .scale-outreach {
        text-align: center;
        padding-top: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
        text-align: center;
        padding: 0 8px;
    }
    
    .stat-card {
        padding: 24px 20px;
        border-radius: 16px;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .stat-number {
        font-size: clamp(32px, 9vw, 40px);
        margin-bottom: 8px;
        text-align: center;
        font-weight: 800;
        line-height: 1.1;
        width: 100%;
    }
    
    .stat-label {
        font-size: 14px;
        opacity: 0.9;
        text-align: center;
        font-weight: 500;
        line-height: 1.3;
        width: 100%;
    }
    
    /* Timeline Section - Mobile Redesign */
    .benefits-timeline {
        margin-top: 24px;
        max-width: 100%;
        text-align: center;
        padding: 0 8px;
    }
    
    .benefits-timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 32px;
        padding: 0 16px;
        align-items: center;
        justify-content: center;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-bottom: 12px;
        border-radius: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .timeline-content {
        padding: 0;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .timeline-title {
        font-size: 18px;
        margin-bottom: 6px;
        text-align: center;
    }
    
    .timeline-description {
        font-size: 14px;
        line-height: 1.5;
        opacity: 0.9;
        text-align: center;
        margin: 0 auto;
    }
    
    /* Case Studies - Mobile Optimization */
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }
    
    .case-study-card {
        height: auto;
        min-height: 240px;
        padding: 20px 16px;
        border-radius: 16px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .case-logo {
        height: 50px;
        margin-bottom: 16px;
        padding-bottom: 12px;
        text-align: center;
    }
    
    .case-logo-img {
        max-height: 32px;
        margin: 0 auto;
    }
    
    .case-results {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .case-results p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
        padding: 0;
        margin: 0 auto;
    }
    
    /* Get in Touch Section */
    .get-in-touch {
        padding: 48px 0;
        text-align: center;
    }
    
    .section-title {
        font-size: clamp(20px, 6vw, 28px);
        margin-bottom: 12px;
    }
    
    .section-description {
        font-size: 15px;
        margin-bottom: 24px;
        opacity: 0.9;
    }
    
    /* Footer */
    .footer {
        padding: 24px 0;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .footer-link {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .footer-copyright {
        font-size: 12px;
        opacity: 0.8;
    }
    
    /* Section Titles */
    .section-title {
        font-size: clamp(26px, 8vw, 32px);
        margin-bottom: 20px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-weight: 800;
        line-height: 1.2;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
        margin: 16px auto 0;
    }
    
    .section-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    
    /* Touch Optimizations */
    .cta-button,
    .footer-link,
    .timeline-number {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        cursor: pointer;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* Hover effects for interactive elements */
.grid-item,
.stat-card,
.case-study-card,
.cta-button {
    transition: none;
}

/* Focus states for accessibility */
.cta-button:focus,
.footer-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero,
    .partners,
    .why-love-us,
    .get-in-touch {
        background-color: white !important;
        color: black !important;
    }
    
    .stat-card,
    .case-study-card {
        border: 1px solid #ccc;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer-links {
        justify-content: center;
    }
}
