@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
    --ink: #16051f;
    --ink-soft: #260936;
    --surface: #ffffff;
    --surface-soft: #fbf8fc;
    --text: #281832;
    --muted: #726879;
    --line: #e9dfec;
    --cyan: #f2b827;
    --cyan-dark: #6d159f;
    --lime: #ffd76a;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 18px 48px rgba(55, 13, 77, 0.14);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

a {
    color: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.brand-name {
    font-family: "Space Grotesk", Arial, sans-serif;
}

h1 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(3rem, 5.4vw, 5.35rem);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 strong {
    display: block;
    color: var(--cyan);
    font-weight: 700;
}

h2 {
    margin-bottom: 20px;
    color: var(--ink);
    font-size: clamp(2.15rem, 4.2vw, 4rem);
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
}

h3 {
    line-height: 1.25;
}

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

.section {
    padding: 120px 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-dark {
    overflow: hidden;
    color: #c4cfda;
    background:
        radial-gradient(circle at 15% 20%, rgba(242, 184, 39, 0.12), transparent 30%),
        var(--ink);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    color: var(--white);
    background: rgba(22, 5, 31, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(242, 184, 39, 0.18));
}

.brand-name {
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.035em;
}

.brand-name span {
    color: var(--cyan);
}

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

.nav-menu > a {
    color: #dce6ee;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-menu > a:hover,
.nav-menu > a.active {
    color: var(--cyan);
}

.nav-menu > a.active:not(.button) {
    text-decoration: underline;
    text-decoration-color: rgba(242, 184, 39, 0.65);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.menu-toggle {
    display: none;
    padding: 8px;
    color: var(--white);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 26px;
    color: var(--ink);
    background: var(--cyan);
    border: 1px solid var(--cyan);
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(242, 184, 39, 0.2);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    background: var(--lime);
    border-color: var(--lime);
    box-shadow: 0 14px 40px rgba(255, 215, 106, 0.22);
    transform: translateY(-2px);
}

.button-small {
    min-height: 42px;
    padding-inline: 20px;
    color: var(--ink) !important;
}

.button-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.button-ghost:hover {
    color: var(--ink);
}

.hero {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    padding: 165px 0 100px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 5, 31, 0.96), rgba(22, 5, 31, 0.74) 54%, rgba(22, 5, 31, 0.86)),
        radial-gradient(circle at 85% 45%, rgba(109, 21, 159, 0.2), transparent 32%),
        var(--ink);
    background-size: 48px 48px, 48px 48px, auto, auto, auto;
}

.hero::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 8% 18%, rgba(242, 184, 39, 0.08), transparent 26%);
    content: "";
}

.hero::after {
    position: absolute;
    right: -10%;
    bottom: -315px;
    width: 70%;
    height: 360px;
    background: var(--surface);
    content: "";
    transform: rotate(-8deg);
    transform-origin: left top;
}

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

.hero-copy {
    max-width: 720px;
}

.hero h1 {
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--cyan-dark);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow {
    color: var(--cyan);
}

.eyebrow span {
    width: 28px;
    height: 2px;
    background: currentColor;
}

.hero-lead {
    max-width: 610px;
    margin-bottom: 34px;
    color: #d1dbe4;
    font-size: 1.12rem;
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0;
    margin: 34px 0 0;
    color: #c3d0da;
    font-size: 0.87rem;
    list-style: none;
}

.hero-points li::before {
    margin-right: 8px;
    color: var(--lime);
    content: "✓";
    font-weight: 800;
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 500px;
    place-items: center;
}

.visual-core {
    position: relative;
    z-index: 3;
    display: flex;
    width: 265px;
    height: 265px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    background: radial-gradient(circle, #fffdf7 0%, #f6e9bd 72%, #e8c55b 100%);
    border: 1px solid rgba(242, 184, 39, 0.55);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(109, 21, 159, 0.22), 0 0 45px rgba(242, 184, 39, 0.14);
}

.visual-core::before,
.visual-core::after {
    position: absolute;
    border: 1px dashed rgba(109, 21, 159, 0.22);
    border-radius: 50%;
    content: "";
}

.visual-core::before {
    inset: 18px;
}

.visual-core::after {
    inset: 38px;
}

.visual-core img {
    z-index: 1;
    width: 82%;
    height: 82%;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(55, 13, 77, 0.15));
}

.tech-orbit {
    position: absolute;
    border: 1px solid rgba(242, 184, 39, 0.25);
    border-radius: 50%;
}

.tech-orbit::before,
.tech-orbit::after {
    position: absolute;
    width: 9px;
    height: 9px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--cyan);
    content: "";
}

