*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #89ABF2;
    --dark: #1E2026;
    --white: #ffffff;
    --gray-light: #f7f7f9;
    --border: rgba(30, 32, 38, 0.08);
}

html {
    scroll-behavior: smooth;
    scroll-margin-top: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 48px;
    background: var(--white);
    border-bottom: 0.5px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

a {
    text-decoration: none;
}

.nav-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: -0.3px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    color: var(--dark);
    opacity: 0.5;
    font-weight: 400;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    border: 1px solid rgba(137, 171, 242, 0.5);
    color: var(--blue);
    font-size: 12px;
    font-weight: 400;
    padding: 9px 22px;
    border-radius: 100px;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--blue);
    color: var(--white);
}

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--dark);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ── HERO ── */
#hero {
    background: var(--blue);
    height: 100vh;
    min-height: 600px;
    display: flex;
    gap: 20rem;
    position: relative;
    overflow: hidden;
}


.hero-content {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.hero-eyebrow {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.4px;
}

.hero-body {
    display: flex;
    justify-content: space-between;
}

#hero h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.12;
    max-width: 580px;
    letter-spacing: -1px;
}

#hero h1 em {
    font-style: normal;
    font-weight: 500;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    padding: 10px 26px;
    border-radius: 100px;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 300;
}

.hero-circle {
    width: 64px;
    height: 64px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color 0.25s;
    margin-bottom: 6px;
}

.hero-circle:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-circle svg {
    opacity: 0.65;
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--dark);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    will-change: transform;
}

.ticker-track {
    display: inline-flex;
    flex-shrink: 0;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 36px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}

/* ── SHARED ── */
.sec-pill {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 400;
    padding: 6px 18px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

section {
    padding: 96px 48px;
}

/* ── ABOUT ── */
#about {
    text-align: center;
}

#about h2 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 300;
    line-height: 1.22;
    color: var(--dark);
    max-width: 540px;
    margin: 22px auto 16px;
    letter-spacing: -0.5px;
}

#about h2 b {
    font-weight: 500;
}

.about-p {
    font-size: 14px;
    color: #999;
    max-width: 420px;
    margin: 0 auto 36px;
    line-height: 1.85;
    font-weight: 300;
}

.pills {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.pill {
    border: 1px solid #e2e2e2;
    color: #777;
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    background: var(--white);
    transition: all 0.2s;
    cursor: default;
}

.pill:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    margin: 0 auto;
    border-top: 0.5px solid #ebebeb;
    padding-top: 40px;
}

.stat {
    text-align: center;
    padding: 0 16px;
}

.stat+.stat {
    border-left: 0.5px solid #ebebeb;
}

.stat-num {
    font-size: 36px;
    font-weight: 300;
    color: var(--dark);
    letter-spacing: -1.5px;
    line-height: 1;
}

.stat-lbl {
    font-size: 11px;
    color: #bbb;
    margin-top: 8px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* ── SERVICES ── */
#services {
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-top: 18px;
    color: var(--dark);
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: rgba(30, 32, 38, 0.08);
    border: 0.5px solid rgba(30, 32, 38, 0.08);
    max-width: 980px;
    margin: 0 auto;
}

.srv-card {
    background: var(--white);
    padding: 44px 32px;
    cursor: default;
    transition: background 0.25s;
}

.srv-card:hover {
    background: var(--blue);
}

.srv-card:hover .srv-title,
.srv-card:hover .srv-num {
    color: rgba(255, 255, 255, 0.9);
}

.srv-card:hover .srv-desc {
    color: rgba(255, 255, 255, 0.65);
}

.srv-num {
    font-size: 11px;
    color: #ddd;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 24px;
    transition: color 0.25s;
}

.srv-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
    transition: color 0.25s;
}

.srv-desc {
    font-size: 13px;
    color: #aaa;
    line-height: 1.75;
    font-weight: 300;
    transition: color 0.25s;
}

/* ── PROCESS ── */
#process {
    background: var(--white);
}

