/* Global Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg-dark: #0b1938;
    --bg-light: #162559;
    --brand: #345dff;
    --brand-accent: #00c2ff;
    --text: #f6f7fb;
    --text-muted: #c1c7dd;
    --card-bg: rgba(20, 32, 70, 0.68);
    --card-border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 55px rgba(12, 22, 70, 0.3);
    font-family: "Poppins", "Inter", sans-serif;
    color-scheme: dark;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at top right, rgba(0, 194, 255, 0.26), transparent 52%), var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 20%, rgba(52, 93, 255, 0.12), transparent 48%), radial-gradient(circle at 80% 10%, rgba(0, 194, 255, 0.12), transparent 52%);
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: -1;
}

body.is-loaded::before {
    opacity: 1;
}

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

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-accent);
}

.section-head {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-head h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.75rem);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(14px);
}

.card h3 {
    margin-top: 0;
    font-weight: 600;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card .btn {
    margin-top: 18px;
}

.card ul {
    padding-left: 20px;
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(52, 93, 255, 0.18);
    color: var(--brand-accent);
    font-weight: 500;
    font-size: 0.75rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 11, 29, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
}

.logo span {
    color: var(--brand-accent);
}

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

.nav a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus {
    color: var(--text);
}

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-accent));
    color: #fff !important;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
}

/* Hero */
.hero {
    padding: 160px 0 120px;
    background:
        radial-gradient(circle at left, rgba(52, 93, 255, 0.45), transparent 52%),
        radial-gradient(circle at bottom right, rgba(0, 194, 255, 0.33), transparent 52%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 16, 44, 0.52), rgba(9, 14, 36, 0.18));
    opacity: 0;
    transition: opacity 1s ease 0.1s;
}

body.is-loaded .hero::before {
    opacity: 1;
}

.hero-content {
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

body.is-loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-text h1 {
    font-size: clamp(2.25rem, 3.6vw, 3.5rem);
    margin: 16px 0 12px;
    line-height: 1.1;
}

.hero-text .lead {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--brand-accent);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 32px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-accent));
    color: #fff;
    box-shadow: 0 12px 30px rgba(52, 93, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline {
    background: rgba(7, 11, 29, 0.85);
    color: var(--brand-accent);
    border: 1px solid rgba(52, 93, 255, 0.5);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--brand-accent);
    box-shadow: 0 10px 22px rgba(52, 93, 255, 0.25);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    color: var(--brand-accent);
    font-weight: 600;
    border: none;
}

.btn-link::after {
    content: ">";
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-link:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.metrics > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(7, 11, 29, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 20px 40px rgba(7, 12, 32, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.metrics > div::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.35), transparent 70%);
    top: -40px;
    right: -30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metrics > div:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 93, 255, 0.35);
}

.metrics > div:hover::before {
    opacity: 1;
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: baseline;
}

.metric-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 4px;
    color: var(--brand-accent);
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: grid;
    justify-items: end;
    animation: heroFloatBg 10s ease-in-out infinite alternate;
    gap: 24px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.24), transparent 70%);
    top: -60px;
    right: -80px;
    z-index: -1;
}