.tech-orbit-one {
    width: 370px;
    height: 370px;
    animation: orbit 18s linear infinite;
}

.tech-orbit-one::before {
    top: 58px;
    right: 35px;
}

.tech-orbit-one::after {
    bottom: 25px;
    left: 74px;
    background: var(--lime);
}

.tech-orbit-two {
    width: 455px;
    height: 455px;
    border-style: dashed;
    animation: orbit 28s linear infinite reverse;
}

.tech-orbit-two::before {
    top: 45%;
    left: -5px;
}

.tech-orbit-two::after {
    right: 45px;
    bottom: 60px;
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

.status-card {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 175px;
    align-items: center;
    gap: 11px;
    padding: 14px 16px;
    color: var(--white);
    background: rgba(37, 7, 52, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.status-card-top {
    top: 58px;
    right: -5px;
}

.status-card-bottom {
    bottom: 55px;
    left: -5px;
}

.status-card small,
.status-card strong {
    display: block;
}

.status-card small {
    color: #8da0b1;
    font-size: 0.68rem;
}

.status-card strong {
    font-size: 0.84rem;
}

.status-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    font-weight: 800;
}

.pulse {
    width: 14px;
    height: 14px;
    background: var(--cyan);
    border: 3px solid rgba(242, 184, 39, 0.25);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(242, 184, 39, 0.1);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.hero-glow-one {
    top: -300px;
    left: -250px;
    width: 600px;
    height: 600px;
    background: rgba(242, 184, 39, 0.07);
}

.hero-glow-two {
    right: -250px;
    bottom: -200px;
    width: 650px;
    height: 650px;
    background: rgba(109, 21, 159, 0.16);
}

.trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -54px;
}

.trust-grid {
    display: grid;
    padding: 26px 35px;
    color: #526171;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    grid-template-columns: repeat(5, 1fr);
}

.trust-grid span {
    padding: 4px 20px;
    border-right: 1px solid var(--line);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
}

.trust-grid span:last-child {
    border-right: 0;
}

.section-heading {
    display: grid;
    align-items: end;
    margin-bottom: 55px;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p {
    margin-bottom: 6px;
    color: var(--muted);
}

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

.service-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    border-color: rgba(109, 21, 159, 0.26);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: 22px;
    right: 28px;
    color: #e7edf1;
    font-family: "Space Grotesk", sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

.service-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 26px;
    place-items: center;
    color: var(--cyan-dark);
    background: rgba(109, 21, 159, 0.09);
    border-radius: 8px;
}

.service-icon svg {
    width: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 1.55rem;
}

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

.service-card ul {
    padding: 18px 0 18px;
    margin: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.service-card li {
    margin: 9px 0;
    color: #455365;
    font-size: 0.91rem;
}

.service-card li::before {
    margin-right: 10px;
    color: var(--cyan-dark);
    content: "✓";
    font-weight: 800;
}

.service-card > a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.service-card > a span,
.text-link span {
    color: var(--cyan-dark);
    transition: transform 0.2s ease;
}

.service-card > a:hover span,
.text-link:hover span {
    transform: translateX(5px);
}

.business-grid {
    align-items: start;
}

.business-card {
    overflow: visible;
}

.business-card-wide {
    grid-column: 1 / -1;
}

.area-label {
    margin-bottom: 8px;
    color: var(--cyan-dark) !important;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 26px;
}

.area-tags span {
    padding: 7px 11px;
    color: #405263;
    background: var(--surface-soft);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
}

.capability-details {
    border-top: 1px solid var(--line);
}

.capability-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 2px;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 800;
    list-style: none;
}

.capability-details summary::-webkit-details-marker {
    display: none;
}

.capability-details summary span {
    color: var(--cyan-dark);
    font-size: 1.4rem;
    transition: transform 0.25s ease;
}

.capability-details[open] summary span {
    transform: rotate(45deg);
}

.capability-content {
    padding-top: 20px;
}

.capability-content h4 {
    margin: 18px 0 5px;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
}

.capability-content h4:first-child {
    margin-top: 0;
}

.capability-content p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.capability-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 35px;
}

.integration-list li {
    position: relative;
}

.integration-list li:not(:last-child)::after {
    position: absolute;
    bottom: -5px;
    left: 26px;
    z-index: 2;
    color: var(--cyan);
    content: "↓";
    font-size: 0.9rem;
}

.process-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.process-copy {
    position: sticky;
    top: 120px;
    align-self: start;
}

.process-copy p:not(.eyebrow) {
    margin-bottom: 30px;
}

.section-dark .text-link {
    color: var(--white);
}

.section-dark .text-link span {
    color: var(--cyan);
}

.process-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    grid-template-columns: 80px 1fr;
    gap: 18px;
}

