:root {
    --orange: #f47b20;
    --orange-dark: #d9610d;
    --black: #111111;
    --dark: #171717;
    --white: #ffffff;
    --light: #f7f7f5;
    --grey: #666666;
    --border: #e6e6e6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* ================= NAVIGATION ================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

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

.brand {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-syncwell {
    color: var(--black);
}

.brand-bits {
    color: var(--orange);
}

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

nav a {
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

nav a:hover {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 11px 20px;
    border-radius: 6px;
}

.nav-cta:hover {
    color: var(--white);
    background: var(--orange-dark);
}


/* ================= COMMON ================= */

.eyebrow {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h1,
h2,
h3 {
    line-height: 1.15;
}

h1 span,
h2 span {
    color: var(--orange);
}


/* ================= HERO ================= */

.hero {
    padding: 110px 0 100px;
    background:
        radial-gradient(
            circle at 85% 35%,
            rgba(244, 123, 32, 0.12),
            transparent 30%
        ),
        var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 6vw, 76px);
    letter-spacing: -3px;
    margin-bottom: 28px;
}

.hero-description {
    max-width: 650px;
    color: var(--grey);
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.primary-button {
    background: var(--orange);
    color: var(--white);
}

.primary-button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.secondary-button {
    border: 1px solid var(--black);
    color: var(--black);
}

.secondary-button:hover {
    background: var(--black);
    color: var(--white);
}

.hero-note {
    margin-top: 30px;
    font-size: 12px;
    color: #888888;
}

.hero-note a {
    color: var(--black);
    font-weight: 700;
}

.hero-note a:hover {
    color: var(--orange);
}


/* ================= HERO CARD ================= */

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.tech-card {
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background: var(--dark);
    color: var(--white);
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid #333333;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #aaaaaa;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
}

.talent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 22px 0;
    border-bottom: 1px solid #333333;
}

.talent-row:last-child {
    border-bottom: 0;
}

.talent-row strong {
    display: block;
    font-size: 17px;
}

.talent-row small {
    display: block;
    margin-top: 4px;
    color: #888888;
    font-size: 11px;
}

.talent-row > span {
    font-size: 11px;
    color: var(--orange);
    font-weight: 800;
}


/* ================= TRUST ================= */

.trust-strip {
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 35px 0;
}

.trust-strip p {
    text-align: center;
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 20px;
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-items span {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 9px 17px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}


/* ================= SECTIONS ================= */

.section {
    padding: 110px 0;
}

.section-header {
    max-width: 720px;
    margin-bottom: 60px;
}

.section-header h2,
.why-heading h2,
.about-section h2 {
    font-size: clamp(38px, 5vw, 58px);
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.section-header p {
    color: var(--grey);
    font-size: 17px;
}


/* ================= SOLUTIONS ================= */

.solutions-section {
    background: var(--light);
}

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

.solution-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 30px;
    min-height: 260px;
    transition: 0.25s ease;
}

.solution-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.solution-card .number {
    margin-bottom: 45px;
}

.solution-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--grey);
    font-size: 14px;
}


/* ================= CAPABILITIES ================= */

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

.capability-card {
    border: 1px solid var(--border);
    padding: 32px;
    min-height: 300px;
    transition: 0.25s ease;
    background: var(--white);
}

.capability-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.number {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 35px;
}

.capability-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.capability-card p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.7;
}

.tags {
    margin-top: 25px;
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
}


/* ================= WHY US ================= */

.dark-section {
    background: var(--dark);
    color: var(--white);
    padding: 110px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.why-heading h2 span {
    color: var(--orange);
}

.why-content {
    border-top: 1px solid #333333;
}

.why-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid #333333;
}

.why-item > span {
    color: var(--orange);
    font-weight: 800;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.why-item p {
    color: #aaaaaa;
    font-size: 14px;
}


/* ================= PROCESS ================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
}

.process-step {
    padding: 35px 25px 25px 0;
    margin-right: 25px;
    border-right: 1px solid var(--border);
}

.process-step:last-child {
    border-right: 0;
}

.process-step > span {
    display: block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 40px;
}

.process-step h3 {
    font-size: 23px;
    margin-bottom: 14px;
}

.process-step p {
    color: var(--grey);
    font-size: 14px;
}


/* ================= ABOUT ================= */

.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.about-text p {
    color: var(--grey);
    font-size: 16px;
    margin-bottom: 22px;
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--orange);
    font-weight: 800;
    font-size: 14px;
}

.text-link:hover {
    color: var(--orange-dark);
}


/* ================= CTA ================= */

.cta-section {
    padding: 125px 0;
    text-align: center;
    background: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(42px, 6vw, 68px);
    letter-spacing: -3px;
    margin-bottom: 22px;
}

.cta-content p {
    color: var(--grey);
    font-size: 18px;
    margin-bottom: 35px;
}


/* ================= FOOTER ================= */

footer {
    background: var(--black);
    color: var(--white);
    padding: 50px 0;
    border-top: 3px solid var(--orange);
}

/* Footer logo */
footer .brand-syncwell {
    color: var(--white);
}

footer .brand-bits {
    color: var(--orange);
}

footer p {
    margin-top: 8px;
    color: #888888;
    font-size: 12px;
}

footer .footer-company {
    color: #aaaaaa;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    font-size: 12px;
    color: #bbbbbb;
}

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

.copyright {
    text-align: right;
    color: #777777;
    font-size: 11px;
}


/* ================= MOBILE ================= */

@media (max-width: 1000px) {

    .hero-grid,
    .why-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:nth-child(2) {
        border-right: 0;
    }

    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }
}


@media (max-width: 700px) {

    nav a:not(.nav-cta) {
        display: none;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .solutions-grid,
    .capability-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        margin-right: 0;
    }

    .process-step:last-child {
        border-bottom: 0;
    }

    .process-step:nth-child(2),
    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        border-top: 0;
    }

    .section,
    .dark-section {
        padding: 75px 0;
    }

    .section-header h2,
    .why-heading h2,
    .about-section h2 {
        font-size: 40px;
    }

    .cta-section {
        padding: 85px 0;
    }

    .cta-content h2 {
        font-size: 45px;
    }

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

    .tech-card {
        padding: 24px;
    }

    .talent-row strong {
        font-size: 15px;
    }

    .footer-grid {
        gap: 25px;
    }

}
