:root {
    color-scheme: light;
    --bg: #030711;
    --panel: #0d1423;
    --panel-soft: #131c32;
    --primary: #5d7bff;
    --primary-soft: rgba(93, 123, 255, 0.15);
    --accent: #19d2ba;
    --text: #ecf1ff;
    --muted: rgba(236, 241, 255, 0.75);
    --border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, rgba(93, 123, 255, 0.25), transparent 50%),
        radial-gradient(circle at top right, rgba(25, 210, 186, 0.18), transparent 40%),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
}

.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
}

header.hero {
    position: relative;
    overflow: hidden;
    padding: 0 0 4rem;
    margin-top: -80px;
    padding-top: 120px;
}

header.hero::after {
    content: "";
    position: absolute;
    inset: 3rem auto auto 55%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93, 123, 255, 0.45), transparent 60%);
    filter: blur(60px);
    opacity: 0.7;
    pointer-events: none;
}

nav.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.navbar.scrolled {
    background: rgba(3, 7, 17, 0.4);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(13, 20, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

nav.navbar.scrolled .navbar__inner {
    background: rgba(13, 20, 35, 0.7);
    border-color: rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text);
    text-decoration: none;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #030711;
}

ul.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--text);
}

.nav-links a:hover::before {
    width: 100%;
}

.cta-button {
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.7rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #030711;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 300ms ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 600ms ease, height 600ms ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(93, 123, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: translateY(-1px) scale(1);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.dev-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(3, 7, 17, 0.72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.dev-popup.is-visible {
    opacity: 1;
    pointer-events: all;
}

.dev-popup__card {
    position: relative;
    width: min(420px, 100%);
    padding: 2.5rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(14, 18, 32, 0.95), rgba(6, 9, 22, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
    text-align: center;
    transform: translateY(20px) scale(0.96);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dev-popup.is-visible .dev-popup__card {
    transform: translateY(0) scale(1);
}

.dev-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.dev-popup__close:hover {
    color: var(--text);
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(139, 92, 246, 0.15);
}

.dev-popup__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.25rem;
    color: var(--muted);
}

.dev-popup__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(139, 92, 246, 0.9);
}

.dev-popup__card h2 {
    margin-bottom: 0.5rem;
}

.dev-popup__card p {
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.dev-popup__actions {
    display: flex;
    justify-content: center;
}

.dev-popup__button {
    border: none;
    border-radius: 999px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #030711;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(93, 123, 255, 0.35);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dev-popup__button:hover {
    transform: translateY(-2px) scale(1.01);
}

.flag-icon {
    width: 20px;
    height: 14px;
    vertical-align: middle;
    margin-left: 4px;
    border-radius: 2px;
}

.hero__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    margin-top: 4rem;
}

.hero__content {
    width: min(760px, 100%);
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.hero__title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin: 1.5rem 0 1rem;
    line-height: 1.05;
}

.hero__title span {
    color: var(--accent);
}

.hero__description {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.secondary-link {
    border-radius: 999px;
    padding: 0.85rem 1.7rem;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: border-color 200ms ease;
}

.secondary-link:hover {
    border-color: var(--text);
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    margin-top: 0.5rem;
    justify-items: stretch;
}

.metric-card {
    padding: 1rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--panel);
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.metric-card h3 {
    margin: 0;
    font-size: 2rem;
}

.metric-card p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.metric-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.metric-card__icon svg {
    width: 26px;
    height: 26px;
}

.metric-card__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.25);
    pointer-events: none;
}

.metric-card__icon--launch {
    background: linear-gradient(135deg, rgba(93, 123, 255, 0.25), rgba(93, 123, 255, 0.05));
    box-shadow: 0 8px 25px rgba(93, 123, 255, 0.25);
}

.metric-card__icon--rating {
    background: linear-gradient(135deg, rgba(25, 210, 186, 0.3), rgba(25, 210, 186, 0.1));
    box-shadow: 0 8px 25px rgba(25, 210, 186, 0.25);
}

.metric-card__icon--happy {
    background: linear-gradient(135deg, rgba(255, 182, 72, 0.35), rgba(255, 182, 72, 0.1));
    box-shadow: 0 8px 25px rgba(255, 182, 72, 0.3);
}