.process-list li:first-child {
    padding-top: 0;
}

.process-list li > span {
    color: var(--cyan);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.process-list h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.process-list p {
    margin-bottom: 0;
    color: #9dadbc;
}

.about-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
}

.about-panel {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(242, 184, 39, 0.15), transparent 45%),
        linear-gradient(145deg, #fffdf8, #f4e8c1);
    border-radius: 8px;
}

.about-panel::before,
.about-panel::after {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(109, 21, 159, 0.2);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.about-panel::before {
    width: 260px;
    height: 260px;
}

.about-panel::after {
    width: 390px;
    height: 390px;
    border-style: dashed;
}

.about-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(var(--cyan-dark) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.about-logo {
    position: absolute;
    inset: 38px 28px 120px;
    z-index: 1;
    width: calc(100% - 56px);
    height: calc(100% - 158px);
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(55, 13, 77, 0.12));
}

.about-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    padding: 24px;
    color: var(--white);
    background: rgba(35, 7, 51, 0.92);
    border: 1px solid rgba(242, 184, 39, 0.28);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.about-badge strong,
.about-badge span {
    display: block;
}

.about-badge strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
}

.about-badge span {
    color: #9eb0c0;
}

.about-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.02rem;
}

.about-values {
    display: grid;
    margin-top: 35px;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-values div {
    padding-top: 18px;
    border-top: 2px solid var(--cyan);
}

.about-values strong,
.about-values span {
    display: block;
}

.about-values strong {
    margin-bottom: 8px;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
}

.about-values span {
    color: var(--muted);
    font-size: 0.8rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.faq-intro > p:last-child {
    color: var(--muted);
}

.faq-item {
    border-bottom: 1px solid #cfdbe2;
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    color: var(--ink);
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 1.03rem;
    font-weight: 700;
    text-align: left;
}

.faq-item button span {
    flex: 0 0 auto;
    color: var(--cyan-dark);
    font-size: 1.6rem;
    font-weight: 400;
    transition: transform 0.25s ease;
}

.faq-item button[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-answer > p {
    min-height: 0;
    overflow: hidden;
    margin-bottom: 0;
    color: var(--muted);
}

.faq-item.open .faq-answer {
    padding-bottom: 24px;
    grid-template-rows: 1fr;
}

.project-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.project-copy {
    align-self: start;
}

.project-lead {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.05rem;
}

.project-grid {
    display: flex;
    flex-direction: column;
}

.project-item {
    display: grid;
    padding: 24px 0;
    border-bottom: 1px solid #cfdbe2;
    grid-template-columns: 60px 1fr;
    gap: 15px;
}

.project-item:first-child {
    padding-top: 0;
}

.project-item > span {
    color: var(--cyan-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.project-item h3 {
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 1.12rem;
}

.project-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.contact-section {
    background: var(--white);
}

.contact-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.contact-heading > p:last-child {
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: grid;
    align-items: center;
    padding: 18px;
    color: var(--text);
    background: var(--surface-soft);
    border: 1px solid transparent;
    border-radius: 8px;
    grid-template-columns: 44px 1fr auto;
    gap: 14px;
    text-decoration: none;
    transition: border 0.2s ease, background 0.2s ease;
}

a.contact-card:hover {
    background: var(--white);
    border-color: var(--cyan);
}

.contact-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--ink);
    background: var(--cyan);
    border-radius: 8px;
    font-weight: 800;
}

.contact-card small,
.contact-card strong {
    display: block;
}

.contact-card small {
    color: var(--muted);
    font-size: 0.72rem;
}

.contact-card strong {
    font-size: 0.88rem;
    overflow-wrap: anywhere;
}

.hours {
    padding: 25px;
    margin-top: 8px;
    color: #d4dee7;
    background: var(--ink);
    border-radius: 8px;
}

.hours h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1.05rem;
}

.hours p {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 0.82rem;
}

.hours p:last-child {
    margin-bottom: 0;
}

.hours strong {
    color: var(--cyan);
}

.map-wrap {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    background: var(--surface-soft);
    border-radius: var(--radius);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 580px;
    border: 0;
    filter: saturate(0.75) contrast(1.05);
}

.map-link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    color: var(--white);
    background: var(--ink);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.map-link span {
    color: var(--cyan);
}

.site-footer {
    color: #93a4b4;
    background: #0e0315;
}

.footer-main {
    display: grid;
    align-items: start;
    padding: 58px 0 46px;
    grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr) auto;
    gap: 46px;
}

.footer-main p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-identity {
    display: grid;
    gap: 12px;
}

.footer-mark {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
    text-decoration: none;
}

.footer-brand {
    color: var(--white);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
}

.footer-brand sup {
    color: var(--cyan);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 0.62rem;
    margin-left: 2px;
}

.footer-tagline {
    color: var(--cyan);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.86rem !important;
    font-weight: 700;
}

.footer-areas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 26px;
}

