:root {
    --navy-950: #07192a;
    --navy-900: #0f2a44;
    --blue-600: #1e88e5;
    --blue-700: #1474c9;
    --green-600: #16a34a;
    --graphite-900: #2e2e2e;
    --gray-100: #f2f4f7;
    --gray-300: #d7dee7;
    --gray-600: #667085;
    --white: #ffffff;
    --font-primary: "Montserrat", Arial, sans-serif;
    --container: 1180px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --shadow-soft: 0 12px 32px rgba(7, 25, 42, 0.09);
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--graphite-900);
    background: var(--white);
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--blue-600);
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding-block: 96px;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    color: var(--white);
    background: var(--blue-600);
    transform: translateY(-160%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(15, 42, 68, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 24px rgba(7, 25, 42, 0.04);
    backdrop-filter: blur(12px);
}

.navbar {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 66px;
    height: 44px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    color: var(--navy-900);
    font-size: 1.12rem;
    letter-spacing: 0.02em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--blue-600);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-panel,
.nav-links {
    display: flex;
    align-items: center;
}

.nav-panel {
    gap: 30px;
}

.nav-links {
    margin: 0;
    padding: 0;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    position: relative;
    padding-block: 10px;
    color: var(--navy-900);
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--blue-600);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 700;
    transition: background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button-primary {
    color: var(--white);
    background: var(--blue-600);
    box-shadow: 0 8px 18px rgba(30, 136, 229, 0.22);
}

.button-primary:hover {
    background: var(--blue-700);
    box-shadow: 0 10px 24px rgba(30, 136, 229, 0.3);
    transform: translateY(-1px);
}

.button-outline-light,
.button-light {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.button-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.button-light {
    color: var(--navy-900);
    background: var(--white);
}

.button-light:hover {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin-block: 5px;
    border-radius: 2px;
    background: var(--navy-900);
    transition: transform var(--transition), opacity var(--transition);
}

.eyebrow {
    margin: 0;
    color: var(--blue-600);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading-center {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.reasons-copy h2,
.about-copy h2,
.cta-box h2 {
    margin: 10px 0 18px;
    color: var(--navy-900);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section-heading > p:last-child,
.reasons-copy > p,
.about-copy > p {
    color: var(--gray-600);
}

.hero {
    position: relative;
    display: grid;
    min-height: calc(100vh - var(--header-height));
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 75% 40%, rgba(30, 136, 229, 0.18), transparent 30%), linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 72px;
    padding-block: 84px;
}

.hero h1 {
    max-width: 760px;
    margin: 14px 0 24px;
    font-size: clamp(2.8rem, 5.4vw, 5.3rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero h1 span {
    color: #55adfb;
}

.hero-description {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    margin: 36px 0 0;
    padding: 0;
    gap: 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 600;
    list-style: none;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-highlights span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-600);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

.hero-visual {
    position: relative;
    min-height: 510px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.22), transparent 58%);
}

.visual-core {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 230px;
    min-height: 150px;
    place-content: center;
    padding: 24px;
    border: 1px solid rgba(105, 183, 255, 0.45);
    border-radius: var(--radius-md);
    background: rgba(7, 25, 42, 0.88);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(12px);
}

.core-label {
    color: #69b7ff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.visual-core strong { margin-block: 8px; font-size: 1rem; }
.visual-core small { color: rgba(255, 255, 255, 0.55); font-size: 0.65rem; }

.visual-orbit {
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(30, 136, 229, 0.35);
    border-radius: 50%;
}

.orbit-two { inset: 28%; border-color: rgba(255, 255, 255, 0.15); }

.visual-node {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 1px solid rgba(105, 183, 255, 0.42);
    border-radius: 50%;
    color: #a7d6ff;
    background: rgba(7, 25, 42, 0.92);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    text-align: center;
    transition: border-color var(--transition), color var(--transition), background-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.visual-node:hover,
.visual-node:focus-visible {
    border-color: #69b7ff;
    color: var(--white);
    background: var(--blue-700);
    box-shadow: 0 12px 30px rgba(30, 136, 229, 0.34);
    transform: translateY(-3px);
}

.node-one { top: 7%; left: 44%; }
.node-two { top: 39%; right: 1%; }
.node-three { bottom: 5%; left: 46%; }
.node-four { top: 42%; left: 0; }

.hero-lines {
    position: absolute;
    right: -10%;
    bottom: -35%;
    width: 80%;
    height: 60%;
    border: 1px solid rgba(30, 136, 229, 0.23);
    border-radius: 50%;
    box-shadow: 0 -18px 0 rgba(30, 136, 229, 0.05), 0 -36px 0 rgba(30, 136, 229, 0.04), 0 -54px 0 rgba(30, 136, 229, 0.03);
    transform: rotate(-5deg);
}

.pain-section { background: #faf9f7; }
.pain-heading { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: 80px; margin-bottom: 48px; }
.pain-heading h2 { max-width: 720px; margin: 12px 0 0; color: var(--navy-900); font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.06; letter-spacing: -0.05em; }
.pain-heading h2 span { color: var(--blue-600); font-style: italic; }
.pain-heading > p { margin: 0 0 8px; color: var(--gray-600); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--gray-300); border-radius: var(--radius-md); }
.pain-grid article { display: grid; min-height: 220px; align-content: space-between; padding: 30px; border-right: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); background: rgba(255, 255, 255, 0.55); }
.pain-grid article:nth-child(3n) { border-right: 0; }
.pain-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.pain-grid small { color: var(--blue-600); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; }
.pain-grid p { margin: 20px 0; color: var(--navy-900); font-size: 1rem; font-weight: 500; line-height: 1.45; }
.pain-grid span { color: var(--blue-700); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

.pdv-focus-section { color: var(--white); background: var(--navy-900); }
.pdv-focus-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: 80px; }
.pdv-focus-copy h2 { max-width: 740px; margin: 12px 0 20px; font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.08; letter-spacing: -0.045em; }
.pdv-focus-copy > p:not(.eyebrow) { max-width: 700px; color: rgba(255, 255, 255, 0.68); }
.pdv-feature-list { display: grid; grid-template-columns: repeat(2, 1fr); margin: 30px 0 0; padding: 0; gap: 12px; list-style: none; }
.pdv-feature-list li { position: relative; padding-left: 20px; color: rgba(255, 255, 255, 0.84); font-size: 0.78rem; font-weight: 600; }
.pdv-feature-list li::before { position: absolute; top: 0.58em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--green-600); content: ""; }
.pdv-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.pdv-actions .text-link { color: #8bc9ff; }
.pdv-terminal { overflow: hidden; border: 1px solid rgba(105, 183, 255, 0.3); border-radius: 20px; background: var(--white); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28); transform: rotate(1.5deg); }
.pdv-terminal-top, .pdv-terminal-bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; }
.pdv-terminal-top { color: var(--white); background: var(--navy-950); }
.pdv-terminal-top span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; }
.pdv-terminal-top small { color: #70d698; font-size: 0.62rem; }
.pdv-terminal-body { display: grid; grid-template-columns: 1fr 0.8fr; align-items: center; gap: 24px; min-height: 270px; padding: 36px; color: var(--navy-900); background: var(--gray-100); }
.pdv-terminal-body > div:first-child { display: grid; gap: 7px; }
.pdv-terminal-body small { color: var(--gray-600); font-size: 0.68rem; }
.pdv-terminal-body strong { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; }
.pdv-terminal-body span { color: var(--blue-600); font-size: 0.7rem; font-weight: 600; }
.pdv-terminal-lines { display: grid; gap: 12px; }
.pdv-terminal-lines i { display: block; height: 15px; border-radius: 4px; background: #d9e1eb; }
.pdv-terminal-lines i:nth-child(2) { width: 78%; }.pdv-terminal-lines i:nth-child(3) { width: 92%; }.pdv-terminal-lines i:nth-child(4) { width: 64%; }
.pdv-terminal-bottom { color: var(--gray-600); font-size: 0.65rem; }
.pdv-terminal-bottom span:last-child { padding: 8px 12px; border-radius: 6px; color: var(--white); background: var(--blue-600); font-weight: 700; }

.custom-system-section { padding-block: 0 96px; background: var(--gray-100); }
.custom-system-box { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 72px; padding: 62px; border-radius: 22px; color: var(--white); background: radial-gradient(circle at 90% 10%, rgba(30, 136, 229, 0.32), transparent 32%), var(--navy-950); }
.custom-system-copy h2 { margin: 12px 0 18px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; letter-spacing: -0.045em; }
.custom-system-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.66); }
.custom-system-copy .button { margin-top: 20px; }
.business-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.business-types span { display: grid; min-height: 64px; place-items: center; padding: 12px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-sm); color: rgba(255, 255, 255, 0.82); background: rgba(255, 255, 255, 0.04); font-size: 0.72rem; font-weight: 600; text-align: center; }

.pdv-service-callout { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 42px; margin-bottom: 72px; padding: 42px; border: 1px solid rgba(30, 136, 229, 0.18); border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(30, 136, 229, 0.08), var(--white)); }
.pdv-service-callout h2 { margin: 10px 0 12px; color: var(--navy-900); font-size: clamp(1.7rem, 3vw, 2.6rem); }
.pdv-service-callout p:last-child { max-width: 760px; margin-bottom: 0; color: var(--gray-600); }

