
/* =========================================================
   FONTS
   ========================================================= */

@font-face {
    font-family: 'RalewayVar';
    src: url('/fonts/raleway/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Zuume';
    src: url('/fonts/zuume/Zuume-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

/* =========================================================
   THEME TOKENS
   ========================================================= */

:root {
    --background: #ececec;
    --foreground: #000000;
    --surface: #ffffff;
    --muted: rgba(0, 0, 0, 0.68);
    --border: rgba(0, 0, 0, 0.1);
    --highlight: #e6ff00;

    --header-height: 86px;
    --stroke: #ffffff;

    --section-space-y: clamp(4.5rem, 7vw, 7rem);
    --hero-space-top: clamp(2.25rem, 4vw, 4rem);
    --hero-space-bottom: clamp(4rem, 8vw, 7rem);
    --section-mask-height: clamp(48px, 6vw, 88px);

    --footer-logo-filter: none;
}

.dark {
    --stroke: #000000;
}

html.dark {
    --background: #0b0b0b;
    --foreground: #f5f5f5;
    --surface: #121212;
    --muted: rgba(255, 255, 255, 0.72);
    --border: rgba(255, 255, 255, 0.12);
    --highlight: #d8ff1f;
    --footer-logo-filter: invert(1);
}

/* =========================================================
   RESET / BASE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: 'RalewayVar', Arial, Helvetica, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

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

section[id] {
    scroll-margin-top: calc(var(--header-height) + 18px);
}

/* =========================================================
   TYPO / HELPERS
   ========================================================= */

.highlight {
    display: inline-block;
    background: var(--highlight);
    padding: 0 0.18em;
    line-height: 0.95;
    color: #000000;
}

.numbers {
    font-family: 'Zuume', Arial, sans-serif;
    letter-spacing: -0.03em;
}

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

.section-reveal {
    animation: fadeUp 0.8s ease both;
}

.fade-in {
    animation: fadeIn 0.9s ease both;
}

.float-soft {
    animation: floatSoft 5s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 0.12s;
}

.delay-2 {
    animation-delay: 0.24s;
}

.delay-3 {
    animation-delay: 0.36s;
}

/* =========================================================
   GENERIC LAYOUT
   ========================================================= */

.app-shell {
    min-height: 100vh;
    background: var(--background);
    color: var(--foreground);
}

.surface-card {
    background: var(--surface);
    border: 1px solid var(--border);
}

.btn-square {
    display: inline-flex;
        max-width: 400px;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 0;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

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

.section-shell {
    position: relative;
    padding-top: var(--section-space-y);
    padding-bottom: var(--section-space-y);
}

.hero-shell {
    position: relative;
    padding-top: var(--hero-space-top);
    padding-bottom: var(--hero-space-bottom);
}

.section-soft-edge {
    position: relative;
    isolation: isolate;
}

.section-soft-edge::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--section-mask-height) * -1);
    height: calc(var(--section-mask-height) + 2px);
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(120% 100% at 50% 0%,
            color-mix(in srgb, var(--background) 96%, transparent) 0%,
            color-mix(in srgb, var(--background) 92%, transparent) 42%,
            transparent 78%);
    opacity: 0.95;
}


.results-section.section-soft-edge::after,
.footer-contrast::after {
    display: none;
}

/* =========================================================
   GRID / BACKGROUND EFFECTS
   ========================================================= */

.grid-line {
    position: relative;
}

.grid-line::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

html.dark .grid-line::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

.hero-side-stripes {
    position: absolute;
    top: 0;
    right: 0;
    width: min(28vw, 360px);
    height: 100%;
    pointer-events: none;
    opacity: 0.35;
}

.hero-side-stripes::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left,
            color-mix(in srgb, var(--foreground) 4%, transparent),
            transparent 40%),
        repeating-linear-gradient(150deg,
            transparent 0 48px,
            color-mix(in srgb, var(--foreground) 3%, transparent) 48px 60px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 6px;
}

.menu-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: currentColor;
    transition: transform 0.28s ease;
}

.menu-link:hover::after,
.menu-link.is-active::after {
    transform: scaleX(1);
}

/* =========================================================
   INTRO / PAGE TRANSITION
   ========================================================= */