.process-list {
    max-width: 680px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 0.5px solid #ebebeb;
    align-items: flex-start;
}

.process-item:last-child {
    border-bottom: none;
}

.p-num {
    font-size: 11px;
    color: #ccc;
    font-weight: 300;
    letter-spacing: 1px;
    min-width: 26px;
    padding-top: 3px;
}

.p-content h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.p-content p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.8;
    font-weight: 300;
}

/* ── WORKS ── */
#works {
    background: var(--blue);
}

.works-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 44px;
}

.works-tag {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-weight: 400;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

#works h2 {
    font-size: clamp(24px, 3.8vw, 36px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.3px;
    text-transform: uppercase;
    line-height: 1.15;
}

.works-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
    padding-bottom: 4px;
}

.work-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: padding-left 0.25s ease;
}

.work-item:last-child {
    border-bottom: none;
}

.work-item:hover {
    padding-left: 12px;
}

.work-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.work-name {
    font-size: clamp(13px, 2.2vw, 17px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.work-tag {
    border: 0.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 100px;
    font-weight: 300;
}

.work-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    transition: color 0.2s, transform 0.2s;
}

.work-item:hover .work-arrow {
    color: var(--white);
    transform: translateX(5px);
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--white);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 940px;
    margin: 0 auto;
}

.test-card {
    border: 0.5px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px 26px;
    transition: border-color 0.2s;
}

.test-card:hover {
    border-color: var(--blue);
}

.test-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.star {
    width: 12px;
    height: 12px;
    background: var(--blue);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.test-text {
    font-size: 13px;
    color: #777;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 22px;
    font-style: italic;
}

.test-author {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
}

.test-role {
    font-size: 11px;
    color: #bbb;
    font-weight: 300;
    margin-top: 3px;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
    padding: 32px 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.foot-logo {
    font-size: 17px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

.foot-links {
    display: flex;
    gap: 24px;
    list-style: none;
    justify-content: center;
}

.foot-links a {
    text-decoration: none;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.22);
    font-weight: 300;
    transition: color 0.2s;
}

.foot-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.foot-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.18);
    font-weight: 300;
    text-align: right;
}

/* ── CONTACT ── */
#contact {
    background: var(--dark);
    padding: 120px 48px;
    text-align: center;
}

#contact .sec-pill {
    background: rgba(137, 171, 242, 0.12);
    color: var(--blue);
    border: 0.5px solid rgba(137, 171, 242, 0.3);
}

#contact h2 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -1px;
    max-width: 560px;
    margin: 22px auto 18px;
    line-height: 1.1;
}

#contact h2 b {
    font-weight: 500;
}

#contact .contact-sub-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    max-width: 380px;
    margin: 0 auto 48px;
    line-height: 1.85;
    font-weight: 300;
}

.contact-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.contact-btn-primary {
    background: var(--blue);
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 400;
    padding: 14px 36px;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
    transition: opacity 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
}

.contact-btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.contact-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    font-weight: 300;
    padding: 14px 32px;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.contact-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.contact-channels {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 0.5px solid rgba(255, 255, 255, 0.07);
    padding-top: 40px;
}

.contact-channel {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
    font-weight: 300;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-channel:hover {
    color: rgba(255, 255, 255, 0.65);
}



/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: 22px;
    font-weight: 300;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.3px;
    opacity: 0.7;
}

.mobile-nav a:hover {
    opacity: 1;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
    font-weight: 300;
    line-height: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    #contact {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 14px 24px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-menu-btn {
        display: block;
    }

    #hero {
        padding: 28px 24px 36px;
    }

    .hero-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .hero-circle {
        align-self: flex-end;
    }

    section {
        padding: 72px 24px;
    }

    .srv-grid {
        grid-template-columns: 1fr 1fr;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 24px;
    }

    .foot-copy {
        text-align: left;
    }

    .foot-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    #contact {
        padding: 80px 24px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn-primary,
    .contact-btn-ghost {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .srv-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        max-width: 100%;
    }

    .test-grid {
        grid-template-columns: 1fr;
    }
}