/* CSS Custom Properties for consistent theming */
:root {
    --primary-color: #3f4a90;
    --secondary-color: #d8dae3;
    --background-light: #1a1d2e;
    --background-dark: #141726;
    --background-card: #252847;
    --text-primary: #ffffff;
    --text-secondary: #d8dae3;
    --text-light: #ffffff;
    --accent-color: #5a6bb8;
    --success-color: #30d158;
    --warning-color: #ff9f0a;
    --border-radius: 20px;
    --border-radius-small: 12px;
    --border-radius-large: 28px;
    --shadow-light: 0 8px 32px rgba(20, 23, 38, 0.4), 0 4px 16px rgba(63, 74, 144, 0.08);
    --shadow-dark: 0 16px 64px rgba(20, 23, 38, 0.6), 0 8px 32px rgba(63, 74, 144, 0.12);
    --shadow-inset: inset 0 2px 8px rgba(20, 23, 38, 0.3);
    --shadow-neumorphic: 
        12px 12px 24px rgba(20, 23, 38, 0.5),
        -12px -12px 24px rgba(63, 74, 144, 0.15);
    --shadow-neumorphic-inset: 
        inset 8px 8px 16px rgba(20, 23, 38, 0.4),
        inset -8px -8px 16px rgba(63, 74, 144, 0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.65;
    color: var(--text-primary);
    background: 
        radial-gradient(circle at 20% 20%, rgba(63, 74, 144, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(216, 218, 227, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header-centered {
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.0625rem;
    font-family: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-neumorphic);
    position: relative;
    overflow: hidden;
    background: var(--background-card);
    backdrop-filter: blur(20px);
    min-height: 56px;
    color: var(--text-primary);
}

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

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        16px 16px 32px rgba(20, 23, 38, 0.6),
        -16px -16px 32px rgba(63, 74, 144, 0.2);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: var(--shadow-neumorphic-inset);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    color: var(--text-light);
    box-shadow: 
        12px 12px 24px rgba(63, 74, 144, 0.25),
        -12px -12px 24px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    box-shadow: 
        16px 16px 32px rgba(63, 74, 144, 0.4),
        -16px -16px 32px rgba(216, 218, 227, 0.1);
}

.btn-secondary {
    background: var(--background-card);
    color: var(--secondary-color);
    border: 1px solid rgba(63, 74, 144, 0.3);
}

.btn-full {
    width: 100%;
}

/* Scroll Progress Bar Background */
.scroll-progress-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0a0d1a;
    z-index: 1000;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #5a6bb8 100%);
    z-index: 1001;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(63, 74, 144, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 
        0 8px 32px rgba(63, 74, 144, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 48px rgba(63, 74, 144, 0.4),
        0 6px 24px rgba(0, 0, 0, 0.15);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.02);
}

/* Navigation */
.navbar {
    background: rgba(26, 29, 46, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    position: fixed;
    top: 3px;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(63, 74, 144, 0.3);
    transition: var(--transition);
    box-shadow: 0 1px 40px rgba(20, 23, 38, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
}

.nav-logo a {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}



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

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    transform: translateY(-3px) scale(1.02);
    background: var(--background-card);
    border: 1px solid rgba(63, 74, 144, 0.3);
}

.login-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    color: var(--text-light);
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 
        8px 8px 16px rgba(63, 74, 144, 0.2),
        -8px -8px 16px rgba(255, 255, 255, 0.1);
    font-size: 0.9375rem;
}

.login-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        12px 12px 24px rgba(63, 74, 144, 0.4),
        -12px -12px 24px rgba(216, 218, 227, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        radial-gradient(circle at 25% 25%, rgba(63, 74, 144, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(216, 218, 227, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(63, 74, 144, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(216, 218, 227, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 100%, rgba(63, 74, 144, 0.1) 0%, transparent 60%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='15' y='35' font-family='Arial' font-size='12' fill='%23ffffff' opacity='0.03'%3ESEO%3C/text%3E%3Ctext x='70' y='80' font-family='Arial' font-size='10' fill='%23d8dae3' opacity='0.04'%3ELEADS%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Ctext x='25' y='50' font-family='Arial' font-size='11' fill='%23d8dae3' opacity='0.03'%3ETRAFFIC%3C/text%3E%3Ctext x='20' y='100' font-family='Arial' font-size='9' fill='%23ffffff' opacity='0.04'%3ECUSTOMERS%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='10' y='40' font-family='Arial' font-size='14' fill='%23ffffff' opacity='0.04'%3EAI%3C/text%3E%3Ctext x='50' y='75' font-family='Arial' font-size='11' fill='%23d8dae3' opacity='0.03'%3EGEO%3C/text%3E%3C/svg%3E");
    background-size: 300px 300px, 400px 400px, 350px 350px;
    background-position: 0% 0%, 100% 100%, 50% 50%;
    animation: float-seo-1 25s ease-in-out infinite, float-seo-2 30s ease-in-out infinite reverse;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes float-seo-1 {
    0%, 100% { 
        transform: translateX(-50px) translateY(-30px) rotate(0deg);
        background-position: 0% 0%, 100% 100%;
    }
    50% { 
        transform: translateX(50px) translateY(30px) rotate(1deg);
        background-position: 20% 10%, 80% 90%;
    }
}

@keyframes float-seo-2 {
    0%, 100% { 
        background-position: 100% 100%, 0% 0%;
    }
    50% { 
        background-position: 70% 80%, 30% 20%;
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 0 4rem;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    text-align: left;
}

.hero-right {
    flex: 0 0 auto;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero-image {
    width: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-dark);
}

.hero-image-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.caption-name {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.caption-title {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.05;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .white-text {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: white;
    background-clip: initial;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(63, 74, 144, 0.3);
    border: 1px solid rgba(90, 107, 184, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

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

.badge-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    color: var(--text-secondary);
    max-width: 580px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Results Showcase Section */
.results-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background-dark) 100%);
}

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

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(63, 74, 144, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.result-card.featured {
    background: linear-gradient(135deg, rgba(63, 74, 144, 0.15) 0%, rgba(63, 74, 144, 0.05) 100%);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.result-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-industry {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.result-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.result-metric .metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.metric-before {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
}

.metric-arrow {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.metric-after {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.metric-percent {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.result-timeframe {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
}

.results-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .results-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .result-card.featured {
        transform: none;
    }
    
    .result-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: 
        radial-gradient(circle at 30% 20%, rgba(63, 74, 144, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(216, 218, 227, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(63, 74, 144, 0.02) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.page-header h1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* Services Section */
.services {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--background-card);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-neumorphic);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(63, 74, 144, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        20px 20px 40px rgba(20, 23, 38, 0.6),
        -20px -20px 40px rgba(63, 74, 144, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        8px 8px 24px rgba(20, 23, 38, 0.5),
        -8px -8px 24px rgba(63, 74, 144, 0.2);
    position: relative;
    z-index: 2;
    font-size: 0.875rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-card) 100%);
}

.features .container {
    max-width: 1200px;
}

.features .section-header {
    margin-bottom: 3rem;
}

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

.features-text {
    position: sticky;
    top: 100px;
}

.screenshot-stack-single {
    display: flex;
    flex-direction: column;
    gap: -60px;
    position: relative;
}

.screenshot-item {
    position: relative;
    background: #fff;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-dark);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: -80px;
    width: 90%;
}

.screenshot-item:first-child {
    margin-top: 0;
}

.screenshot-item:nth-child(odd) {
    align-self: flex-start;
}

.screenshot-item:nth-child(even) {
    align-self: flex-end;
}

.screenshot-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.feature-text h3,
.feature-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stats-card {
    background: linear-gradient(135deg, rgba(63, 74, 144, 0.15) 0%, rgba(63, 74, 144, 0.05) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-dark);
    text-align: center;
    border: 1px solid rgba(63, 74, 144, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    background: rgba(63, 74, 144, 0.1);
}

.stats-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stats-card .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Award Image */
.award-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

/* Story Section */
.story {
    padding: 80px 0;
    background: var(--background-dark);
}

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

.story-full-width {
    font-size: 1.1rem;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.story-full-width a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.story-full-width a:hover {
    color: var(--secondary-color);
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-full-width-mobile {
    display: none;
}

.timeline-card {
    background: var(--background-card);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(63, 74, 144, 0.2);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(63, 74, 144, 0.15);
    border-radius: 12px;
}

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.timeline-text {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-card) 0%, var(--background-light) 100%);
}

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

.mission-card {
    background: var(--background-card);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(63, 74, 144, 0.2);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        20px 20px 40px rgba(20, 23, 38, 0.6),
        -20px -20px 40px rgba(63, 74, 144, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a5aa8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-light);
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--background-dark);
}

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

.team-card {
    background: var(--background-card);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(63, 74, 144, 0.2);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        20px 20px 40px rgba(20, 23, 38, 0.6),
        -20px -20px 40px rgba(63, 74, 144, 0.2);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a5aa8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.avatar-placeholder {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 1rem;
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-card) 100%);
}

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

.step-card {
    background: var(--background-card);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(63, 74, 144, 0.2);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        20px 20px 40px rgba(20, 23, 38, 0.6),
        -20px -20px 40px rgba(63, 74, 144, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Stats Overview */
.mobile-break {
    display: none;
}

.stats-overview {
    padding: 80px 0;
    background: var(--background-dark);
}

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

.stat-card {
    background: var(--background-card);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(63, 74, 144, 0.2);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        20px 20px 40px rgba(20, 23, 38, 0.6),
        -20px -20px 40px rgba(63, 74, 144, 0.2);
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-card) 0%, var(--background-light) 100%);
}

.case-study {
    background: var(--background-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid rgba(63, 74, 144, 0.2);
}

.case-study:last-child {
    margin-bottom: 0;
}

.case-study-content {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 3rem;
    padding: 3rem;
}

.case-study-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.case-study-industry {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.case-study-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.case-study-challenge,
.case-study-solution {
    margin-bottom: 2rem;
}

.case-study-challenge h4,
.case-study-solution h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.case-study-solution ul {
    list-style: none;
    padding-left: 0;
}

.case-study-solution li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.case-study-solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.case-study-results {
    background: var(--background-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(63, 74, 144, 0.3);
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.case-study-results h4 {
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.case-study-results .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
    max-width: 100%;
}

.case-study-results .result-item {
    text-align: center;
    padding: 1rem 0.75rem;
    background: rgba(63, 74, 144, 0.15);
    border-radius: 12px;
    width: 100%;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.result-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.case-study-screenshots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 3rem 3rem;
}

.screenshot-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(63, 74, 144, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    background: rgba(20, 23, 38, 0.5);
    margin: 0;
}

.case-study-screenshots-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%;
}

.case-study-screenshots-inline .screenshot-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(63, 74, 144, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.case-study-screenshots-inline .screenshot-caption {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: #fff;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--background-dark);
}

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

.testimonial-card {
    background: var(--background-card);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(63, 74, 144, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        20px 20px 40px rgba(20, 23, 38, 0.6),
        -20px -20px 40px rgba(63, 74, 144, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a5aa8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-light);
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--background-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.contact-text h3,
.contact-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    margin: 0;
    font-size: 1rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--background-card);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(63, 74, 144, 0.3);
}

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

.contact-form > p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(63, 74, 144, 0.2);
    border-radius: 12px;
    background: var(--background-dark);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-inset);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--background-light);
    box-shadow: 0 0 0 3px rgba(63, 74, 144, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-card) 0%, var(--background-light) 100%);
}

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

.faq-item {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(63, 74, 144, 0.2);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        20px 20px 40px rgba(20, 23, 38, 0.6),
        -20px -20px 40px rgba(63, 74, 144, 0.2);
}

.faq-item h3,
.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(90, 107, 184, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    background: linear-gradient(135deg, #d8dae3 0%, #f0f2f5 50%, #d8dae3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.cta .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05);
}

.cta .btn-primary:hover {
    background: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.15),
        0 6px 24px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
    background: rgba(26, 29, 46, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid rgba(63, 74, 144, 0.3);
    color: white;
    padding: 60px 0 20px;
    box-shadow: 0 -1px 40px rgba(20, 23, 38, 0.4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    justify-items: center;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-section ul {
    list-style: none;
    text-align: left;
}

.footer-section p {
    text-align: left;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
    margin-left: -5px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 29, 46, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(20, 23, 38, 0.6);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Grid Layouts */
    .features-content,
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .award-image {
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .story-full-width {
        display: none;
    }

    .story-full-width-mobile {
        display: block;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .story-full-width-mobile a {
        color: var(--primary-color);
        text-decoration: none;
        transition: var(--transition);
    }

    .story-full-width-mobile a:hover {
        color: var(--secondary-color);
    }

    .mobile-break {
        display: inline;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .stat-card {
        padding: 1.5rem 0.75rem;
        box-sizing: border-box;
        min-width: 0;
    }

    .case-study-results {
        padding: 1.5rem 1rem;
    }

    .case-study-results .results-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .case-study-results .result-item {
        padding: 1rem;
    }
    
    .features-content {
        display: flex;
        flex-direction: column;
    }
    
    .features-visual {
        order: -1;
    }
    
    .features-text {
        order: 1;
    }

    .case-study-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-screenshots {
        grid-template-columns: 1fr;
        padding: 0 1rem 1.5rem;
    }
    
    .case-study-screenshots-inline {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: start;
    }

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

    /* Spacing */
    .container {
        padding: 0 1rem;
    }

    .hero {
        min-height: 100vh;
        padding: 120px 0 80px;
    }

    .hero-container {
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .hero-badge {
        order: 4;
        margin-top: 1.5rem;
        margin-bottom: 0;
        align-self: center;
    }
    
    .hero-title {
        order: 1;
    }
    
    .hero-subtitle {
        order: 2;
    }
    
    .hero-buttons {
        order: 3;
    }
    
    .badge-text {
        white-space: nowrap;
    }

    .hero-right {
        max-width: 300px;
        order: 1;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .services,
    .features,
    .story,
    .mission,
    .team,
    .approach,
    .stats-overview,
    .case-studies,
    .testimonials,
    .contact,
    .faq {
        padding: 60px 0;
    }
    
    .results-showcase {
        padding: 40px 0 60px;
    }

    .cta {
        padding: 80px 0;
    }

    .service-card,
    .mission-card,
    .team-card,
    .step-card,
    .stat-card,
    .testimonial-card,
    .case-study {
        padding: 2rem 1.5rem;
    }

    .service-icon,
    .mission-icon {
        width: 72px;
        height: 72px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

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

    .case-study-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-card,
    .mission-card,
    .team-card {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        justify-items: start;
        text-align: left;
    }

    .footer-section {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .mission-card,
    .team-card {
        padding: 1.5rem 1rem;
    }

    .contact-form-container {
        padding: 2rem 1rem;
    }

    .case-study {
        margin: 0 0 2rem 0;
    }

    .case-study-content {
        padding: 1.5rem 1rem;
    }
}

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

/* Loading and interaction states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .page-header {
        padding: 20px 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.3);
        --shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.4);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== WEB DESIGN PAGE STYLES ===== */

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #ff4444 0%, #cc1111 100%);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 999;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 68, 68, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 68, 68, 0.8); }
}

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

.urgency-text {
    flex: 1;
    text-align: center;
}

.contact-quick {
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Web Design Hero Section */
.webdesign-hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.webdesign-hero .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-text {
    max-width: 600px;
}

.hero-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.webdesign-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight-text {
    background: linear-gradient(135deg, #ff9f0a 0%, #ffb347 100%);
    color: #1a1d2e;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-weight: 700;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.results-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.proof-item {
    background: var(--background-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-neumorphic);
}

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.proof-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-consultation {
    background: linear-gradient(135deg, #ff9f0a 0%, #ffb347 100%);
    color: #1a1d2e;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 
        0 8px 32px rgba(255, 159, 10, 0.4),
        0 4px 16px rgba(255, 179, 71, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: cta-pulse 3s infinite;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(255, 159, 10, 0.4), 0 4px 16px rgba(255, 179, 71, 0.3); }
    50% { box-shadow: 0 12px 40px rgba(255, 159, 10, 0.6), 0 6px 20px rgba(255, 179, 71, 0.4); }
}

.btn-consultation:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 16px 50px rgba(255, 159, 10, 0.5),
        0 8px 25px rgba(255, 179, 71, 0.4);
    animation: none;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ff6b6b;
    font-weight: 600;
    text-align: center;
}

.risk-reversal {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

/* Device Mockups */
.hero-devices {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-laptop {
    position: absolute;
    top: 50px;
    right: 0;
    transform: rotate(-10deg);
    z-index: 3;
}

.laptop-screen {
    width: 320px;
    height: 200px;
    background: var(--background-card);
    border-radius: 12px 12px 0 0;
    border: 2px solid #2a2d47;
    padding: 8px;
    box-shadow: var(--shadow-neumorphic);
}

.laptop-base {
    width: 340px;
    height: 20px;
    background: linear-gradient(135deg, #2a2d47 0%, #1f2237 100%);
    border-radius: 0 0 16px 16px;
    border: 2px solid #2a2d47;
    border-top: none;
    position: relative;
    top: -2px;
}

.laptop-keyboard {
    width: 280px;
    height: 8px;
    background: #1f2237;
    border-radius: 4px;
    margin: 4px auto 0;
}

.device-tablet {
    position: absolute;
    bottom: 80px;
    right: 120px;
    transform: rotate(15deg);
    z-index: 2;
}

.tablet-screen {
    width: 160px;
    height: 220px;
    background: var(--background-card);
    border-radius: 20px;
    border: 3px solid #2a2d47;
    padding: 12px;
    box-shadow: var(--shadow-neumorphic);
}

.device-phone {
    position: absolute;
    bottom: 40px;
    right: 280px;
    transform: rotate(-5deg);
    z-index: 1;
}

.phone-screen {
    width: 80px;
    height: 160px;
    background: var(--background-card);
    border-radius: 16px;
    border: 2px solid #2a2d47;
    padding: 8px;
    box-shadow: var(--shadow-neumorphic);
}

.website-preview {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.preview-header {
    height: 20%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.preview-content {
    padding: 8px;
    height: 80%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.preview-section {
    background: #f8f9fa;
    border-radius: 4px;
    flex: 1;
}

/* Social Proof Section */
.trust-signals {
    padding: 6rem 0;
    background: var(--background-card);
    border-top: 1px solid rgba(63, 74, 144, 0.2);
    margin-top: 4rem;
}

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

.social-proof-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.proof-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0 6rem;
}

.result-item {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(63, 74, 144, 0.3);
    box-shadow: var(--shadow-neumorphic);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        16px 16px 32px rgba(20, 23, 38, 0.6),
        -16px -16px 32px rgba(63, 74, 144, 0.2);
}

.result-item::before {
    content: none;
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.result-quote {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-style: italic;
}

.result-author {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.result-metric {
    background: linear-gradient(135deg, #30d158 0%, #28a745 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
}

.trust-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-text {
    display: block;
    line-height: 1.2;
}

.final-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: var(--background-dark);
    border-radius: var(--border-radius-large);
    border: 2px solid var(--primary-color);
}

.final-cta h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6bb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta .urgency-text {
    font-size: 1rem;
    color: #ff6b6b;
    margin-top: 1.5rem;
    font-weight: 600;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    align-items: center;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border: 1px solid rgba(63, 74, 144, 0.2);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.google-rating {
    color: #4285f4;
}

.trustpilot {
    color: #00b67a;
}

.clutch {
    flex-direction: column;
    gap: 0.25rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

.trustpilot-stars {
    color: #00b67a;
}

.rating-number {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.rating-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design for Web Design Page */
@media (max-width: 1024px) {
    .webdesign-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-devices {
        height: 400px;
        transform: scale(0.8);
    }
    
    .banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .results-proof {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .results-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .webdesign-hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .urgency-banner {
        font-size: 0.8rem;
    }
    
    .urgency-text {
        text-align: center;
    }
    
    .contact-quick {
        display: none;
    }
    
    .hero-devices {
        height: 300px;
        transform: scale(0.6);
    }
    
    .results-showcase {
        grid-template-columns: 1fr;
    }
    
    .result-item {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-devices {
        display: none;
    }
    
    .webdesign-hero .hero-content {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn-consultation {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .final-cta {
        padding: 2rem 1rem;
    }
    
    .social-proof-header h2 {
        font-size: 2rem;
    }
}