.tech {
    padding: 4.5rem 0 5rem;
}

.tech__intro {
    text-align: center;
    width: min(720px, 90%);
    margin: 0 auto 3rem;
}

.tech__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    .policy-hero {
        padding: 7rem 0 4rem;
        text-align: center;
    }

    .policy-hero h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: 1.25rem;
    }

    .policy-hero__lead {
        max-width: 720px;
        margin: 0 auto;
        color: var(--muted);
        font-size: 1.1rem;
    }

    .policy {
        padding-bottom: 5rem;
    }

    .policy__intro {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
        padding: 3rem;
        border-radius: 32px;
        background: linear-gradient(135deg, rgba(35, 39, 58, 0.95), rgba(7, 11, 25, 0.95));
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 60px rgba(9, 12, 24, 0.4);
    }

    .policy__intro h2 {
        margin-bottom: 1rem;
    }

    .policy__meta {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }

    .policy__meta div {
        padding: 1rem 1.25rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .policy__meta span {
        display: block;
        font-size: 0.85rem;
        color: var(--muted);
    }

    .policy__grid {
        margin-top: 3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .policy-card {
        padding: 2rem;
        border-radius: 24px;
        background: rgba(13, 20, 35, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.04);
        box-shadow: 0 15px 40px rgba(10, 10, 20, 0.35);
    }

    .policy-card h3 {
        margin-bottom: 1rem;
    }

    .policy-card ul,
    .policy-card ol {
        padding-left: 1.25rem;
        color: var(--muted);
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .policy__timeline {
        margin-top: 3rem;
        padding: 2.5rem;
        border-radius: 28px;
        background: rgba(10, 14, 28, 0.9);
        border: 1px solid rgba(93, 123, 255, 0.2);
        box-shadow: 0 20px 60px rgba(7, 7, 15, 0.45);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .policy-step {
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }

    .policy-step__badge {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        background: linear-gradient(135deg, var(--accent), var(--primary));
        display: grid;
        place-items: center;
        font-weight: 700;
        color: #030711;
        box-shadow: 0 8px 18px rgba(93, 123, 255, 0.35);
    }

    .policy__contact {
        margin-top: 3rem;
        padding: 2.5rem;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        background: linear-gradient(135deg, rgba(23, 26, 46, 0.95), rgba(8, 10, 24, 0.95));
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        align-items: center;
    }

    .policy__cta-group {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .ghost-button {
        border-radius: 999px;
        padding: 0.85rem 1.75rem;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--text);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .ghost-button:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(139, 92, 246, 0.6);
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
    }

    @media (max-width: 900px) {
        .policy__intro {
            grid-template-columns: 1fr;
        }

        .policy__meta {
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        }

        .policy-step {
            flex-direction: column;
            align-items: flex-start;
        }

        .policy__contact {
            flex-direction: column;
            text-align: left;
        }
    }

    color: var(--accent);
}

.tech__intro h2 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.tech__intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.tech__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.tech-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(93, 123, 255, 0.18), transparent 65%);
    opacity: 0.6;
    pointer-events: none;
}

.tech-card__tag {
    align-self: flex-start;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.tech-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.tech-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.tech-card__stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.4rem;
}

.stack-logo {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    position: relative;
    transition: transform 200ms ease, opacity 200ms ease;
}

.stack-logo::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -0.4rem;
    left: 50%;
    transform: translate(-50%, 120%);
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    /* background: rgba(3, 7, 17, 0.95); */
    border: 1px solid var(--border);
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease;
    white-space: nowrap;
    color: var(--text);
}

.stack-logo svg {
    width: 50px;
    height: 50px;
}

/* .stack-logo svg * {
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
} */

.stack-logo:hover,
.stack-logo:focus-visible {
    transform: translateY(-6px);
    opacity: 0.9;
}

.stack-logo:hover::after,
.stack-logo:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 150%);
}

.stack-logo:focus-visible {
    outline: 2px solid rgba(93, 123, 255, 0.8);
    outline-offset: 3px;
}