@keyframes heroFloatBg {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

.hero-visual .card {
    padding: 36px;
    max-width: 380px;
    box-shadow: 0 32px 70px rgba(4, 12, 38, 0.6);
    background: linear-gradient(160deg, rgba(15, 22, 51, 0.92), rgba(10, 18, 44, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

body.is-loaded .hero-visual .card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.card-title {
    margin: 0 0 12px;
    font-weight: 600;
}

.card-text {
    margin-bottom: 20px;
}

.chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    margin-top: 20px;
    position: relative;
}

.chart::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 11, 29, 0.5) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.bar {
    width: 32px;
    border-radius: 12px 12px 6px 6px;
    background: linear-gradient(135deg, var(--brand), var(--brand-accent));
    opacity: 0.9;
    transform-origin: bottom;
    transform: scaleY(0);
    transition: transform 0.8s ease;
}

.bar-1 { height: 45%; }
.bar-2 { height: 68%; }
.bar-3 { height: 90%; }
.bar-4 { height: 72%; }

.chart-bar.animate {
    animation: barGrow 0.9s ease forwards;
    animation-delay: var(--bar-delay, 0ms);
}

@keyframes barGrow {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

.floating-note {
    position: absolute;
    bottom: 32px;
    left: -40px;
    background: rgba(7, 11, 29, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    max-width: 200px;
    opacity: 0;
    transform: translate(-10px, 20px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
    z-index: 1;
}

.floating-note::after {
    content: "";
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.18), transparent 75%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1s ease 0.5s;
    z-index: -1;
}

body.is-loaded .floating-note {
    opacity: 1;
    transform: translate(0, 0);
}

body.is-loaded .floating-note::after {
    opacity: 1;
}

.floating-note span {
    display: block;
    font-weight: 700;
    color: var(--brand-accent);
    font-size: 1.25rem;
}

.floating-note p {
    margin: 8px 0 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Partners */
.partners {
    position: relative;
    padding: 56px 0 72px;
    background: radial-gradient(circle at top left, rgba(0, 194, 255, 0.26), transparent 58%), rgba(12, 20, 46, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.partners::before,
.partners::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.22), transparent 70%);
    filter: blur(0);
    z-index: 0;
}

.partners::before {
    top: -140px;
    left: -120px;
}

.partners::after {
    bottom: -180px;
    right: -140px;
}

.partner-logos {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.partner-card {
    position: relative;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(7, 11, 29, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 32px rgba(6, 12, 30, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.partner-card::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 14px;
    background: radial-gradient(circle at top, rgba(52, 93, 255, 0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 93, 255, 0.35);
    box-shadow: 0 20px 40px rgba(8, 18, 46, 0.55);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card img {
    position: relative;
    z-index: 1;
    max-width: 120px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

/* Highlights */
.section.highlights {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(0, 194, 255, 0.12), transparent 55%), rgba(7, 11, 26, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section.highlights::before,
.section.highlights::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.18), transparent 70%);
    z-index: 0;
}

.section.highlights::before {
    top: -220px;
    left: -160px;
}

.section.highlights::after {
    bottom: -260px;
    right: -140px;
}

.section.highlights .container {
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    display: grid;
    gap: 24px;
    margin-top: 48px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.timeline::before {
    content: "";
    position: absolute;
    pointer-events: none;
    display: none;
}

@media (min-width: 768px) {
    .timeline::before {
        display: block;
        top: 52px;
        bottom: 52px;
        left: 58px;
        width: 2px;
        background: linear-gradient(180deg, rgba(52, 93, 255, 0.35), transparent 80%);
        opacity: 0.6;
    }
}

@media (min-width: 900px) {
    .timeline {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .timeline::before {
        top: 78px;
        bottom: auto;
        left: 90px;
        height: 2px;
        width: calc(100% - 180px);
        background: linear-gradient(90deg, rgba(52, 93, 255, 0.32), transparent 90%);
    }
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 32px 30px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(15, 22, 51, 0.82), rgba(8, 13, 32, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 24px 48px rgba(5, 12, 32, 0.5);
    backdrop-filter: blur(12px);
    min-height: 230px;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s ease;
}

.timeline-step::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    background: radial-gradient(circle at top left, rgba(52, 93, 255, 0.18), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.timeline-step:hover {
    border-color: rgba(52, 93, 255, 0.35);
    transform: translateY(-4px) scale(1.01);
}

.timeline-step:hover::after {
    opacity: 1;
}

.timeline-step.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.timeline-step .step-badge {
    position: relative;
    width: 200px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.25), rgba(52, 93, 255, 0.6));
    box-shadow: 0 14px 28px rgba(0, 194, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.timeline-step .step-badge::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
    transform: translate(-20%, -20%);
    opacity: 0.85;
}

.timeline-step .step-badge span {
    position: relative;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    font-size: 1.2rem;
    text-shadow: 0 3px 10px rgba(4, 12, 32, 0.45);
}

.timeline-step .step-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-step .step-body h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.timeline-step .step-body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .timeline::before {
        left: 14px;
    }

    .timeline-step {
        padding: 26px 24px;
    }

    .timeline-step .step-badge {
        width: 48px;
        height: 48px;
    }
}

/* Industries */
.section.industries {
    position: relative;
    background: radial-gradient(circle at bottom left, rgba(0, 194, 255, 0.12), transparent 55%), rgba(7, 11, 26, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.section.industries::before,
.section.industries::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.2), transparent 70%);
    z-index: 0;
}

.section.industries::before {
    top: -200px;
    right: -140px;
}

.section.industries::after {
    bottom: -240px;
    left: -160px;
}

.section.industries .container {
    position: relative;
    z-index: 1;
}

.sector-grid {
    display: grid;
    gap: 28px;
    margin-top: 48px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sector-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(15, 22, 51, 0.82), rgba(8, 12, 30, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 26px 48px rgba(6, 12, 34, 0.45);
    backdrop-filter: blur(12px);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: transform 0.6s ease, opacity 0.6s ease, border-color 0.25s ease;
}

.sector-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 24px;
    background: radial-gradient(circle at top, rgba(0, 194, 255, 0.16), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.sector-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(52, 93, 255, 0.35);
}

.sector-card:hover::before {
    opacity: 1;
}

.sector-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sector-card-glow {
    position: absolute;
    inset: auto -80px -160px -80px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.28), transparent 65%);
    filter: blur(0);
    opacity: 0.6;
    pointer-events: none;
}

.sector-card-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 1;
}

.sector-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(4, 10, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

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

.sector-tag {
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.25), rgba(52, 93, 255, 0.45));
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 24px rgba(0, 194, 255, 0.25);
}

.sector-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    z-index: 1;
}

.sector-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    z-index: 1;
}

.sector-list {
    position: relative;
    margin: 6px 0 0;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    z-index: 1;
}

.sector-list li {
    margin-bottom: 8px;
}

.sector-list li::marker {
    color: var(--brand-accent);
}

@media (max-width: 640px) {
    .sector-grid {
        margin-top: 36px;
        gap: 20px;
    }

    .sector-card {
        padding: 26px;
        border-radius: 24px;
    }

    .sector-card-top {
        flex-wrap: wrap;
    }
}

/* Projects */
.section.projects {
    position: relative;
    background: radial-gradient(circle at top right, rgba(0, 194, 255, 0.2), transparent 60%), rgba(9, 14, 34, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.section.projects::before,
.section.projects::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.22), transparent 70%);
    z-index: 0;
}

.section.projects::before {
    top: -220px;
    left: -160px;
}

.section.projects::after {
    bottom: -240px;
    right: -140px;
}

.section.projects .container {
    position: relative;
    z-index: 1;
}

.project-cards {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 48px;
}

.project-card {
    position: relative;
    padding: 34px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(13, 19, 40, 0.92), rgba(8, 12, 32, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 28px 52px rgba(6, 12, 30, 0.5);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition: transform 0.6s ease, opacity 0.6s ease, border-color 0.25s ease;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    background: radial-gradient(circle at top, rgba(0, 194, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.project-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(52, 93, 255, 0.35);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.project-card-glow {
    position: absolute;
    inset: auto -120px -180px -120px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.32), transparent 70%);
    opacity: 0.45;
    pointer-events: none;
}

.project-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 1;
}

.project-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 194, 255, 0.16);
    color: var(--brand-accent);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.project-chip-year {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.project-card h3 {
    position: relative;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    z-index: 1;
}

.project-summary {
    position: relative;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    z-index: 1;
}

.project-metric {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(0, 194, 255, 0.12);
    border: 1px solid rgba(0, 194, 255, 0.35);
    box-shadow: 0 16px 32px rgba(0, 194, 255, 0.25);
    z-index: 1;
}

.project-metric span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
}

.project-metric small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
}

.project-highlights {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    z-index: 1;
}

.project-highlights li {
    margin-bottom: 8px;
}

.project-highlights li::marker {
    color: var(--brand-accent);
}

.project-footer {
    position: relative;
    margin-top: auto;
    padding-top: 6px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    z-index: 1;
}

@media (max-width: 720px) {
    .project-card {
        padding: 28px;
    }

    .project-header {
        flex-wrap: wrap;
    }
}

/* Testimonial */
.section.testimonial {
    position: relative;
    background: radial-gradient(circle at center, rgba(0, 194, 255, 0.14), transparent 55%), rgba(7, 11, 26, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.section.testimonial::before,
.section.testimonial::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.24), transparent 70%);
    z-index: 0;
}

.section.testimonial::before {
    top: -280px;
    left: -120px;
}

.section.testimonial::after {
    bottom: -260px;
    right: -160px;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
}

.testimonial-lead {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.testimonial-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(0, 194, 255, 0.12);
    border: 1px solid rgba(0, 194, 255, 0.28);
    box-shadow: 0 18px 36px rgba(0, 194, 255, 0.25);
}

.testimonial-stat span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
}

