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

:root {
    /* Cyberpunk/Tech Theme Colors */
    --color-bg-dark: #0a0e27;
    --color-bg-darker: #050816;
    --color-bg-light: #f5f7fa;
    --color-accent-cyan: #00d9ff;
    --color-accent-magenta: #ff006e;
    --color-accent-yellow: #ffbe0b;
    --color-text-light: #e8edf3;
    --color-text-dark: #1a1d2e;
    --color-text-muted: #8892ab;
    --color-surface: #141b2d;
    --color-surface-light: #1e2740;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700;900&family=JetBrains+Mono:wght@400;700&display=swap');

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    overflow-x: hidden;
    background: var(--color-bg-light);
}

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

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
    animation: navSlideDown 0.6s ease-out;
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--color-accent-cyan) 0%, var(--color-accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.02em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-cyan);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent-cyan);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* Hero Section */
.hero {
    background:
        linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    display: flex;
    align-items: center;
}

.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 217, 255, 0.03) 2px, rgba(0, 217, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 0, 110, 0.03) 2px, rgba(255, 0, 110, 0.03) 4px);
    pointer-events: none;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.bg-decoration::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-cyan) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 20s ease-in-out infinite;
}

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

.bg-decoration::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-accent-magenta) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(140px);
    animation: float 25s ease-in-out infinite reverse;
}

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

/* Left Side - Value Proposition */
.hero-left {
    color: white;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

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

.hero-headline {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-accent-cyan) 0%, var(--color-accent-magenta) 50%, var(--color-accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    background-size: 200% 200%;
}

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

.hero-subheadline {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Social Proof */
.social-proof {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--color-accent-yellow);
    filter: drop-shadow(0 0 8px rgba(255, 190, 11, 0.4));
    animation: starPulse 2s ease-in-out infinite;
}

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

@keyframes starPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.trust-text {
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.01em;
}

/* Credentials */
.credentials {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.credentials li {
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 500;
    padding-left: 0.5rem;
    border-left: 2px solid var(--color-accent-cyan);
    transition: all 0.3s ease;
}

.credentials li:hover {
    border-left-color: var(--color-accent-magenta);
    transform: translateX(5px);
}

/* Description */
.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.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.6s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-cyan) 0%, var(--color-accent-magenta) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-accent-cyan);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-accent-cyan);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

.btn-secondary:hover::after {
    opacity: 1;
}

/* Right Side - Form Card */
.hero-right {
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.form-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    width: 100%;
    max-width: 500px;
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-magenta), var(--color-accent-cyan));
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.form-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.form-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'JetBrains Mono', monospace;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--color-surface-light);
    color: var(--color-text-light);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
    background: var(--color-bg-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full-width {
    width: 100%;
    padding: 1.125rem;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Case Studies Section */
.case-studies {
    padding: 6rem 0;
    background: var(--color-bg-light);
    position: relative;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-cyan), transparent);
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.case-study-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.case-study-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-magenta)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(0, 217, 255, 0.2),
        0 0 0 1px rgba(0, 217, 255, 0.3);
}

.case-study-card:hover::before {
    opacity: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.case-study-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1e2e;
    margin-bottom: 1rem;
}

.case-study-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-cyan);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-link:hover {
    gap: 0.75rem;
    color: var(--color-accent-magenta);
}

.case-study-link svg {
    transition: transform 0.3s ease;
}

.case-study-link:hover svg {
    transform: translateX(4px);
}