.services-section,
.projects-section {
    background: var(--gray-100);
}

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

.service-card {
    padding: 30px;
    border: 1px solid rgba(15, 42, 68, 0.08);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(7, 25, 42, 0.04);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    border-color: rgba(30, 136, 229, 0.28);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.service-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 12px;
    color: var(--blue-600);
    background: rgba(30, 136, 229, 0.08);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.service-card h3 { margin: 22px 0 10px; color: var(--navy-900); font-size: 1.08rem; }
.service-card p { min-height: 76px; margin: 0 0 20px; color: var(--gray-600); font-size: 0.87rem; }
.service-card a, .text-link { color: var(--blue-600); font-size: 0.82rem; font-weight: 700; }
.service-card a span, .text-link span { margin-left: 5px; transition: margin-left var(--transition); }
.service-card a:hover span, .text-link:hover span { margin-left: 9px; }

.reasons-section { background: var(--navy-900); }
.reasons-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: start; gap: 84px; }
.reasons-copy { position: sticky; top: calc(var(--header-height) + 40px); }
.reasons-copy h2 { color: var(--white); }
.reasons-copy > p { color: rgba(255, 255, 255, 0.66); }
.reasons-copy .text-link { display: inline-block; margin-top: 12px; color: #69b7ff; }
.reasons-list { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 0; gap: 16px; list-style: none; }
.reasons-list li { display: flex; min-height: 140px; gap: 18px; padding: 24px; border: 1px solid rgba(255, 255, 255, 0.11); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.045); }
.reasons-list > li > span { color: #69b7ff; font-size: 0.72rem; font-weight: 700; }
.reasons-list div { display: grid; align-content: start; gap: 8px; }
.reasons-list strong { color: var(--white); font-size: 0.9rem; }
.reasons-list small { color: rgba(255, 255, 255, 0.58); font-size: 0.76rem; line-height: 1.55; }

.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 84px; }
.about-visual { position: relative; display: grid; min-height: 520px; place-items: center; overflow: hidden; border-radius: 24px; background: radial-gradient(circle at 40% 35%, rgba(30, 136, 229, 0.4), transparent 35%), linear-gradient(145deg, var(--navy-900), var(--navy-950)); }
.about-visual::after { position: absolute; width: 380px; height: 380px; border: 1px solid rgba(105, 183, 255, 0.25); border-radius: 50%; content: ""; box-shadow: 0 0 0 36px rgba(30, 136, 229, 0.04), 0 0 0 72px rgba(30, 136, 229, 0.025); }
.about-index { z-index: 1; color: rgba(255, 255, 255, 0.92); font-size: clamp(5rem, 10vw, 8rem); font-weight: 700; letter-spacing: -0.1em; }
.about-stat { position: absolute; z-index: 2; right: 24px; bottom: 24px; display: grid; width: 190px; padding: 22px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-md); color: var(--white); background: rgba(7, 25, 42, 0.82); backdrop-filter: blur(10px); }
.about-stat strong { font-size: 1.8rem; }
.about-stat small { color: rgba(255, 255, 255, 0.58); line-height: 1.4; }
.purpose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
.purpose-grid article { padding: 22px; border-left: 3px solid var(--blue-600); background: var(--gray-100); }
.purpose-grid span { color: var(--navy-900); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }
.purpose-grid p { margin: 8px 0 0; color: var(--gray-600); font-size: 0.78rem; }
.values-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.values-row span { padding: 7px 12px; border: 1px solid var(--gray-300); border-radius: 999px; color: var(--navy-900); font-size: 0.7rem; font-weight: 600; }