.testimonial-stat small {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(160deg, rgba(12, 18, 40, 0.95), rgba(8, 12, 30, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 32px 58px rgba(6, 12, 32, 0.55);
    overflow: hidden;
    display: grid;
    gap: 24px;
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition: transform 0.65s ease, opacity 0.65s ease, border-color 0.25s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 26px;
    background: radial-gradient(circle at top left, rgba(0, 194, 255, 0.18), transparent 75%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.testimonial-card:hover {
    border-color: rgba(52, 93, 255, 0.35);
    transform: translateY(-4px) scale(1.01);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.testimonial-card-glow {
    position: absolute;
    inset: auto -120px -200px -120px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.38), transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.testimonial-quote-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(0, 194, 255, 0.18);
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 194, 255, 0.45);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.25);
    z-index: 1;
}

.testimonial-quote-icon svg {
    width: 36px;
    height: 36px;
}

.testimonial-card blockquote {
    position: relative;
    margin: 0;
    color: #f6f7fb;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    z-index: 1;
}

.testimonial-author {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    z-index: 1;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.3), rgba(52, 93, 255, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.12em;
    box-shadow: 0 14px 28px rgba(0, 194, 255, 0.3);
}

.author-name {
    display: block;
    font-weight: 600;
}

.author-role {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 720px) {
    .testimonial-card {
        padding: 32px;
    }

    .testimonial-quote-icon {
        width: 56px;
        height: 56px;
    }
}

/* Tech Stack */
.section.tech-stack {
    position: relative;
    background: radial-gradient(circle at bottom right, rgba(0, 194, 255, 0.16), transparent 55%), rgba(7, 11, 26, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.section.tech-stack::before,
.section.tech-stack::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.24), transparent 70%);
    z-index: 0;
}

.section.tech-stack::before {
    top: -240px;
    right: -140px;
}

.section.tech-stack::after {
    bottom: -260px;
    left: -160px;
}

.section.tech-stack .container {
    position: relative;
    z-index: 1;
}

.tech-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 48px;
}

