@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #0f0f0f;
    background: #fff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

/* ── Navigation ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #0f0f0f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-text {
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: #0f0f0f;
    background: #f5f5f5;
}

.nav-link.active {
    color: #ea580c;
    font-weight: 600;
}

.nav-cta {
    background: #ea580c;
    color: #fff !important;
    border-radius: 8px;
    padding: 8px 20px !important;
}

.nav-cta:hover {
    background: #c2410c !important;
    color: #fff !important;
}

/* ── Hero ── */
.hero {
    background: #0a0a0a;
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(234,88,12,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234,88,12,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(234,88,12,0.12);
    color: #fb923c;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(234,88,12,0.2);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
    color: #fff;
    max-width: 820px;
}

.hero h1 span {
    color: #ea580c;
}

.intro {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 580px;
    margin-bottom: 48px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #ea580c;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
    letter-spacing: -0.01em;
}

.cta-primary:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(234,88,12,0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.2s;
}

.cta-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.trust-text {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.stat {
    padding: 32px 40px;
    background: rgba(255,255,255,0.03);
}

.stat-value {
    font-size: 44px;
    font-weight: 800;
    color: #ea580c;
    margin-bottom: 4px;
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    margin-top: 6px;
}

/* ── Features / What we do ── */
.work {
    padding: 120px 0;
    background: #fff;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    color: #ea580c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.work h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 72px;
    max-width: 520px;
    line-height: 1.6;
}

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

.work-item {
    padding: 40px 32px;
    background: #fafafa;
    border-radius: 20px;
    border: 1px solid #efefef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.work-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ea580c, #fb923c);
    opacity: 0;
    transition: opacity 0.3s;
}

.work-item:hover {
    border-color: #e0e0e0;
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

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

.work-icon {
    width: 52px;
    height: 52px;
    background: #fff1eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    margin-bottom: 24px;
}

.work-icon svg {
    width: 26px;
    height: 26px;
}

.work-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.work-item p {
    color: #777;
    line-height: 1.65;
    font-size: 15px;
}

/* ── Results ── */
.results {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(234,88,12,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.results h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.1;
}

.results .section-label {
    color: #fb923c;
}

.results-intro {
    color: rgba(255,255,255,0.45);
    margin-bottom: 64px;
    line-height: 1.7;
    font-size: 17px;
    max-width: 500px;
}

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

.result-item {
    padding: 40px 32px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.3s;
}

.result-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(234,88,12,0.3);
}

.result-stat {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    color: #ea580c;
    line-height: 1.1;
}

.result-desc {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    line-height: 1.6;
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: #fff;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    line-height: 1.1;
}

.contact-intro {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 16px;
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: #fff1eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fafafa;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #efefef;
}

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0a0a0a;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
    background: #fff;
    color: #0a0a0a;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 4px rgba(234,88,12,0.08);
}

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

.submit-btn {
    padding: 15px 32px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.submit-btn:hover {
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(234,88,12,0.3);
}

.form-success {
    padding: 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    color: #166534;
    font-size: 15px;
}

/* ── Footer ── */
footer {
    background: #0a0a0a;
    padding: 48px 0;
    border-top: 1px solid #1a1a1a;
}

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

footer p {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
}

footer a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #ea580c;
}

/* ── Services Page ── */
.services-hero {
    background: #0a0a0a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234,88,12,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.services-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1.1;
}

.services-intro {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 540px;
}

.services-overview {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fafafa;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid #efefef;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ea580c, #fb923c);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: #e0e0e0;
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.09);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: #fff1eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-number {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #ea580c;
    background: #fff1eb;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.service-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a0a0a;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.service-card p {
    color: #777;
    line-height: 1.65;
    margin-bottom: 28px;
    font-size: 14px;
}

.learn-more-btn {
    background: #0a0a0a;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.learn-more-btn:hover {
    background: #ea580c;
    transform: translateX(2px);
}

/* ── Service Details ── */
.service-details {
    padding: 80px 0;
    background: #fafafa;
    border-top: 1px solid #efefef;
}

.close-details {
    background: #fff;
    border: 1.5px solid #e8e8e8;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 48px;
    transition: all 0.2s;
    color: #555;
    font-family: inherit;
}

.close-details:hover {
    border-color: #ea580c;
    color: #ea580c;
}

.detail-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
}

.service-icon-large {
    width: 72px;
    height: 72px;
    background: #fff1eb;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    flex-shrink: 0;
}

.service-icon-large svg {
    width: 36px;
    height: 36px;
}

.detail-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
    color: #0a0a0a;
}

.service-tagline {
    font-size: 17px;
    color: #666;
    line-height: 1.5;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.detail-box {
    padding: 36px;
    border-radius: 20px;
    border: 1.5px solid;
}

.problem-box {
    background: #fff5f5;
    border-color: #fecaca;
}

.solution-box {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.detail-box h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.detail-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.detail-box li {
    padding: 9px 0;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.detail-box li:last-child {
    border-bottom: none;
}

.detail-box li strong {
    color: #0a0a0a;
}

.box-highlight {
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 10px;
    margin-top: 8px;
    background: #fff;
    border-left: 4px solid #dc2626;
    color: #dc2626;
    font-size: 15px;
}

.box-highlight.success {
    border-left-color: #16a34a;
    color: #16a34a;
}

/* ── Services CTA ── */
.services-cta {
    padding: 120px 0;
    background: #0a0a0a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(234,88,12,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.services-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1.1;
}

.services-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 40px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    nav .container {
        height: 60px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-link {
        padding: 6px 10px;
        font-size: 13px;
    }

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

    .hero h1 {
        font-size: 36px;
    }

    .intro {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary, .cta-secondary {
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 24px 28px;
    }

    .work, .results, .contact, .services-overview {
        padding: 80px 0;
    }

    .work h2, .results h2, .contact-left h2, .services-hero h1 {
        font-size: 32px;
    }

    .work-grid, .results-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 28px 24px;
    }

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

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

    .detail-header {
        flex-direction: column;
    }

    .services-cta h2 {
        font-size: 32px;
    }

    footer .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