.footer-areas span {
    color: #c2cfda;
    font-size: 0.84rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
}

.footer-links a {
    color: #c2cfda;
    font-size: 0.85rem;
    text-decoration: none;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.75rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 20px;
    margin-top: 0;
}

.legal-links a {
    color: #aebdca;
    font-size: 0.75rem;
    text-decoration: none;
}

.legal-links a:hover {
    color: var(--cyan);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--white);
    background: #20c866;
    border: 4px solid #f4cb53;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
}

.whatsapp-float svg {
    width: 28px;
    fill: currentColor;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 90px;
    color: var(--white);
    background:
        radial-gradient(circle at 84% 26%, rgba(109, 21, 159, 0.45), transparent 32%),
        linear-gradient(90deg, rgba(22, 5, 31, 0.98), rgba(22, 5, 31, 0.82)),
        linear-gradient(135deg, rgba(22, 5, 31, 0.98), rgba(55, 10, 77, 0.96));
}

.page-hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
}

.page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.page-hero h1 {
    max-width: 900px;
    color: var(--white);
    font-size: clamp(2.7rem, 6vw, 5.7rem);
    line-height: 1;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
}

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

.split-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
}

.split-layout .mini-grid {
    grid-template-columns: 1fr;
}

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

.mini-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.mini-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.15rem;
}

.mini-card p {
    color: var(--muted);
    margin-bottom: 0;
}

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

.credential-card {
    min-height: 210px;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.credential-card:hover {
    border-color: rgba(109, 21, 159, 0.28);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.credential-card > span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    margin-bottom: 22px;
    color: var(--ink);
    background: rgba(242, 184, 39, 0.18);
    border: 1px solid rgba(242, 184, 39, 0.4);
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 800;
}

.credential-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 1.12rem;
}

.credential-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.credential-card.is-soon > span {
    color: var(--cyan-dark);
    background: rgba(109, 21, 159, 0.08);
    border-color: rgba(109, 21, 159, 0.18);
}

.development-list {
    display: grid;
    gap: 14px;
}

.development-item {
    display: grid;
    align-items: start;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    grid-template-columns: 54px 1fr;
    gap: 16px;
}

.development-item > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--ink);
    background: var(--cyan);
    border-radius: 8px;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.development-item h3 {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 1.08rem;
}