.tech-card {
    position: relative;
    padding: 32px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(13, 18, 38, 0.92), rgba(8, 12, 30, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 28px 56px rgba(6, 12, 30, 0.45);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(35px) scale(0.97);
    transition: transform 0.65s ease, opacity 0.65s ease, border-color 0.25s ease;
}

.tech-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    background: radial-gradient(circle at top, rgba(0, 194, 255, 0.18), transparent 75%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.tech-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(52, 93, 255, 0.35);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tech-card-glow {
    position: absolute;
    inset: auto -120px -200px -120px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.35), transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.tech-card-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 1;
}

.tech-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(4, 10, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.tech-icon svg {
    width: 34px;
    height: 34px;
}

.tech-chip {
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.22), rgba(52, 93, 255, 0.4));
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 194, 255, 0.24);
}

.tech-card h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 1;
}

.tech-list {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    z-index: 1;
}

.tech-list li {
    margin-bottom: 8px;
}

.tech-list li::marker {
    color: var(--brand-accent);
}

@media (max-width: 720px) {
    .tech-card {
        padding: 28px;
        border-radius: 24px;
    }

    .tech-card-top {
        flex-wrap: wrap;
    }
}

/* CTA */
.cta {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at top left, rgba(0, 194, 255, 0.1), transparent 55%), rgba(7, 11, 26, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta::before,
.cta::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.2), transparent 70%);
    z-index: 0;
}