.logo-reveal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    background: var(--background);
    animation: overlayOut 0.7s ease 1.35s forwards;
}

.logo-reveal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    animation: introScale 0.9s ease both;
}

.logo-reveal-mark {
    width: min(220px, 42vw);
    animation: floatSoft 3.8s ease-in-out infinite;
}

.logo-reveal-bar {
    height: 8px;
    width: 160px;
    background: var(--highlight);
    transform: scaleX(0);
    transform-origin: left;
    animation: introBar 0.65s ease 0.28s forwards;
}

.page-transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background: var(--background);
}

.page-transition-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.page-transition-logo {
    width: min(220px, 40vw);
    animation: introScale 0.7s ease both;
}

.page-transition-bar {
    width: 140px;
    height: 6px;
    background: var(--highlight);
    transform-origin: left;
    animation: introBar 0.55s ease both;
}

/* =========================================================
   HOME ECOSYSTEM
   ========================================================= */

.home-ecosystem-lines {
    position: absolute;
    inset: 48px 32px 24px;
    pointer-events: none;
    opacity: 0.8;
}

.home-ecosystem-lines::before,
.home-ecosystem-lines::after {
    content: '';
    position: absolute;
    background: color-mix(in srgb, var(--foreground) 18%, transparent);
}

.home-ecosystem-lines::before {
    left: 50%;
    top: 84px;
    height: 168px;
    width: 1px;
    transform: translateX(-50%);
}

.home-ecosystem-lines::after {
    left: 24%;
    right: 24%;
    top: 188px;
    height: 1px;
}

.home-ecosystem-branch {
    position: absolute;
    top: 188px;
    height: 112px;
    width: 1px;
    background: color-mix(in srgb, var(--foreground) 18%, transparent);
}

.home-ecosystem-branch.left {
    left: 24%;
}

.home-ecosystem-branch.right {
    right: 24%;
}

.ecosystem-orbit {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background:
        radial-gradient(circle at center,
            color-mix(in srgb, var(--highlight) 12%, transparent) 0%,
            transparent 62%),
        linear-gradient(180deg,
            color-mix(in srgb, var(--surface) 82%, transparent),
            color-mix(in srgb, var(--surface) 22%, transparent));
    filter: blur(4px);
    opacity: 0.95;
}

.ecosystem-card {
    position: relative;
    display: flex;
    width: 168px;
    height: 168px;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--highlight) 18%, var(--border));
    background: linear-gradient(180deg,
            color-mix(in srgb, var(--highlight) 68%, var(--surface)) 0%,
            color-mix(in srgb, var(--highlight) 22%, var(--surface)) 48%,
            color-mix(in srgb, var(--surface) 88%, transparent) 100%);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 0 0 1px rgba(230, 255, 0, 0.08);
    clip-path: polygon(14% 0%, 86% 0%, 100% 14%, 100% 86%, 86% 100%, 14% 100%, 0% 86%, 0% 14%);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    overflow: hidden;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    clip-path: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 30%),
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.22), transparent 36%);
    pointer-events: none;
}

.ecosystem-card::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 4px;
    background: color-mix(in srgb, var(--highlight) 92%, white 8%);
    box-shadow: 0 0 18px color-mix(in srgb, var(--highlight) 45%, transparent);
}

.ecosystem-link:hover .ecosystem-card {
    transform: translateY(-8px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        0 0 0 1px rgba(230, 255, 0, 0.12);
}

.ecosystem-icon {
    position: relative;
    z-index: 1;
    font-size: 42px;
    color: #000000;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.14));
}

/* =========================================================
   HERO VISUAL PANEL
   ========================================================= */

.hero-visual-panel {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 38%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(10px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.hero-visual-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 255, 140, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(0, 255, 140, 0.08), transparent 32%);
    opacity: 0.9;
}


.hero-visual-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 18px;
    padding: 9px 13px;
    background: var(--highlight);
    color: #000000;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    box-shadow: 0 10px 24px rgba(230, 255, 0, 0.18);
}


.hero-visual-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}