.industries {
    padding: 4.5rem 0 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.industries__intro {
    text-align: center;
    width: min(760px, 90%);
    margin: 0 auto 3rem;
}

.industries__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.why-choose {
    padding: 6rem 0;
    position: relative;
}

.why-choose__intro {
    max-width: 720px;
    margin-bottom: 3.5rem;
}

.why-choose__intro h2 {
    margin-top: 0.75rem;
}

.why-choose__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.1);
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    color: rgba(139, 92, 246, 1);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-choose__list {
    display: grid;
    gap: 1.5rem;
    counter-reset: item;
}

.why-choose__item {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    counter-increment: item;
}

.why-choose__item::before {
    content: "0" counter(item);
    position: absolute;
    top: -12px;
    left: 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(236, 72, 153, 1));
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    z-index: 1;
}

.why-choose__item:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: scale(1.02);
}

.why-choose__item[open] {
    border-color: rgba(139, 92, 246, 0.8);
    background: linear-gradient(to bottom, rgba(139, 92, 246, 0.05), var(--panel));
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.why-choose__item summary {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
    padding: 2rem 2.5rem;
    -webkit-user-select: none;
    user-select: none;
}

.why-choose__item summary::-webkit-details-marker {
    display: none;
}

.why-choose__label {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.why-choose__item[open] .why-choose__label {
    color: rgba(139, 92, 246, 1);
}

.why-choose__item summary>div p {
    margin: 0.5rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.why-choose__item svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    padding: 12px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.05);
    color: rgba(139, 92, 246, 0.7);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-choose__item:hover svg {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
    transform: rotate(-10deg);
}

.why-choose__item[open] summary svg {
    transform: rotate(180deg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-color: rgba(139, 92, 246, 0.6);
    color: rgba(139, 92, 246, 1);
}

.why-choose__content {
    padding: 0 2.5rem 2.25rem 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    font-size: 1rem;
}

.why-choose__content p {
    margin: 0;
    padding: 1.25rem;
    background: rgba(139, 92, 246, 0.03);
    border-left: 3px solid rgba(139, 92, 246, 0.4);
    border-radius: 8px;
}

@media (max-width: 900px) {
    .why-choose__item summary {
        padding: 1.75rem 1.75rem;
        gap: 1.5rem;
    }

    .why-choose__content {
        padding: 0 1.75rem 1.75rem 1.75rem;
    }

    .why-choose__label {
        font-size: 1.2rem;
    }

    .why-choose__item svg {
        width: 42px;
        height: 42px;
    }
}

.industries__intro h2 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.industries__intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.industry-card {
    background: var(--panel-soft);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: "";
    position: absolute;
    inset: auto -40% -40% auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(25, 210, 186, 0.18), transparent 65%);
    opacity: 0.4;
    pointer-events: none;
}

.industry-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: rgba(93, 123, 255, 0.1);
}

.industry-card__icon svg {
    width: 32px;
    height: 32px;
}

.industry-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.industry-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.industry-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.industry-card__list li {
    position: relative;
    padding-left: 1.2rem;
    color: rgba(236, 241, 255, 0.85);
    font-size: 0.95rem;
}

.industry-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(25, 210, 186, 0.6);
}