.case-studies-cta {
    text-align: center;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

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

.about-role {
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.authority-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #666;
}

.authority-item {
    font-weight: 600;
}

.authority-divider {
    color: var(--color-accent-cyan);
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bio-intro {
    font-size: 1.25rem;
    color: #1e1e2e;
    font-weight: 600;
    line-height: 1.7;
}

.bio-paragraph {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.bio-paragraph strong {
    color: #1e1e2e;
    font-weight: 700;
}

.bio-closing {
    font-size: 1.05rem;
    color: #1e1e2e;
    font-weight: 600;
    line-height: 1.8;
}

.about-cta {
    display: flex;
}

.about-right {
    display: flex;
    justify-content: center;
}

.photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.photo-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
}

.photo-placeholder::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

.placeholder-text {
    margin-top: 1.5rem;
    color: #667eea;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-accent-cyan);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
    border-left-color: var(--color-accent-magenta);
}

.testimonial-card .stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1.25rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    font-style: italic;
}

.testimonial-quote strong {
    color: var(--color-accent-cyan);
    font-weight: 900;
    font-style: normal;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e1e2e;
    margin-bottom: 0.25rem;
}

.author-business {
    font-size: 0.95rem;
    color: #666;
}

.testimonial-metric {
    background: linear-gradient(135deg, var(--color-accent-cyan) 0%, var(--color-accent-magenta) 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-weight: 900;
    text-align: center;
    font-size: 1rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: white;
}

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

.cta-tagline {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-top: 1.5rem;
    letter-spacing: -0.02em;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.final-cta-left {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.strategy-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.strategy-form .form-group label {
    color: var(--color-text-dark);
}

.strategy-form .form-group input,
.strategy-form .form-group textarea {
    background: white;
    color: var(--color-text-dark);
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.strategy-form .form-group input::placeholder,
.strategy-form .form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.strategy-form .form-group input:focus,
.strategy-form .form-group textarea:focus {
    background: white;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

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

.what-happens-next {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent-cyan);
}

.what-happens-next h4 {
    font-size: 1.25rem;
    color: #1e1e2e;
    margin-bottom: 1rem;
}

.what-happens-next ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.what-happens-next li {
    color: #555;
    line-height: 1.6;
}

.what-happens-next strong {
    color: var(--color-accent-cyan);
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: #f8f9fa;
    padding: 1.75rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.info-box h4 {
    font-size: 1rem;
    color: #1e1e2e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-box p {
    color: #555;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.15);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-cyan), var(--color-accent-magenta), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--color-accent-cyan) 0%, var(--color-accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.footer-mission {
    color: #b8b8d1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-stat {
    display: flex;
    flex-direction: column;
}

.footer-stat strong {
    font-size: 1.5rem;
    color: var(--color-accent-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 900;
}

.footer-stat span {
    font-size: 0.875rem;
    color: #b8b8d1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-cyan);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--color-accent-cyan);
    color: var(--color-bg-dark);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 8px 16px rgba(0, 217, 255, 0.4);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #b8b8d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact strong {
    color: white;
    font-size: 0.875rem;
}

.footer-contact a {
    color: var(--color-accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
}

.footer-contact a:hover {
    color: var(--color-accent-magenta);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #b8b8d1;
    font-size: 0.875rem;
}

.footer-badge {
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

/* Case Studies Page Styles */
.case-studies-hero {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    min-height: 50vh;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    display: flex;
    align-items: center;
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.page-headline {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    letter-spacing: -0.03em;
}

.page-subheadline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 300;
}

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

.case-studies-listing {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.case-studies-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.case-study-card-large {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    position: relative;
}

.case-study-card-large::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-magenta)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-study-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
}

.case-study-card-large:hover::before {
    opacity: 1;
}

.case-study-image {
    position: relative;
    background: var(--color-bg-light);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: var(--color-text-muted);
    opacity: 0.3;
}

.case-study-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.case-study-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-study-category {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-magenta));
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'JetBrains Mono', monospace;
}

.case-study-date {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.case-study-title-large {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.case-study-excerpt {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.case-study-link-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-cyan);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.case-study-link-large:hover {
    gap: 0.75rem;
    color: var(--color-accent-magenta);
}

.case-study-link-large svg {
    transition: transform 0.3s ease;
}

.case-study-link-large:hover svg {
    transform: translateX(4px);
}

/* Industries Page Styles */
.industries-listing {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.industry-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-magenta)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
}

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

.industry-image {
    position: relative;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-surface) 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.industry-image .image-placeholder {
    color: var(--color-accent-cyan);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-image .image-placeholder {
    opacity: 1;
    transform: scale(1.1);
}

.industry-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.industry-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.industry-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    flex: 1;
}

.industry-link-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-cyan);
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: auto;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-link-text {
    gap: 0.75rem;
    color: var(--color-accent-magenta);
}

.industry-link-text svg {
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-link-text svg {
    transform: translateX(4px);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 4px;
    color: var(--color-accent-cyan);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--color-accent-cyan);
    color: white;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--color-text-dark);
}

.pagination-number:hover {
    border-color: var(--color-accent-cyan);
    color: var(--color-accent-cyan);
}

.pagination-number.active {
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-magenta));
    color: white;
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    .page-headline {
        font-size: 3rem;
    }

    .case-study-card-large {
        grid-template-columns: 1fr;
    }

    .case-study-image {
        min-height: 250px;
    }

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

    .form-card {
        max-width: 600px;
    }

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

    .section-title {
        font-size: 2.75rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-right {
        order: -1;
    }

    .photo-wrapper {
        max-width: 300px;
    }

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

    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.25rem;
    }

    .page-headline {
        font-size: 2.25rem;
    }

    .page-subheadline {
        font-size: 1.1rem;
    }

    .case-studies-hero {
        padding: 4rem 0 3rem;
    }

    .case-study-title-large {
        font-size: 1.5rem;
    }

    .pagination {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

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

    .form-card {
        padding: 2rem;
    }

    .case-studies {
        padding: 4rem 0;
    }

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

    .about {
        padding: 4rem 0;
    }

    .about-header {
        margin-bottom: 3rem;
    }

    .bio-intro {
        font-size: 1.15rem;
    }

    .bio-paragraph,
    .bio-closing {
        font-size: 1rem;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .final-cta {
        padding: 4rem 0;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .hero-headline {
        font-size: 1.875rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }
}