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

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --accent: #06b6d4;
    --dark: #0a0a0f;
    --dark-secondary: #13131a;
    --dark-card: #1a1a24;
    --gray: #94a3b8;
    --gray-light: #cbd5e1;
    --gray-dark: #64748b;
    --border: #1e1e2e;
    --border-light: #2a2a3a;
    --light: #fafafa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
}

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

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

@media (min-width: 1536px) {
    .container {
        max-width: 1400px;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-light);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--white);
}

/* Buttons */
.btn-primary {
    background: var(--white);
    color: var(--dark);
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    display: inline-block;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gray-light);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--gray);
    background: rgba(255, 255, 255, 0.05);
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* Bold Statement Hero */
.statement-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding: 8rem 0 4rem;
}

.statement-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
}

.statement-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    filter: blur(100px);
}

.statement-bg::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    filter: blur(100px);
}

.statement-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.statement-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--white);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.statement-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--gray-light);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
}

.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.2s ease;
}

.scroll-indicator:hover {
    color: var(--primary-light);
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
}

/* Navigation Options */
.nav-options {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.option-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--dark-card);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.option-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.option-card:hover {
    background: var(--dark-secondary);
}

.option-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.option-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.option-card:hover .option-icon {
    color: var(--primary);
    transform: translateY(-2px);
}

.option-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.option-card p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.option-arrow {
    font-size: 1.25rem;
    color: var(--gray-dark);
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.option-card:hover .option-arrow {
    color: var(--primary-light);
    transform: translateX(4px);
}

.option-icon svg {
    width: 100%;
    height: 100%;
}

.option-card:hover .option-icon {
    color: var(--white);
    transform: scale(1.1);
}

.option-card-highlight .option-icon {
    color: var(--white);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--dark);
}

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

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.service-card {
    background: var(--dark-card);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    background: var(--dark-secondary);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.service-card:hover .service-icon {
    color: var(--primary);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: normal;
}

/* Approach Section */
.approach {
    padding: 8rem 0;
    background: var(--dark-secondary);
    color: var(--white);
    position: relative;
}

.approach .section-title {
    color: var(--white);
}

.approach .section-header {
    position: relative;
    z-index: 1;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.approach-item {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--dark-card);
    transition: all 0.3s ease;
}

.approach-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.approach-item:hover::before {
    opacity: 1;
}

.approach-item:hover {
    background: var(--dark-secondary);
}

.approach-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    opacity: 0.6;
}

.approach-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.approach-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Stats Section */
.stats {
    padding: 8rem 0;
    background: var(--dark-card);
    color: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 4rem;
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
    letter-spacing: -0.03em;
}

.stat-suffix {
    font-size: 4rem;
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-left: -0.25rem;
}

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

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: var(--dark);
    text-align: center;
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--dark);
}

.cta .btn-primary:hover {
    background: var(--gray-light);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--gray-dark);
    margin-top: 0.5rem;
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--gray-dark);
    font-size: 0.875rem;
}

/* About Page Styles */
.about-hero {
    padding: 10rem 0 4rem;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.about-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-content {
    padding: 6rem 0;
}

.about-section {
    margin-bottom: 5rem;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

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

.about-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.about-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
}

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

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

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.value-item p {
    color: var(--gray);
    font-size: 1rem;
}

.value-item p {
    color: var(--gray);
    font-size: 1rem;
}

/* Case Studies Section */
.case-studies {
    padding: 8rem 0;
    background: var(--light);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.case-study-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.case-study-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.case-study-image {
    width: 100%;
    height: 240px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.case-study-image svg {
    width: 80px;
    height: 80px;
    stroke-width: 1.5;
}

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

.case-study-tag {
    display: inline-block;
    background: var(--light-purple);
    color: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.case-study-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.case-study-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.case-stat {
    flex: 1;
}

.case-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.case-stat-label {
    font-size: 0.8125rem;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .statement-hero {
        height: 100vh;
    }
    
    .statement-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .statement-subtitle {
        font-size: 0.875rem;
        margin-bottom: 3rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a:not(.btn-primary) {
        display: none;
    }
    
    .services-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta a {
        width: 100%;
        text-align: center;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}