.cta::before {
    top: -220px;
    right: -140px;
}

.cta::after {
    bottom: -240px;
    left: -160px;
}

.cta-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 36px;
    padding: 48px 56px;
    border-radius: 34px;
    background: linear-gradient(140deg, rgba(12, 18, 40, 0.95), rgba(5, 10, 28, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 36px 70px rgba(6, 12, 30, 0.5);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: transform 0.65s ease, opacity 0.65s ease, border-color 0.25s ease;
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(0, 194, 255, 0.22), transparent 75%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.cta-card:hover {
    border-color: rgba(52, 93, 255, 0.35);
    transform: translateY(-4px) scale(1.01);
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cta-card-glow {
    position: absolute;
    inset: auto -160px -220px -160px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.32), transparent 70%);
    pointer-events: none;
    opacity: 0.45;
}

.cta-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cta-head {
    position: relative;
    z-index: 1;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.input-group {
    display: grid;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 11, 29, 0.8);
    color: var(--text);
    font-family: inherit;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: 2px solid rgba(0, 194, 255, 0.35);
    outline-offset: 2px;
}

.cta-actions {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
}

.cta-actions .btn {
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 1rem;
}

.cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #345dff, #00c2ff);
    box-shadow: 0 24px 46px rgba(0, 194, 255, 0.35);
    overflow: hidden;
}

.cta-primary svg {
    width: 22px;
    height: 22px;
}

.cta-secondary {
    padding: 16px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.cta-side {
    position: relative;
    z-index: 1;
    align-self: stretch;
    padding: 28px 32px;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(5, 10, 26, 0.78), rgba(0, 194, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-side-title {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.cta-side-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-side-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.cta-side-list strong {
    display: block;
    color: #f6f7fb;
    font-weight: 600;
    margin-bottom: 4px;
}

.cta-side-list small {
    display: block;
    color: rgba(246, 247, 251, 0.68);
}

.cta-bullet {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(52, 93, 255, 0.32), rgba(0, 194, 255, 0.3));
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 16px 32px rgba(0, 194, 255, 0.24);
}

@media (max-width: 720px) {
    .cta-card {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        border-radius: 26px;
    }

    .cta-side {
        padding: 24px;
    }
}

/* Footer */
.site-footer {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(160deg, rgba(5, 8, 20, 0.96), rgba(7, 11, 26, 0.94));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(52, 93, 255, 0.16), transparent 70%);
    z-index: 0;
}

.site-footer::before {
    top: -220px;
    left: -140px;
}

.site-footer::after {
    bottom: -240px;
    right: -160px;
}

.footer-inner,
.footer-meta {
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
    align-items: start;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 28px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 360px;
}

.footer-brand p {
    margin: 0;
    color: var(--text-muted);
}

.footer-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 194, 255, 0.16);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(0, 194, 255, 0.22);
}

.footer-columns {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-column h4 {
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    display: grid;
    gap: 10px;
}

.footer-column a {
    color: inherit;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--brand-accent);
}