/* Client Slider Section */
.client-slider {
    padding: 4.5rem 0 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.client-slider__intro {
    text-align: center;
    width: min(720px, 90%);
    margin: 0 auto 3rem;
}

.client-slider__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.client-slider__intro h2 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.client-slider__intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.client-slider__wrapper {
    position: relative;
}

.client-slider__viewport {
    overflow: hidden;
    border-radius: 24px;
}

.client-slider__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.client-slide {
    flex: 0 0 100%;
    padding: 2.5rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.client-slide__photo-wrapper {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.client-slide__photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
}

.client-slide__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.client-slide__project {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 999px;
    align-self: flex-start;
}

.client-slide__stars {
    color: #FFB800;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.client-slide__quote {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--text);
    font-weight: 400;
    margin: 0;
}

.client-slide__meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.client-slide__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.client-slide__meta-item:nth-child(1) {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.client-slide__meta-item:nth-child(2) {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.client-slide__meta-item:nth-child(3) {
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.client-slide__meta-item:nth-child(4) {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.client-slide__meta-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.client-slide__meta-item:nth-child(1):hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
}

.client-slide__meta-item:nth-child(2):hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.client-slide__meta-item:nth-child(3):hover {
    background: rgba(236, 72, 153, 0.12);
    border-color: rgba(236, 72, 153, 0.3);
}

.client-slide__meta-item:nth-child(4):hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
}

.client-slide__meta-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.client-slide__meta-label svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.client-slide__meta-value {
    font-size: 1.015625rem;
    color: var(--text);
    line-height: 1.4;
    font-weight: 500;
}

.client-slide__author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.client-slide__bio h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--text);
    font-weight: 600;
}

.client-slide__bio p {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
}

.client-slide__company-info {
    font-size: 0.8125rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 0.25rem !important;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.client-slide__company-info svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.6;
}

.client-slide__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.client-slide__link:hover {
    opacity: 0.8;
}

.client-slide__link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.client-slide__link--muted {
    color: rgba(255, 255, 255, 0.4);
    cursor: default;
}

.client-slide__link--muted:hover {
    opacity: 1;
}

.client-slide__link {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.client-slide__link:hover {
    color: var(--accent);
}

.client-slide__link--muted {
    color: var(--muted);
    cursor: default;
}

.client-slide__link--muted:hover {
    color: var(--muted);
}

.client-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.client-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    transition: all 0.25s ease;
}

.client-slider__nav svg {
    width: 1.5rem;
    height: 1.5rem;
}

.client-slider__nav:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

.client-slider__nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.client-slider__dots {
    display: flex;
    gap: 0.5rem;
}

.client-slider__dot {
    width: 0.625rem;
    height: 0.625rem;
    background: var(--border);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.client-slider__dot:hover {
    background: var(--muted);
}

.client-slider__dot.is-active {
    background: var(--primary);
    width: 1.5rem;
    border-radius: 0.3125rem;
}


.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-pill svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

@media (max-width: 960px) {
    nav.navbar {
        border-radius: 28px;
        flex-wrap: wrap;
        padding: 1.2rem;
    }

    ul.nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    ul.nav-links.open {
        display: flex;
        margin-top: 1rem;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero__grid {
        padding-inline: 1rem;
    }

    .hero__content {
        width: 100%;
    }

    .tech__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industries__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-slide {
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .client-slide__photo-wrapper {
        flex: 0 0 auto;
        width: 120px;
    }

    .client-slide__content {
        align-items: center;
    }

    .client-slide__meta {
        text-align: left;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        padding: 0;
    }

    .client-slide__author {
        text-align: center;
        align-items: center;
    }

    .client-slide__quote {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    header.hero {
        padding-bottom: 3rem;
    }

    nav.navbar {
        border-radius: 20px;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .tech__grid {
        grid-template-columns: 1fr;
    }

    .industries__grid {
        grid-template-columns: 1fr;
    }

    .tech-card {
        padding: 1.5rem;
    }

    .client-slide {
        padding: 1.75rem 1.25rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .client-slide__photo-wrapper {
        width: 100px;
    }

    .client-slide__quote {
        font-size: 1rem;
    }

    .client-slide__meta {
        padding: 0;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .client-slide__meta-item {
        padding: 1rem;
    }

    .client-slide__meta-label {
        font-size: 0.875rem;
    }

    .client-slide__meta-value {
        font-size: 0.9375rem;
    }

    .client-slide__author {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

}

.footer {
    background: linear-gradient(to bottom, transparent, rgba(13, 20, 35, 0.6)), var(--panel);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.footer__logo .brand-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    color: white;
}

.footer__tagline {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    max-width: 320px;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--muted);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.footer__social a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer__social a:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.6);
    color: rgba(139, 92, 246, 1);
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
}

.footer__social a:hover::before {
    opacity: 1;
}

.footer__social svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer__social a:hover svg {
    transform: scale(1.2);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer__column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin: 0 0 1rem;
}

.footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__column li {
    margin: 0;
}

.footer__column a,
.footer__column span {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
}

.footer__column a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 1), rgba(236, 72, 153, 1));
    transition: width 0.3s ease;
}

.footer__column a:hover {
    color: rgba(139, 92, 246, 1);
    transform: translateX(4px);
}

.footer__column a:hover::after {
    width: 100%;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer__legal a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width 0.3s ease;
}

.footer__legal a:hover {
    color: var(--text);
}

.footer__legal a:hover::after {
    width: 100%;
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__tagline {
        max-width: 100%;
    }
}