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

body {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    background: #fafafa;
    color: #0a0a0a;
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

.announcement-bar {
    background: #0a0a0a;
    color: #fff;
    text-align: center;
    padding: 14px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.announcement-bar a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 100;
    padding: 20px 0;
}

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

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge {
    font-size: 9px;
    font-weight: 700;
    background: #0066ff;
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: #0a0a0a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.2s;
}

nav a:not(.btn-header):hover {
    color: #666;
}

.btn-header {
    padding: 12px 28px;
    background: #0066ff;
    color: #fff !important;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.btn-header:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.hero {
    padding: 160px 0 120px;
    text-align: center;
    background-color: #fafafa;
    background-image: 
        linear-gradient(to right, #e8e8e8 1px, transparent 1px),
        linear-gradient(to bottom, #e8e8e8 1px, transparent 1px);
    background-size: 60px 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(250, 250, 250, 0.95) 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: #f5f5f5;
    color: #666;
    padding: 10px 24px;
    margin-bottom: 40px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    position: relative;
    z-index: 10;
}

h1 {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    color: #0a0a0a;
    position: relative;
    z-index: 10;
}

h1 .typewriter {
    display: inline-block;
    border-right: 4px solid #0066ff;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

.lead {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.cta-primary {
    display: inline-block;
    padding: 20px 48px;
    background: #0066ff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.2);
}

.cta-primary:hover {
    background: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 102, 255, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 20px 48px;
    background: #fff;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.cta-secondary:hover {
    border-color: #0a0a0a;
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    gap: 40px;
    justify-content: center;
    font-size: 12px;
    color: #999;
    letter-spacing: -0.01em;
    font-weight: 600;
    position: relative;
    z-index: 10;
}

.social-proof {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

.proof-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.logos-wrapper {
    overflow: hidden;
}

.logos {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scroll 25s linear infinite;
    width: max-content;
}

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

.logo-item {
    font-size: 18px;
    font-weight: 700;
    color: #ccc;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.logo-item[src] {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.stats {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    padding: 100px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    color: #0a0a0a;
}

.stat-label {
    font-size: 13px;
    color: #666;
    letter-spacing: -0.01em;
    font-weight: 600;
}

section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #0a0a0a;
}

.services {
    background: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    padding: 48px 40px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #0066ff;
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 9px;
    font-weight: 700;
    background: #0066ff;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.service-card:hover {
    border-color: #0066ff;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.08);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-features li::before {
    content: '→';
    margin-right: 12px;
    color: #0066ff;
    font-weight: 700;
}

.process {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 48px 32px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.process-step:hover {
    background: #fff;
    border-color: #0066ff;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.08);
}

.step-number {
    font-size: 56px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}

.process-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.projects {
    background: #fafafa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.4s;
}

.project-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #e0e0e0;
}

.project-content {
    padding: 40px;
}

.project-card:hover {
    border-color: #0066ff;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.08);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-tag {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.02em;
}

.project-roi {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #0066ff;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: -0.01em;
}

.project-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
    letter-spacing: -0.03em;
}

.project-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 24px;
}

.project-metrics {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.metric {
    font-size: 13px;
    color: #999;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.metric strong {
    color: #0a0a0a;
    font-weight: 700;
}

.project-tech {
    font-size: 12px;
    color: #ccc;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.testimonials {
    background: #fff;
}

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

.testimonial-card {
    background: #fafafa;
    padding: 48px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: #fff;
    border-color: #0066ff;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.08);
}

.stars {
    font-size: 16px;
    margin-bottom: 24px;
    color: #fbbf24;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 32px;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.author strong {
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    font-size: 13px;
}

.author span {
    font-size: 12px;
    color: #999;
    letter-spacing: -0.01em;
}

.quote {
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    padding: 140px 0;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.quote-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    background: #0066ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.quote-content h2 {
    text-align: left;
    margin-bottom: 40px;
}

.quote-benefits {
    list-style: none;
    padding: 0;
}

.quote-benefits li {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.quote-benefits li::before {
    content: '→';
    margin-right: 16px;
    color: #0066ff;
    font-weight: 700;
}

.quote-form {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

input,
select,
textarea {
    width: 100%;
    padding: 18px 20px;
    font-size: 14px;
    font-family: 'IBM Plex Mono', monospace;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #0a0a0a;
    outline: none;
    transition: all 0.2s;
    font-weight: 500;
}

input:focus,
select:focus,
textarea:focus {
    background: #fff;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.08);
}

select {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    font-size: 14px;
    font-weight: 700;
    background: #0066ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    letter-spacing: -0.01em;
    font-family: 'IBM Plex Mono', monospace;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.2);
}

.btn-submit:hover {
    background: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 102, 255, 0.3);
}

.form-note {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 20px;
    letter-spacing: -0.01em;
}

#response {
    margin-top: 32px;
    padding: 24px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 12px;
    text-align: center;
    color: #166534;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 13px;
    display: none;
}

#response.show {
    display: block;
}

footer {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #1a1a1a;
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-left p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.footer-contact a:hover {
    color: #999;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 11px;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .services-grid,
    .process-grid,
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .quote-content h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav a:not(.btn-header) {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
    }

    h1 {
        font-size: 40px;
    }

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

    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }

    .logos {
        flex-wrap: wrap;
        gap: 32px;
    }

    section {
        padding: 80px 0;
    }

    h2 {
        font-size: 36px;
    }

    .stats .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .quote-form {
        padding: 40px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}