.social {
    display: grid;
    gap: 10px;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-note {
    color: var(--text-muted);
}

@media (max-width: 800px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}

.all-services-link {
    text-align: center;
    margin-top: 40px;
}

.page-hero {
    padding: 140px 0 68px;
    background:
        radial-gradient(circle at left, rgba(52, 93, 255, 0.32), transparent 60%),
        linear-gradient(160deg, rgba(10, 16, 41, 0.96), rgba(7, 11, 29, 0.92));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 16px;
}

.page-hero-desc {
    max-width: 720px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.service-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 96px;
}

.service-hero::before,
.service-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(0);
    z-index: 0;
}

.service-hero::before {
    top: -180px;
    right: -220px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at center, rgba(52, 93, 255, 0.35), transparent 65%);
    opacity: 0.7;
}

.service-hero::after {
    bottom: -260px;
    left: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at center, rgba(0, 194, 255, 0.28), transparent 60%);
}

.service-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 52px;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: start;
}

.service-hero-copy {
    display: grid;
    gap: 24px;
}

.service-hero-copy h1 {
    margin: 0;
}

.service-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-hero-tags span {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.service-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.service-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.meta-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.meta-logos span {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 11, 29, 0.6);
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.service-hero-panel {
    display: grid;
    gap: 24px;
    align-content: start;
}

.hero-panel-card {
    position: relative;
    background: linear-gradient(160deg, rgba(12, 18, 44, 0.92), rgba(7, 12, 32, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 24px 54px rgba(6, 14, 36, 0.46);
    overflow: hidden;
}

.hero-panel-card::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle at center, rgba(52, 93, 255, 0.45), transparent 65%);
    opacity: 0.8;
}

.hero-panel-card > * {
    position: relative;
    z-index: 1;
}

.card-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.card-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-accent);
    box-shadow: 0 0 0 6px rgba(52, 93, 255, 0.18);
}

.hero-panel-card h3 {
    margin-top: 12px;
    margin-bottom: 14px;
}

.hero-panel-card p {
    margin: 0 0 20px;
    color: var(--text-muted);
}

.hero-panel-card ul {
    margin: 0;
    padding-left: 22px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.card-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.card-footer span {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-panel-metrics {
    display: grid;
    gap: 18px;
}

.metric-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(145deg, rgba(8, 14, 38, 0.96), rgba(7, 12, 32, 0.88));
    box-shadow: 0 22px 48px rgba(5, 12, 28, 0.45);
    overflow: hidden;
}

.metric-card::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(0, 194, 255, 0.3), transparent 60%);
    opacity: 0.8;
}

.metric-card > * {
    position: relative;
    z-index: 1;
}

.metric-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(52, 93, 255, 0.65), rgba(0, 194, 255, 0.55));
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 16px 32px rgba(8, 18, 42, 0.38);
}

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

.metric-content {
    display: grid;
    gap: 4px;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 600;
}