.development-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.error-section {
    display: grid;
    min-height: 100vh;
    padding: 120px 20px;
    place-items: center;
    color: var(--white);
    text-align: center;
    background:
        radial-gradient(circle at 50% 18%, rgba(215, 169, 61, 0.18), transparent 30%),
        linear-gradient(135deg, #16051f, #330949);
}

.error-section img {
    width: 120px;
    margin: 0 auto 28px;
}

.error-section h1 {
    color: var(--white);
    font-size: clamp(3.8rem, 12vw, 8rem);
}

.error-section p {
    max-width: 620px;
    margin: 16px auto 30px;
    color: rgba(255, 255, 255, 0.78);
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 54px;
}

.legal-nav {
    position: sticky;
    top: 110px;
    align-self: start;
    padding: 22px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.legal-nav strong {
    display: block;
    margin-bottom: 12px;
    color: var(--ink);
    font-family: "Space Grotesk", Arial, sans-serif;
}

.legal-nav a {
    display: block;
    padding: 8px 0;
    color: var(--muted);
    font-size: 0.88rem;
    text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: var(--cyan-dark);
}

.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    margin-top: 54px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin: 28px 0 10px;
    color: var(--ink);
}

.legal-content p,
.legal-content li {
    color: var(--muted);
}

.legal-content ul {
    padding-left: 22px;
}

.legal-note {
    padding: 20px;
    margin-bottom: 34px;
    color: #4c4056;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.legal-meta {
    color: var(--cyan-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cookie-banner {
    position: fixed;
    right: 90px;
    bottom: 18px;
    left: 20px;
    z-index: 950;
    display: flex;
    width: auto;
    max-width: 760px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px 12px 16px;
    color: #dbe5ee;
    background: rgba(22, 5, 31, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(22, 5, 31, 0.25);
    backdrop-filter: blur(12px);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
}

.cookie-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 10px;
}

.cookie-actions .button {
    width: auto;
    min-height: 36px;
    padding-inline: 14px;
    font-size: 0.76rem;
}

.cookie-actions .button-ghost {
    color: var(--white);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero .reveal,
.page-hero .reveal {
    opacity: 1;
    transform: none;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .section {
        padding: 90px 0;
    }

    .menu-toggle {
        display: block;
        z-index: 2;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 28px;
        min-height: 100dvh;
        padding: 96px 24px 40px;
        background: rgba(22, 5, 31, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu > a {
        font-size: 1.2rem;
    }

    .hero {
        min-height: auto;
        padding-top: 135px;
    }

    .hero-grid,
    .about-grid,
    .split-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero::after {
        display: none;
    }

    .trust-strip {
        margin-top: 0;
        background: var(--white);
    }

    .trust-grid {
        width: 100%;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        grid-template-columns: repeat(5, minmax(120px, 1fr));
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .process-layout,
    .faq-layout,
    .project-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .process-copy {
        position: static;
    }

    .about-panel {
        min-height: 450px;
    }

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

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

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

    .map-wrap,
    .map-wrap iframe {
        min-height: 480px;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .page-hero {
        padding: 118px 0 68px;
    }

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

    h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
        line-height: 1.05;
    }

    h2 {
        font-size: clamp(1.95rem, 9vw, 2.75rem);
    }

    .hero {
        padding: 118px 0 64px;
    }

    .hero-lead,
    .page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

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

    .button {
        width: 100%;
        min-height: 52px;
        padding-inline: 18px;
        text-align: center;
    }

    .button-small {
        width: auto;
    }

    .hero-points {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .hero-visual {
        min-height: 330px;
        margin: 6px -14px 0;
    }

    .tech-orbit-two {
        width: min(360px, 92vw);
        height: min(360px, 92vw);
    }

    .tech-orbit-one {
        width: min(290px, 76vw);
        height: min(290px, 76vw);
    }

    .visual-core {
        width: min(210px, 58vw);
        height: min(210px, 58vw);
    }

    .status-card {
        min-width: 145px;
        padding: 11px 12px;
    }

    .status-card strong {
        font-size: 0.76rem;
    }

    .status-card-top {
        right: 0;
    }

    .status-card-bottom {
        left: 0;
    }

    .trust-grid {
        padding: 10px 15px;
        grid-template-columns: repeat(2, 1fr);
        overflow: visible;
    }

    .trust-grid span {
        padding: 15px 5px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-grid span:last-child {
        grid-column: 1 / -1;
    }

    .trust-grid span:nth-last-child(-n+1) {
        border-bottom: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 36px;
    }

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

    .business-card-wide {
        grid-column: auto;
    }

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

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

    .credential-card {
        min-height: auto;
    }

    .service-card {
        padding: 30px 24px;
    }

    .service-number {
        top: 18px;
        right: 20px;
        font-size: 2.45rem;
    }

    .process-list li {
        grid-template-columns: 50px 1fr;
    }

    .about-panel {
        min-height: 400px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .faq-item button {
        font-size: 0.94rem;
    }

    .contact-card {
        padding: 14px;
        grid-template-columns: 40px 1fr;
    }

    .contact-card > span:last-child:not(:nth-child(2)) {
        display: none;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-card strong {
        font-size: 0.77rem;
    }

    .map-wrap,
    .map-wrap iframe {
        min-height: 420px;
    }

    .map-link {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        padding: 12px 16px;
        line-height: 1.25;
    }

    .footer-main {
        align-items: flex-start;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-areas {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

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

    .legal-links {
        justify-content: flex-start;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legal-nav {
        position: static;
    }

    .cookie-banner {
        right: 15px;
        bottom: 76px;
        left: 15px;
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        width: calc(100% - 30px);
    }

    .cookie-actions {
        flex-wrap: wrap;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 430px) {
    .brand {
        gap: 9px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-name {
        max-width: 180px;
        font-size: 0.78rem;
        overflow-wrap: anywhere;
    }

    .nav {
        min-height: 68px;
    }

    .hero,
    .page-hero {
        padding-top: 104px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .status-card-top {
        right: 6px;
    }

    .status-card-bottom {
        left: 6px;
    }

    .mini-card,
    .service-card {
        padding: 24px 20px;
    }

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

    .credential-card {
        min-height: auto;
    }

    .development-item {
        grid-template-columns: 44px 1fr;
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