.hero-visual-card {
    min-height: 180px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background:
        linear-gradient(180deg, #e6ff00a1, rgba(255, 255, 255, 1) 100%);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.hero-visual-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 140, 0.28);
    box-shadow:
        0 20px 36px rgba(0, 0, 0, 0.14),
        0 0 20px rgba(0, 255, 140, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
}


html.dark .hero-visual-card {
    border: 1px solid rgba(230, 255, 0, 0.14);
    background:
        linear-gradient(180deg, rgba(230, 255, 0, 0.08) 0%, rgba(230, 255, 0, 0.03) 18%, rgba(10, 10, 10, 0.96) 72%, rgba(6, 6, 6, 0.98) 100%);
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

html.dark .hero-visual-card:hover {
    border-color: rgba(230, 255, 0, 0.28);
    box-shadow:
        0 24px 42px rgba(0, 0, 0, 0.36),
        0 0 28px rgba(230, 255, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-visual-icon {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: #ffffff;
    color: #000000;
    font-size: 18px;
    box-shadow:
        0 0 0 1px rgba(184, 255, 0, 0.16),
        0 12px 24px rgba(184, 255, 0, 0.14);
}

html.dark .hero-visual-icon {
    background: #b8ff00;
}

html.dark .hero-visual-panel {
    border: 1px solid rgba(230, 255, 0, 0.18);
    background:
        linear-gradient(180deg, rgba(230, 255, 0, 0.1) 0%, rgba(230, 255, 0, 0.03) 22%, rgba(6, 6, 6, 0.94) 68%, rgba(4, 4, 4, 0.98) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 42%);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
    overflow: hidden;
}

.faq-item[open] {
    border-color: rgba(230, 255, 0, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.faq-toggle {
    position: relative;
    display: flex;
    width: 42px;
    height: 42px;
    min-width: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.faq-item:hover .faq-toggle,
.faq-item[open] .faq-toggle {
    border-color: rgba(230, 255, 0, 0.28);
    background: rgba(230, 255, 0, 0.06);
}

.faq-toggle-horizontal,
.faq-toggle-vertical {
    position: absolute;
    background: currentColor;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.faq-toggle-horizontal {
    width: 18px;
    height: 2px;
    color: var(--highlight);
}

.faq-toggle-vertical {
    width: 2px;
    height: 18px;
    color: var(--highlight);
}

.faq-item[open] .faq-toggle-vertical {
    opacity: 0;
    transform: scaleY(0);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer-contrast {
    position: relative;
    z-index: 10;
    isolation: isolate;
    background: #000000;
    color: #ffffff;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.footer-contrast::before,
.footer-contrast::after {
    display: none !important;
}

.footer-contrast .footer-logo {
    filter: none;
}

@media (max-width: 767px) {
    .footer-contrast {
        text-align: center;
    }

    .footer-contrast .mx-auto {
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-contrast .footer-logo {
        margin-inline: auto;
    }
}

/* =========================================================
   RESULTS
   ========================================================= */

.results-section {
    background: #050505;
    color: #ffffff;
}

.results-heading h2 {
    color: #ffffff !important;
}

.results-heading p {
    color: rgba(255, 255, 255, 0.72) !important;
}

.results-card {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.results-text {
    color: #ffffff;
}

.results-icon {
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(230, 255, 0, 0.08);
    color: var(--highlight);
    font-size: 18px;
}

.results-line {
    width: 80px;
    height: 2px;
    background: var(--highlight);
    transition: width 0.3s ease;
}

.results-card:hover .results-line {
    width: 110px;
}

html.dark .results-section {
    background: #ffffff;
    color: #000000;
}

html.dark .results-heading h2 {
    color: #000000 !important;
}

html.dark .results-heading p {
    color: rgba(0, 0, 0, 0.62) !important;
}

html.dark .results-card {
    background: #050505;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

html.dark .results-text {
    color: #ffffff;
}

html.dark .results-icon {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(230, 255, 0, 0.08);
    color: var(--highlight);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1023px) {
    .hero-side-stripes {
        width: 40vw;
        opacity: 0.18;
    }

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

@media (max-width: 767px) {
    .hero-side-stripes {
        width: 100%;
        opacity: 0.08;
    }

    .section-soft-edge::after {
        bottom: calc(var(--section-mask-height) * -0.72);
        height: var(--section-mask-height);
    }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes introScale {
    0% {
        opacity: 0;
        transform: scale(0.88);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes introBar {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes overlayOut {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* =========================================================
   TECH SERVICES
   ========================================================= */

.tech-services-stack {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    /* mobile */
    gap: 22px;
}

@media (min-width: 1024px) {
    .tech-services-stack {
        grid-template-columns: 1fr 1fr;
        /* desktop */
    }
}

.tech-services-stack::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            color-mix(in srgb, var(--foreground) 20%, transparent),
            transparent);
    opacity: 0.4;
}

.tech-service-band {
    display: block;
    position: relative;
    transform: translateX(0);
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.tech-service-band.is-left,
.tech-service-band.is-right {
    margin-left: 0;
    margin-right: 0;
}

.tech-service-band-inner {
    position: relative;
    display: grid;
    grid-template-columns: 84px 1fr;
    align-items: center;
    gap: 22px;
    min-height: 152px;
    padding: 28px 30px;
    border: 1px solid rgba(230, 255, 0, 0.16);
    background:
        linear-gradient(90deg, rgba(230, 255, 0, 0.12) 0%, rgba(230, 255, 0, 0.04) 14%, rgba(8, 8, 8, 0.96) 42%, rgba(4, 4, 4, 1) 100%);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
    isolation: isolate;
    clip-path: none;
    border-radius: 0;
}

.tech-service-band::before,
.tech-service-band::after,
.tech-service-band-inner .tech-service-band-top::before {
    display: none;
}

.tech-service-band-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(230, 255, 0, 0.12), transparent 24%),
        radial-gradient(circle at 6% 50%, rgba(230, 255, 0, 0.16), transparent 20%);
    pointer-events: none;
    opacity: 0.9;
}

.tech-service-band-inner::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(230, 255, 0, 0.18), var(--highlight), rgba(230, 255, 0, 0.18));
    opacity: 0.9;
    transform: scaleX(0.96);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.tech-service-band:hover {
    transform: translateY(-4px);
}

.tech-service-band:hover .tech-service-band-inner {
    border-color: rgba(230, 255, 0, 0.3);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.36),
        0 0 30px rgba(230, 255, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.tech-service-band:hover .tech-service-band-inner::after {
    transform: scaleX(1);
    opacity: 1;
}

.tech-service-band::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background: var(--highlight);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--highlight);
    z-index: 3;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.tech-service-band::after {
    content: '';
    position: absolute;
    left: 38px;
    top: 50%;
    width: 108px;
    height: 1px;
    transform: translateY(-50%);
    background: color-mix(in srgb, var(--foreground) 22%, transparent);
    z-index: 1;
}

.tech-service-band-inner .tech-service-band-top {
    position: relative;
}

.tech-service-band-inner .tech-service-band-top::before {
    content: '';
    position: absolute;
    left: -88px;
    top: 50%;
    width: 88px;
    height: 1px;
    transform: translateY(-50%);
    background: color-mix(in srgb, var(--foreground) 18%, transparent);
    opacity: 0.85;
}

.tech-service-band:hover::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 18px var(--highlight);
}

.tech-service-band-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--highlight);
    color: #000000;
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(230, 255, 0, 0.2);
}

.tech-service-band-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.tech-service-band-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.tech-service-band-number {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.tech-service-band-line {
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--foreground) 16%, transparent);
}

.tech-service-band-title {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.tech-service-band-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.tech-service-band:hover .tech-service-band-cta {
    transform: translateX(4px);
    color: var(--foreground);
}

/* Light mode: card preto */
html:not(.dark) .tech-service-band-inner {
    border: 1px solid rgba(0, 0, 0, 0.08);

    background:
        linear-gradient(90deg,
            rgba(0, 255, 140, 0.12) 0%,
            rgba(255, 255, 255, 0.96) 35%,
            #ffffff 100%);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

html:not(.dark) .tech-service-band-title {
    color: #000000;
}

html:not(.dark) .tech-service-band-number {
    color: rgba(0, 0, 0, 0.6);
}

html:not(.dark) .tech-service-band-cta {
    color: rgba(0, 0, 0, 0.6);
}

html:not(.dark) .tech-service-band-line {
    background: rgba(0, 0, 0, 0.1);
}

html:not(.dark) .tech-service-band::after {
    background: rgba(230, 255, 0, 0.16);
}

html:not(.dark) .tech-service-band-inner .tech-service-band-top::before {
    background: rgba(255, 255, 255, 0.1);
}

/* Dark mode */
html.dark .tech-service-band-inner {
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

html.dark .tech-service-band-number {
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   TECH MODAL
   ========================================================= */

.tech-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(8px);
}

.tech-modal {
    position: relative;
    width: min(920px, 100%);
    max-height: min(88vh, 920px);
    overflow: auto;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--foreground);
    padding: 28px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.tech-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.tech-modal-close:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--foreground) 6%, transparent);
}

.tech-modal-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    background: var(--highlight);
    color: #000000;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tech-modal-title {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.tech-modal-description {
    margin-top: 18px;
    max-width: 66ch;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
}

.tech-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
}

.tech-modal-card {
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    padding: 20px;
}

.tech-modal-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--muted);
}

.tech-modal-card-label {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--foreground);
}

.tech-modal-includes {
    margin-top: 24px;
    border: 1px solid var(--border);
    padding: 20px;
}

.tech-modal-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--muted);
    line-height: 1.7;
}

.tech-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.tech-modal-primary,
.tech-modal-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.tech-modal-primary {
    background: var(--foreground);
    color: var(--background);
    border-color: var(--foreground);
}

.tech-modal-secondary {
    background: transparent;
    color: var(--foreground);
}

.tech-modal-primary:hover,
.tech-modal-secondary:hover {
    transform: translateY(-2px);
}

/* =========================================================
   HERO / FORM MOBILE FIXES
   ========================================================= */

@media (max-width: 767px) {
    .hero-visual-panel {
        margin-top: 8px;
        padding: 22px 18px;
    }

    .hero-visual-label {
        justify-content: center;
        margin-bottom: 16px;
    }

    .hero-visual-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-visual-card {
        min-height: auto;
        padding: 18px;
        transform: none !important;
    }

    .hero-visual-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
        font-size: 16px;
    }

    .hero-visual-card h3,
    .hero-visual-card p {
        text-align: left;
    }

    #tech-project-form .surface-card {
        padding: 18px;
    }

    #tech-project-form input,
    #tech-project-form textarea {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .hero-mobile-title-fix [data-hero-title='true'] {
        max-width: 13ch;
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        line-height: 1.02;
        letter-spacing: -0.06em;
        text-wrap: balance;
        word-break: normal;
        overflow-wrap: normal;
    }

    .hero-mobile-title-fix br {
        display: none;
    }

    .hero-mobile-title-fix .highlight {
        display: inline;
        padding: 0 0.12em;
    }
}


.hero-visual-card h3 {
    color: #050505;
}

.hero-visual-card p {
    color: rgba(0, 0, 0, 0.72);
}

html.dark .hero-visual-card h3 {
    color: #ffffff;
}

html.dark .hero-visual-card p {
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   HOME MOBILE CTA
   ========================================================= */

.home-mobile-cta {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--highlight) 38%, var(--border));
    background: linear-gradient(180deg,
            color-mix(in srgb, var(--foreground) 96%, transparent) 0%,
            color-mix(in srgb, var(--foreground) 88%, transparent) 100%);
    color: var(--background);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    overflow: hidden;
}

.home-mobile-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            color-mix(in srgb, var(--highlight) 14%, transparent) 0%,
            transparent 42%);
    pointer-events: none;
}