.metric-title {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.metric-card p {
    margin: 10px 0 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.hero-panel-quote {
    position: relative;
    padding: 34px 32px 28px 48px;
    border-radius: 26px;
    background: linear-gradient(140deg, rgba(52, 93, 255, 0.18), rgba(0, 194, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 26px 54px rgba(6, 12, 30, 0.42);
    overflow: hidden;
}

.hero-panel-quote::after {
    content: "";
    position: absolute;
    inset: auto 0 0 -120px;
    height: 160px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 70%);
    opacity: 0.5;
}

.quote-mark {
    position: absolute;
    top: -12px;
    left: 18px;
    font-size: 4.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.16);
    line-height: 1;
}

.hero-panel-quote p {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 500;
}

.quote-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.quote-meta span:first-child {
    color: var(--text);
}

.service-overview {
    position: relative;
    overflow: hidden;
}

.service-overview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 14% 10%, rgba(52, 93, 255, 0.15), transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

.service-overview .container {
    position: relative;
    z-index: 1;
}

.overview-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.overview-card {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 16, 42, 0.86);
    box-shadow: 0 20px 40px rgba(6, 12, 30, 0.35);
}

.overview-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.overview-card p {
    margin: 0 0 18px;
    color: var(--text-muted);
}

.overview-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.process-showcase {
    display: grid;
    gap: 28px;
}

.process-legend {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(8, 13, 32, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-legend span {
    position: relative;
    padding-left: 18px;
    color: var(--text-muted);
}

.process-legend span::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
}

.process-legend span[data-phase="discovery"] {
    color: #00d2ff;
}

.process-legend span[data-phase="build"] {
    color: #6c76ff;
}

.process-legend span[data-phase="growth"] {
    color: #ff7dba;
}

.process-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(8, 14, 38, 0.92), rgba(9, 14, 32, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 52px rgba(6, 12, 30, 0.45);
    overflow: hidden;
}

.process-card header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.process-index {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.process-card p {
    margin: 0;
    color: var(--text-muted);
}

.process-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.process-card footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.process-card footer span {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.process-glow {
    position: absolute;
    inset: -60px -80px auto auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.8;
    pointer-events: none;
}

.process-glow.discovery {
    background: radial-gradient(circle, rgba(0, 210, 255, 0.28), transparent 65%);
}

.process-glow.build {
    background: radial-gradient(circle, rgba(108, 118, 255, 0.26), transparent 70%);
}

.process-glow.growth {
    background: radial-gradient(circle, rgba(255, 125, 186, 0.24), transparent 70%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.process-timeline span {
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 14, 34, 0.72);
}

.service-catalog {
    position: relative;
    overflow: hidden;
}

.service-catalog::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.service-catalog .container {
    position: relative;
    z-index: 1;
}

.service-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px;
    border-radius: 24px;
    background: rgba(8, 14, 38, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 48px rgba(5, 12, 28, 0.45);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(52, 93, 255, 0.4);
    box-shadow: 0 32px 64px rgba(8, 18, 42, 0.55);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(52, 93, 255, 0.55), rgba(0, 194, 255, 0.55));
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.service-sub {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.service-card > p {
    margin: 0;
    color: var(--text-muted);
}

.service-features {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.service-tag {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.service-process {
    position: relative;
    overflow: hidden;
}

.service-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 85%, rgba(52, 93, 255, 0.12), transparent 55%);
    pointer-events: none;
}

.service-process .container {
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.process-step {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 16, 42, 0.88);
    box-shadow: 0 18px 44px rgba(6, 12, 30, 0.38);
    position: relative;
}

.process-step-index {
    position: absolute;
    top: -16px;
    left: 28px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(52, 93, 255, 0.8), rgba(0, 194, 255, 0.8));
    display: grid;
    place-items: center;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 12px 24px rgba(8, 18, 42, 0.35);
}

.process-step h3 {
    margin: 12px 0 12px;
}

.process-step p {
    margin: 0 0 16px;
    color: var(--text-muted);
}

.process-bullets {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.service-cta {
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 18%, rgba(0, 194, 255, 0.26), transparent 60%);
    filter: blur(0);
}

.service-cta .container {
    position: relative;
    z-index: 1;
}

.service-cta-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
    padding: 40px;
    border-radius: 32px;
    background: rgba(10, 16, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 58px rgba(6, 12, 30, 0.45);
}

.service-cta-copy h2 {
    margin-top: 12px;
    margin-bottom: 18px;
}

.service-cta-copy .section-desc {
    max-width: 520px;
}

.service-cta-panel {
    display: grid;
    gap: 24px;
}

.cta-bullets {
    display: grid;
    gap: 18px;
}

.cta-bullets div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.cta-badge {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(52, 93, 255, 0.8), rgba(0, 194, 255, 0.8));
    font-weight: 600;
}

.cta-bullets p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.cta-bullets strong {
    color: var(--text);
}

.service-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


.breadcrumb {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: var(--brand-accent);
}

.breadcrumb span[aria-hidden="true"] {
    opacity: 0.6;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px;
    border-radius: 22px;
    background: rgba(10, 16, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(6, 14, 36, 0.35);
}

.service-item h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.service-item h2 a {
    color: inherit;
}

.service-item p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.service-item ul {
    flex: 1;
    margin: 0;
    padding-left: 19px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-item .btn {
    align-self: flex-start;
}

.service-detail-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
}

.rich-text h2 {
    font-size: 1.9rem;
    margin-top: 0;
    margin-bottom: 18px;
}

.rich-text h3 {
    font-size: 1.2rem;
    margin: 28px 0 12px;
}

.rich-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.rich-text ul {
    margin: 0 0 20px;
    padding-left: 20px;
    color: var(--text-muted);
}

.service-sidebar {
    display: grid;
    gap: 20px;
}

.service-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-meta li {
    margin-bottom: 10px;
}

.service-meta strong {
    color: var(--text);
}

.service-stats p {
    margin: 0 0 10px;
    color: var(--text-muted);
}

.service-stats strong {
    color: var(--text);
    font-size: 1.15rem;
}

.service-faq dl {
    margin: 0;
}

.service-faq dt {
    font-weight: 600;
    margin-bottom: 6px;
}

.service-faq dd {
    margin: 0 0 20px;
    color: var(--text-muted);
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.related-links a {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 11, 29, 0.8);
    color: var(--brand-accent);
    font-size: 0.9rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.related-links a:hover {
    transform: translateY(-2px);
    border-color: var(--brand-accent);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.cta-actions .btn {
    min-width: 200px;
}

.contact-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: start;
}

.contact-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(10, 16, 42, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 58px rgba(7, 13, 33, 0.45);
}

.contact-sidebar {
    display: grid;
    gap: 20px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.contact-info li {
    margin-bottom: 10px;
}

.form-note {
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-form select {
    appearance: none;
}

.nav a.is-active {
    color: var(--text);
    position: relative;
}

.nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: linear-gradient(135deg, var(--brand), var(--brand-accent));
    border-radius: 999px;
}

/* Responsive */
@media (max-width: 900px) {
    .nav {
        position: fixed;
        inset: 0 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        background: rgba(7, 11, 29, 0.98);
        height: 100vh;
        width: 100vw;
        padding: 32px;
    }

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .site-header .container {
        padding: 16px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .cta-card {
        padding: 32px 28px;
    }

    .service-hero {
        padding-top: 120px;
    }

    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-hero-panel {
        order: 2;
    }

    .service-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .meta-logos {
        width: 100%;
        justify-content: flex-start;
    }

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

    .hero-panel-quote {
        padding: 30px 26px 24px 44px;
    }

    .service-cta-grid {
        grid-template-columns: 1fr;
        padding: 32px;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-timeline span {
        text-align: left;
    }

    .service-detail-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar,
    .contact-sidebar {
        order: 2;
    }

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

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .card {
        padding: 22px;
    }

    .project-card {
        padding: 24px;
    }

    .cta-card {
        border-radius: 22px;
    }

    .page-hero {
        padding: 110px 0 48px;
    }

    .contact-card {
        padding: 28px;
    }

    .metric-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .metric-icon {
        width: 48px;
        height: 48px;
    }

    .hero-visual {
        justify-items: stretch;
        gap: 16px;
    }

    .hero-visual .card {
        width: 100%;
    }

    .floating-note {
        position: relative;
        left: auto;
        bottom: auto;
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 18px 20px;
        transform: none;
    }

    body.is-loaded .floating-note {
        transform: none;
    }

    .hero-panel-quote {
        padding: 28px 22px 24px 38px;
    }

    .quote-mark {
        left: 12px;
    }

    .quote-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

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

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

    .service-card {
        padding: 26px;
    }

    .service-cta-grid {
        padding: 26px;
    }

    .cta-bullets div {
        grid-template-columns: 34px 1fr;
    }

    .cta-badge {
        width: 34px;
        height: 34px;
        border-radius: 11px;
        font-size: 0.9rem;
    }

    .service-hero-meta {
        gap: 10px;
    }

    .process-card {
        padding: 28px;
    }

    .process-index {
        width: 40px;
        height: 40px;
    }

    .process-card footer {
        gap: 8px;
    }

    .process-timeline {
        gap: 8px;
    }
}