.heading-row { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 60px; }
.heading-row h2 { max-width: 700px; }
.heading-row > p { margin-bottom: 20px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card { overflow: hidden; border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 22px rgba(7, 25, 42, 0.06); transition: box-shadow var(--transition), transform var(--transition); }
.project-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-5px); }
.project-visual { position: relative; display: grid; min-height: 230px; place-items: center; overflow: hidden; background: var(--navy-900); }
.project-visual::before, .project-visual::after { position: absolute; border: 1px solid rgba(105, 183, 255, 0.3); border-radius: 50%; content: ""; }
.project-visual::before { width: 230px; height: 230px; }
.project-visual::after { width: 150px; height: 150px; }
.project-visual span { z-index: 1; color: rgba(255, 255, 255, 0.9); font-size: 1rem; font-weight: 700; letter-spacing: 0.2em; }
.project-network, .project-mobile, .project-process { background: linear-gradient(145deg, #0b2034, #155b96); }
.project-server, .project-support { background: linear-gradient(145deg, #07192a, #0f2a44 60%, #176f42); }
.project-copy { padding: 22px 24px 25px; }
.project-copy small { color: var(--blue-600); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.project-copy h3 { margin: 7px 0 10px; color: var(--navy-900); font-size: 1rem; }
.project-copy p { margin: 0 0 18px; color: var(--gray-600); font-size: 0.76rem; }
.project-link { color: var(--blue-600); font-size: 0.74rem; font-weight: 700; }
.project-card:focus-visible { box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.24), var(--shadow-soft); }

.cta-section { padding-block: 0 96px; background: var(--gray-100); }
.cta-box { display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: center; gap: 60px; padding: 62px; overflow: hidden; border-radius: 22px; color: var(--white); background: radial-gradient(circle at 90% 0, rgba(30, 136, 229, 0.35), transparent 32%), var(--navy-900); }
.cta-box h2 { max-width: 720px; color: var(--white); }
.cta-box p:last-child { max-width: 700px; margin-bottom: 0; color: rgba(255, 255, 255, 0.66); }
.cta-actions { justify-content: flex-end; margin-top: 0; }

.page-hero { position: relative; overflow: hidden; padding-block: 92px; color: var(--white); background: radial-gradient(circle at 82% 20%, rgba(30, 136, 229, 0.3), transparent 28%), linear-gradient(135deg, var(--navy-950), var(--navy-900)); }
.page-hero::after { position: absolute; right: -10%; bottom: -70%; width: 70%; height: 100%; border: 1px solid rgba(105, 183, 255, 0.18); border-radius: 50%; content: ""; box-shadow: 0 -24px 0 rgba(30, 136, 229, 0.04), 0 -48px 0 rgba(30, 136, 229, 0.03); }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 80px; }
.page-hero h1 { max-width: 820px; margin: 12px 0 20px; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1.04; letter-spacing: -0.05em; }
.page-hero p:last-child { max-width: 700px; margin-bottom: 0; color: rgba(255, 255, 255, 0.68); }
.page-hero-mark { display: grid; min-height: 240px; place-content: center; border: 1px solid rgba(105, 183, 255, 0.25); border-radius: 50%; color: var(--white); font-size: clamp(3.8rem, 8vw, 7rem); font-weight: 700; text-align: center; }
.page-hero-mark span { display: block; margin-top: -12px; color: #69b7ff; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; }
.page-hero-compact .container { position: relative; z-index: 1; }

.service-detail-list { display: grid; }
.service-detail-list article { display: grid; grid-template-columns: 0.35fr 1.65fr; gap: 60px; padding-block: 52px; border-bottom: 1px solid var(--gray-300); }
.service-detail-list article:first-child { padding-top: 0; }
.service-detail-list article:last-child { padding-bottom: 0; border-bottom: 0; }
.service-detail-list > article > span { color: var(--blue-600); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; }
.service-detail-list h2, .story-grid h2, .contact-grid h2 { margin: 0 0 14px; color: var(--navy-900); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.2; }
.service-detail-list p { max-width: 760px; color: var(--gray-600); }
.service-detail-list ul { display: flex; flex-wrap: wrap; margin: 22px 0 0; padding: 0; gap: 8px; list-style: none; }
.service-detail-list li { padding: 7px 12px; border: 1px solid var(--gray-300); border-radius: 999px; color: var(--navy-900); font-size: 0.72rem; font-weight: 600; }
.internal-cta { padding-block: 60px; color: var(--white); background: var(--navy-900); }
.internal-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.internal-cta h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.2rem); }

.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; }
.story-grid p { margin-top: 0; color: var(--gray-600); font-size: 1rem; }
.pillars-section { color: var(--white); background: var(--navy-900); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillars-grid article { padding: 34px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.04); }
.pillars-grid span { color: #69b7ff; font-size: 0.7rem; font-weight: 700; }
.pillars-grid h2 { margin: 24px 0 12px; font-size: 1.35rem; }
.pillars-grid p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 0.86rem; }
.large-values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.large-values span { display: grid; min-height: 130px; place-items: center; border: 1px solid var(--gray-300); border-radius: var(--radius-md); color: var(--navy-900); font-size: 0.84rem; font-weight: 700; }

.projects-page { background: var(--gray-100); }
.projects-showcase { display: grid; gap: 22px; }
.showcase-card { display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: center; gap: 52px; padding: 24px; border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 22px rgba(7, 25, 42, 0.05); }
.showcase-card:nth-child(even) { grid-template-columns: 1.25fr 0.75fr; }
.showcase-card:nth-child(even) .showcase-visual { order: 2; }
.showcase-visual { position: relative; display: grid; min-height: 300px; place-items: center; overflow: hidden; border-radius: 10px; color: var(--white); background: radial-gradient(circle, rgba(30, 136, 229, 0.42), transparent 34%), var(--navy-900); }
.showcase-visual::before { position: absolute; width: 230px; height: 230px; border: 1px solid rgba(105, 183, 255, 0.28); border-radius: 50%; content: ""; box-shadow: 0 0 0 34px rgba(30, 136, 229, 0.035); }
.showcase-visual span { z-index: 1; font-weight: 700; letter-spacing: 0.2em; }
.showcase-visual small { position: absolute; right: 18px; bottom: 14px; color: rgba(255, 255, 255, 0.4); font-size: 2rem; font-weight: 700; }
.showcase-card h2 { margin: 8px 0 14px; color: var(--navy-900); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.showcase-card > div:last-child > p:not(.eyebrow) { max-width: 620px; color: var(--gray-600); }
.showcase-card .text-link { display: inline-block; margin-top: 8px; }

.project-detail-hero { padding-block: 82px; color: var(--white); background: radial-gradient(circle at 82% 30%, rgba(30, 136, 229, 0.32), transparent 28%), var(--navy-900); }
.project-detail-hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 80px; }
.project-back { display: inline-block; margin-bottom: 42px; color: #9ecffb; font-size: 0.75rem; font-weight: 600; }
.project-detail-hero h1 { margin: 12px 0 20px; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1.04; letter-spacing: -0.05em; }
.project-detail-hero p:last-child { max-width: 720px; color: rgba(255, 255, 255, 0.68); }
.project-detail-mark { display: grid; min-height: 330px; place-content: center; border: 1px solid rgba(105, 183, 255, 0.28); border-radius: 50%; text-align: center; }
.project-detail-mark span { color: var(--white); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; letter-spacing: 0.12em; }
.project-detail-mark small { margin-top: 8px; color: #69b7ff; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
.project-narrative { display: grid; gap: 0; }
.project-narrative article { display: grid; grid-template-columns: 0.25fr 1.75fr; gap: 40px; padding-block: 44px; border-bottom: 1px solid var(--gray-300); }
.project-narrative article:first-child { padding-top: 0; }
.project-narrative > article > span { color: var(--blue-600); font-size: 0.75rem; font-weight: 700; }
.project-narrative h2, .project-detail-grid h2 { margin: 8px 0 14px; color: var(--navy-900); font-size: clamp(1.7rem, 3vw, 2.5rem); }
.project-narrative div > p:last-child { max-width: 820px; color: var(--gray-600); }
.project-detail-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; padding-top: 72px; }
.project-feature-list { display: grid; grid-template-columns: repeat(2, 1fr); margin: 28px 0 0; padding: 0; gap: 12px; list-style: none; }
.project-feature-list li { display: flex; min-height: 72px; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); color: var(--navy-900); font-size: 0.78rem; font-weight: 600; }
.project-feature-list span { color: var(--blue-600); font-size: 0.65rem; }
.project-tech-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.project-tech-list span { padding: 8px 13px; border-radius: 999px; color: var(--navy-900); background: var(--gray-100); font-size: 0.7rem; font-weight: 600; }
.project-privacy-note { margin-top: 30px; padding: 18px; border-left: 3px solid var(--blue-600); color: var(--gray-600); background: var(--gray-100); font-size: 0.72rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 0.8fr; align-items: start; gap: 80px; }
.contact-grid > div > p { max-width: 620px; color: var(--gray-600); }
.contact-grid .button { margin-top: 18px; }
.contact-card { padding: 36px; border: 1px solid rgba(30, 136, 229, 0.16); border-radius: var(--radius-md); background: var(--gray-100); }
.contact-card > span { color: var(--green-600); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-card h2 { margin-top: 10px; }
.contact-card p { color: var(--gray-600); font-size: 0.88rem; }
.contact-phone { display: block; margin-top: 18px; color: var(--navy-900); font-size: 1.15rem; font-weight: 700; }
.contact-phone:hover { color: var(--blue-600); }
.contact-card ul { margin: 24px 0 0; padding: 0; list-style: none; }
.contact-card li { padding-block: 11px; border-bottom: 1px solid var(--gray-300); color: var(--navy-900); font-size: 0.82rem; font-weight: 600; }
.contact-card li:last-child { border-bottom: 0; }

.contact-layout { display: grid; }
.contact-heading { max-width: 760px; margin-bottom: 38px; }
.contact-heading h2 { margin: 10px 0 14px; color: var(--navy-900); font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.15; letter-spacing: -0.035em; }
.contact-heading > p:last-child { color: var(--gray-600); }
.contact-form-grid { grid-template-columns: 1.2fr 0.62fr; gap: 42px; }
.contact-form { display: grid; gap: 22px; padding: 34px; border: 1px solid var(--gray-300); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 12px 34px rgba(7, 25, 42, 0.06); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field label { color: var(--navy-900); font-size: 0.8rem; font-weight: 700; }
.form-field label span { color: #c0362c; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #c7d0dc; border-radius: var(--radius-sm); color: var(--graphite-900); background: var(--white); font: inherit; font-size: 0.88rem; transition: border-color var(--transition), box-shadow var(--transition); }
.form-field input, .form-field select { min-height: 48px; padding: 10px 13px; }
.form-field textarea { min-height: 160px; padding: 12px 13px; resize: vertical; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: #8fa0b3; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue-600); outline: 0; box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.13); }
.form-field [aria-invalid="true"] { border-color: #c0362c; }
.form-field > small, .field-meta small { color: var(--gray-600); font-size: 0.66rem; }
.field-meta { display: flex; justify-content: space-between; gap: 16px; }
.field-error { color: #a62921; font-size: 0.7rem; font-weight: 600; }
.form-consent { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 4px; }
.form-consent p { max-width: 440px; margin: 0; color: var(--gray-600); font-size: 0.67rem; }
.form-consent a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 2px; }
.form-consent .button { flex-shrink: 0; border: 0; cursor: pointer; font-family: inherit; }
.button-whatsapp { margin-top: 14px; color: var(--white); background: var(--green-600); }
.button-whatsapp:hover { background: #11853c; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.flash-stack { display: grid; margin-bottom: 24px; gap: 10px; }
.flash-message { padding: 14px 16px; border: 1px solid; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; }
.flash-success { border-color: rgba(22, 163, 74, 0.35); color: #0d6c31; background: rgba(22, 163, 74, 0.08); }
.flash-error { border-color: rgba(192, 54, 44, 0.32); color: #922a23; background: rgba(192, 54, 44, 0.07); }

.legal-content { max-width: 820px; }
.legal-content > p:first-child { padding-bottom: 24px; border-bottom: 1px solid var(--gray-300); }
.legal-content h2 { margin: 38px 0 10px; color: var(--navy-900); font-size: 1.25rem; }
.legal-content p { color: var(--gray-600); }

.error-page { display: grid; min-height: calc(100vh - var(--header-height)); place-items: center; padding-block: 80px; background: var(--gray-100); }
.error-content { max-width: 720px; text-align: center; }
.error-content > span { display: block; color: rgba(30, 136, 229, 0.12); font-size: clamp(7rem, 20vw, 14rem); font-weight: 700; line-height: 0.8; }
.error-content h1 { margin: 20px 0 14px; color: var(--navy-900); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; }
.error-content > p:not(.eyebrow) { color: var(--gray-600); }
.error-content .button { margin-top: 20px; }

.site-footer {
    color: rgba(255, 255, 255, 0.74);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 56px;
    padding-block: 72px 56px;
}

.footer-brand strong {
    display: block;
    margin-top: 18px;
    color: var(--white);
    font-size: 1.15rem;
}

.footer-brand p {
    max-width: 330px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-logo {
    width: 92px;
    height: auto;
    padding: 5px;
    border-radius: var(--radius-sm);
    background: var(--white);
}

.footer-title {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 10px;
    list-style: none;
    font-size: 0.84rem;
}

.footer-links a:hover,
.footer-bottom a:hover,
.social-links a:hover {
    color: #69b7ff;
}

.social-label {
    margin: 22px 0 8px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
}

.footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 9px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green-600);
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.3);
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1;
}

.whatsapp-float:hover {
    box-shadow: 0 14px 34px rgba(22, 163, 74, 0.42);
    transform: translateY(-2px);
}