.home-mobile-cta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--highlight),
            transparent);
    opacity: 0.8;
}

.home-mobile-cta:hover,
.home-mobile-cta:active {
    transform: translateY(-2px);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    border-color: color-mix(in srgb, var(--highlight) 55%, var(--border));
}

.home-mobile-cta-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--highlight);
    color: #000000;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(230, 255, 0, 0.22);
}

.home-mobile-cta-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.home-mobile-cta-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-mobile-cta-title {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-mobile-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(230, 255, 0, 0.34);
    color: var(--highlight);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.home-mobile-cta-description {
    margin: 8px 0 0;
    font-size: 0.86rem;
    line-height: 1.5;
}

.home-mobile-cta:hover .home-mobile-cta-arrow,
.home-mobile-cta:active .home-mobile-cta-arrow {
    transform: translateX(3px);
    border-color: rgba(230, 255, 0, 0.6);
    background: rgba(230, 255, 0, 0.08);
}

html:not(.dark) .home-mobile-cta-title {
    color: #ffffff;
}

html:not(.dark) .home-mobile-cta-description {
    color: rgba(255, 255, 255, 0.72);
}

html.dark .home-mobile-cta {
    background: linear-gradient(180deg,
            color-mix(in srgb, var(--surface) 96%, transparent) 0%,
            color-mix(in srgb, var(--surface) 92%, transparent) 100%);
    color: var(--foreground);
    border-color: color-mix(in srgb, var(--highlight) 28%, var(--border));
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

html.dark .home-mobile-cta-title {
    color: var(--foreground);
}

html.dark .home-mobile-cta-description {
    color: var(--muted);
}

html.dark .home-mobile-cta-arrow {
    color: var(--highlight);
    border-color: color-mix(in srgb, var(--highlight) 45%, var(--border));
}

/* =========================================================
   HOME BRAND CARDS (PRETO + VERDE CLEAN)
   ========================================================= */

.brand-card {
    position: relative;
    padding: 3px;

    border: 1px solid rgba(230, 255, 0, 0.14);

    /* 🔥 DEGRADE SIMPLES (2 cores) */
    background: linear-gradient(180deg, #e6ff00a1, rgba(255, 255, 255, 1) 100%);

    /* 🔥 FORMATO TECH */
    clip-path: polygon(10% 0%,
            90% 0%,
            100% 12%,
            100% 88%,
            90% 100%,
            10% 100%,
            0% 88%,
            0% 12%);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    overflow: hidden;
    isolation: isolate;
}

.fade-in-page {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInPage 0.65s ease forwards;
}

@keyframes fadeInPage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


html.dark .brand-card {
    background: linear-gradient(180deg, rgba(230, 255, 0, 0.08) 0%, rgba(230, 255, 0, 0.03) 18%, rgba(10, 10, 10, 0.96) 72%, rgba(6, 6, 6, 0.98) 100%);
}

html.dark .ecosystem-icon {
    color: white;
}


/* 🔥 GLOW LIMPO (SEM POLUIÇÃO) */
.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at 20% 20%,
            rgba(230, 255, 0, 0.18),
            transparent 40%);

    opacity: 0.6;
    pointer-events: none;
}

/* ⚡ LED INFERIOR */
.brand-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12%;
    right: 12%;
    height: 2px;

    background: linear-gradient(90deg,
            transparent,
            var(--highlight),
            transparent);

    box-shadow: 0 0 12px rgba(230, 255, 0, 0.6);

    transition:
        height 0.3s ease,
        left 0.3s ease,
        right 0.3s ease,
        box-shadow 0.3s ease;
}

/* 🔥 HOVER PREMIUM */
.brand-card:hover {
    transform: translateY(-6px);

    border-color: rgba(230, 255, 0, 0.3);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 24px rgba(230, 255, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* LED cresce no hover */
.brand-card:hover::after {
    height: 3px;
    left: 8%;
    right: 8%;
    box-shadow: 0 0 18px rgba(230, 255, 0, 0.8);
}

/* LOGO */
.brand-logo {
    position: relative;
    z-index: 1;

    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

/* leve destaque no hover */
.brand-card:hover .brand-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.06));
}

/* =========================================================
   MOBILE-SPECIFIC COMPONENT TUNING
   ========================================================= */

@media (max-width: 1023px) {

    .tech-service-band.is-left,
    .tech-service-band.is-right {
        margin-left: 0;
        margin-right: 0;
    }

    .tech-service-band-inner {
        clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
    }

    .tech-service-band::after {
        width: 82px;
    }

    .tech-service-band-inner .tech-service-band-top::before {
        left: -62px;
        width: 62px;
    }
}

@media (max-width: 767px) {
    .tech-services-stack {
        gap: 16px;
    }

    .brand-card-premium {
        min-height: 110px;
        padding: 18px 14px;
    }


    .tech-services-stack::before {
        display: none;
    }

    .tech-service-band::before,
    .tech-service-band::after {
        display: none;
    }

    .tech-service-band-inner .tech-service-band-top::before {
        display: none;
    }

    .tech-service-band-inner {
        grid-template-columns: 56px 1fr;
        padding: 20px 18px;
        clip-path: none;
    }

    .tech-service-band-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .tech-service-band-title {
        font-size: 1.1rem;
    }

    .tech-modal-overlay {
        padding: 14px;
    }

    .tech-modal {
        padding: 22px 18px;
    }

    .tech-modal-grid {
        grid-template-columns: 1fr;
    }

    .tech-modal-actions {
        flex-direction: column;
    }

    .tech-modal-primary,
    .tech-modal-secondary {
        width: 100%;
    }

    .brand-card {
        padding: 18px 16px;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .footer-contrast {
        text-align: center;
    }

    .footer-contrast .mx-auto {
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-contrast .footer-logo {
        margin-inline: auto;
    }
}

.home-v2 .home-tech {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(230, 255, 0, 0.06), transparent 28%),
        linear-gradient(180deg, #050505 0%, #070707 100%);
}

.home-v2 .home-tech::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 75%);
    opacity: 0.22;
}

.home-v2 .home-tech .section-label {
    display: inline-flex;
    position: relative;
    z-index: 1;
    background: var(--highlight);
    color: #000;
    box-shadow: 0 0 22px rgba(230, 255, 0, 0.18);
}



.home-v2 .home-tech .home-section-description {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.68);
}

.home-v2 .home-tech-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 46px;
}

.home-v2 .home-tech-card {
    position: relative;
    min-height: 164px;
    padding: 20px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.005) 100%);
    overflow: hidden;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.home-v2 .home-tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 255, 0, 0.08), transparent 42%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.home-v2 .home-tech-card::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(230, 255, 0, 0.85),
            transparent);
    opacity: 0.45;
    transition:
        left 0.28s ease,
        right 0.28s ease,
        opacity 0.28s ease,
        box-shadow 0.28s ease;
}

.home-v2 .home-tech-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 255, 0, 0.22);
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.028) 0%,
            rgba(255, 255, 255, 0.008) 100%);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(230, 255, 0, 0.05);
}

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

.home-v2 .home-tech-card:hover::after {
    left: 10px;
    right: 10px;
    opacity: 1;
    box-shadow: 0 0 16px rgba(230, 255, 0, 0.35);
}

.home-v2 .home-tech-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.home-v2 .home-tech-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 34ch;
}

.home-v2 .home-education {
    position: relative;
    background:
        radial-gradient(circle at 15% 0%, rgba(230, 255, 0, 0.05), transparent 24%),
        linear-gradient(180deg, #050505 0%, #060606 100%);
}

.home-v2 .home-education::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), transparent 72%);
    opacity: 0.18;
}

.home-v2 .home-education .section-label {
    display: inline-flex;
}



.home-v2 .home-education .home-section-description {
    max-width: 760px;
}

.home-v2 .home-education-list {
    position: relative;
    z-index: 1;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-v2 .home-education-step {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.28s ease;
}

.home-v2 .home-education-step:last-child {
    border-bottom: none;
}

.home-v2 .home-education-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: rgba(230, 255, 0, 0.85);
    opacity: 0;
    transition:
        width 0.28s ease,
        opacity 0.28s ease;
}

.home-v2 .home-education-step:hover {
    background: rgba(255, 255, 255, 0.012);
}

.home-v2 .home-education-step:hover::before {
    width: 100%;
    opacity: 0.18;
}

.home-v2 .home-education-number {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-top: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition:
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.home-v2 .home-education-step:hover .home-education-number {
    border-color: rgba(230, 255, 0, 0.35);
    background: rgba(230, 255, 0, 0.08);
    box-shadow: 0 0 16px rgba(230, 255, 0, 0.08);
    transform: translateY(-1px);
}

.home-v2 .home-education-step h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.home-v2 .home-education-step p {
    margin: 0;
    max-width: 860px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1rem;
    line-height: 1.75;
}

.home-v2 .home-section-title {
    margin: 0;
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #f3f3f3;
    text-wrap: balance;
}

.home-v2 .home-section-description {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.04rem;
    line-height: 1.8;
}

@media (max-width: 1023px) {
    .home-v2 .home-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 767px) {
    .home-v2 .home-tech-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-v2 .home-tech-card {
        min-height: auto;
    }

    .home-v2 .home-education-step {
        grid-template-columns: 42px 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .home-v2 .home-section-title {
        font-size: clamp(1.95rem, 8vw, 2.85rem);
        line-height: 0.97;
        letter-spacing: -0.05em;
        text-wrap: balance;
    }


    .home-v2 .home-education-step h3 {
        font-size: 1.1rem;
    }

    .home-v2 .home-tech-card h3 {
        font-size: 0.98rem;
    }

    .home-v2 .home-tech-card p,
    .home-v2 .home-education-step p {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

.lp-escale {
    background: #050505;
    color: #f5f5f5;
}

.lp-escale-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    background: var(--highlight);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    box-shadow: 0 0 22px rgba(230, 255, 0, 0.16);
}

.lp-escale-title {
    margin: 18px 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #ffffff;
}

.lp-escale-description {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 900px;
}

.lp-escale-check-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.lp-escale-check-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 255, 0, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.lp-escale-check-icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--highlight);
    color: #000;
    font-size: 16px;
    font-weight: 900;
}

.lp-escale-check-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.lp-escale-pillar {
    min-height: 100%;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lp-escale-pillar:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 255, 0, 0.24);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.lp-escale-timeline-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-escale-timeline-number {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    font-size: 11px;
    font-weight: 900;
    color: #fff;
}

.lp-escale-timeline-item h3 {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 2vw, 1.9rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #fff;
}

.lp-escale-timeline-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

.lp-escale-cta {
    padding: 34px;
    border: 1px solid rgba(230, 255, 0, 0.16);
    background: linear-gradient(135deg,
            rgba(230, 255, 0, 0.08) 0%,
            rgba(230, 255, 0, 0.02) 20%,
            rgba(8, 8, 8, 0.96) 56%,
            rgba(4, 4, 4, 1) 100%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

@media (max-width: 767px) {
    .lp-escale-title {
        font-size: clamp(1.9rem, 10vw, 3rem);
        line-height: 1;
    }

    .lp-escale-check-card {
        grid-template-columns: 44px 1fr;
        padding: 18px;
    }

    .lp-escale-timeline-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .lp-escale-cta {
        padding: 22px 18px;
    }
}




.results-premium-card {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.008) 100%);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.results-premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(230, 255, 0, 0.08) 0%, transparent 34%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.results-premium-card::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(230, 255, 0, 0.95),
            transparent);
    opacity: 0.5;
    transition:
        left 0.3s ease,
        right 0.3s ease,
        opacity 0.3s ease,
        box-shadow 0.3s ease;
}

.results-premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 255, 0, 0.22);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.3),
        0 0 24px rgba(230, 255, 0, 0.05);
}

.results-premium-card:hover::before {
    opacity: 1;
}



.results-premium-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;

    background: rgba(230, 255, 0, 0.08);
    color: var(--highlight);

    border: 1px solid rgba(230, 255, 0, 0.2);

    font-size: 18px;

    box-shadow:
        0 10px 24px rgba(230, 255, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.results-premium-card:hover .results-premium-icon {
    transform: translateY(-2px);

    border-color: rgba(230, 255, 0, 0.4);

    box-shadow:
        0 14px 30px rgba(230, 255, 0, 0.18),
        0 0 18px rgba(230, 255, 0, 0.08);
}

.results-premium-card:hover::after {
    left: 10px;
    right: 10px;
    opacity: 1;
    box-shadow: 0 0 18px rgba(230, 255, 0, 0.32);
}

.results-premium-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.results-premium-index {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.34);
}

.results-premium-line {
    width: 68px;
    height: 2px;
    background: var(--highlight);
    transition: width 0.3s ease;
}

.results-premium-card:hover .results-premium-line {
    width: 104px;
}


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

.blog-rich-content p + p {
  margin-top: 1.5rem;
}

.blog-rich-content ul {
  list-style: disc;
}

.blog-rich-content li::marker {
  color: var(--highlight);
}