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

:root {
    --black: #0A0A0A;
    --white: #F5F4F0;
    --warm-white: #FAFAF7;
    --gray-100: #F0EFEB;
    --gray-200: #E5E4E0;
    --gray-300: #C8C7C0;
    --gray-500: #8A8A82;
    --gray-700: #3A3A35;
    --blue: #2563EB;
    --blue-dark: #1D4ED8;
    --blue-light: #EFF6FF;
    --blue-mid: #BFDBFE;
    --font: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--warm-white);
    color: var(--black);
    overflow-x: hidden;
    cursor: none;
}

/* CURSOR */
.cursor {
    width: 10px;
    height: 10px;
    background: #ffffff;
    /* ← BLANCO, no negro */
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid #ffffff;
    /* ← BLANCO */
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, border-color .2s;
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 16px;
    height: 16px;
}

.cursor-ring.hover {
    width: 50px;
    height: 50px;
    border-color: rgba(255, 255, 255, .9);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 250, 247, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    transition: padding .3s;
}

nav.scrolled {
    padding: .9rem 3rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-parent {
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-500);
    text-decoration: none;
    letter-spacing: .05em;
    transition: color .2s;
}

.nav-parent:hover {
    color: var(--black);
}

.nav-sep {
    width: 1px;
    height: 16px;
    background: var(--gray-300);
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.nav-logo-badge {
    background: var(--blue);
    color: white;
    font-size: .65rem;
    font-weight: 700;
    padding: .2rem .5rem;
    border-radius: 4px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-cta {
    background: var(--blue) !important;
    color: white !important;
    padding: .55rem 1.3rem;
    border-radius: 100px;
    transition: background .2s !important;
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
}

.nav-mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--black);
    cursor: pointer;
}

/* ── MOBILE MENU ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: var(--warm-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.mobile-menu a {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--black);
    text-decoration: none;
    transition: opacity .2s;
}

.mobile-menu a:hover {
    opacity: .5;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 5rem;
    position: relative;
    overflow: hidden;
    gap: 4rem;
}

/* Blue geometric background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--warm-white);
}

.hero-geo {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: var(--blue-light);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-geo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(37, 99, 235, .06) 0px, rgba(37, 99, 235, .06) 1px, transparent 1px, transparent 40px);
}

/* Floating code lines decorative */
.hero-dots {
    position: absolute;
    top: 20%;
    right: 8%;
    z-index: 1;
    opacity: .15;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.hero-dot-line {
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    animation: dotPulse 3s ease-in-out infinite;
}

.hero-dot-line:nth-child(1) {
    width: 80px;
    animation-delay: 0s;
}

.hero-dot-line:nth-child(2) {
    width: 120px;
    animation-delay: .3s;
}

.hero-dot-line:nth-child(3) {
    width: 60px;
    animation-delay: .6s;
}

.hero-dot-line:nth-child(4) {
    width: 100px;
    animation-delay: .9s;
}

.hero-dot-line:nth-child(5) {
    width: 45px;
    animation-delay: 1.2s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: .15
    }

    50% {
        opacity: .5
    }
}

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

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

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp .7s .1s forwards;
}

.hero-eyebrow i {
    font-size: .7rem;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -.04em;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp .7s .25s forwards;
}

.hero-title .blue {
    color: var(--blue);
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-700);
    font-weight: 300;
    max-width: 440px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp .7s .4s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .7s .55s forwards;
}

/* Hero visual — browser mockup */
.hero-visual {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: slideRight .8s .4s forwards;
}

.browser-mock {
    background: white;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(37, 99, 235, .15), 0 4px 20px rgba(0, 0, 0, .08);
    overflow: hidden;
    border: 1px solid var(--blue-mid);
}

.browser-bar {
    background: var(--gray-100);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    border-bottom: 1px solid var(--gray-200);
}

.browser-dots {
    display: flex;
    gap: .4rem;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #FF5F56;
}

.browser-dots span:nth-child(2) {
    background: #FFBD2E;
}

.browser-dots span:nth-child(3) {
    background: #27CA3F;
}

.browser-url {
    flex: 1;
    background: white;
    border-radius: 6px;
    padding: .3rem .75rem;
    font-size: .75rem;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
}

.browser-body {
    padding: 1.5rem;
    background: white;
}

.mock-hero-strip {
    background: var(--blue);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.mock-h {
    height: 10px;
    background: rgba(255, 255, 255, .9);
    border-radius: 4px;
    margin-bottom: .6rem;
}

.mock-h.w80 {
    width: 80%;
}

.mock-h.w60 {
    width: 60%;
}

.mock-h.w40 {
    width: 40%;
    height: 7px;
    background: rgba(255, 255, 255, .5);
}

.mock-btn {
    display: inline-block;
    background: white;
    border-radius: 20px;
    height: 28px;
    width: 100px;
    margin-top: .5rem;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

.mock-card {
    background: var(--blue-light);
    border-radius: 8px;
    padding: .75rem;
    border: 1px solid var(--blue-mid);
}

.mock-card-icon {
    width: 24px;
    height: 24px;
    background: var(--blue);
    border-radius: 6px;
    margin-bottom: .5rem;
}

.mock-line {
    height: 6px;
    background: var(--blue-mid);
    border-radius: 3px;
    margin-bottom: .4rem;
}

.mock-line.w70 {
    width: 70%;
}

.mock-line.w50 {
    width: 50%;
}

/* Floating tag */
.hero-tag {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    border-radius: 14px;
    padding: .9rem 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: .75rem;
    border: 1px solid var(--gray-200);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-tag-icon {
    width: 36px;
    height: 36px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: .9rem;
}

.hero-tag-text {
    font-size: .8rem;
    font-weight: 600;
    color: var(--black);
}

.hero-tag-sub {
    font-size: .7rem;
    color: var(--gray-500);
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--black);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255, 255, 255, .6);
    font-size: .875rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--blue);
    font-size: 1rem;
}

.trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, .12);
}

/* ── SERVICES ── */
.services-section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--blue-mid);
    max-width: 60px;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    max-width: 520px;
}

.services-header p {
    max-width: 340px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-700);
    font-weight: 300;
}

/* Accordion-style services */
.services-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gray-200);
}

.service-item {
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    cursor: pointer;
    gap: 2rem;
    transition: color .2s;
}

.service-header:hover .service-num {
    color: var(--blue);
}

.service-header:hover .service-name {
    color: var(--blue);
}

.service-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.service-num {
    font-size: .75rem;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: .1em;
    min-width: 28px;
    transition: color .2s;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -.02em;
    transition: color .2s;
}

.service-tag {
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: .25rem .75rem;
    border-radius: 100px;
    white-space: nowrap;
}

.service-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--gray-500);
    transition: all .3s;
    flex-shrink: 0;
}

.service-item.open .service-toggle {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
    transform: rotate(45deg);
}

.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.service-body-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 0 2.5rem;
    padding-left: calc(28px + 2rem);
}

.service-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 300;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9rem;
    color: var(--gray-700);
}

.service-feature i {
    color: var(--blue);
    margin-top: .15rem;
    font-size: .75rem;
    flex-shrink: 0;
}

/* ── PROCESS ── */
.process-section {
    padding: 8rem 3rem;
    background: var(--black);
    color: white;
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 5rem;
}

.process-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    max-width: 460px;
}

.process-header p {
    max-width: 340px;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
}

.process-section .section-label {
    color: rgba(37, 99, 235, .8);
}

.process-section .section-label::after {
    background: rgba(37, 99, 235, .3);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    position: relative;
    transition: border-color .3s, background .3s;
}

.process-step:hover {
    border-color: rgba(37, 99, 235, .4);
    background: rgba(37, 99, 235, .05);
}

.step-num {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--blue);
    margin-bottom: 1.5rem;
    display: block;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, .15);
    border: 1px solid rgba(37, 99, 235, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--blue);
    font-size: 1rem;
}

.step-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}

.step-desc {
    font-size: .875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -1.25rem;
    width: 1.5rem;
    height: 1px;
    background: rgba(37, 99, 235, .3);
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

/* ── TECH STACK ── */
.tech-section {
    padding: 6rem 3rem;
    background: var(--blue-light);
}

.tech-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.tech-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: .75rem;
}

.tech-header p {
    color: var(--gray-700);
    font-weight: 300;
    font-size: 1rem;
}

.tech-groups {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tech-group {
    background: white;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--blue-mid);
}

.tech-group-title {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.25rem;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.tech-pill {
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    color: var(--gray-700);
    font-size: .8rem;
    font-weight: 500;
    padding: .4rem .85rem;
    border-radius: 100px;
    transition: all .2s;
}

.tech-pill:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

/* ── WHY CORE ── */
.why-section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-text h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.why-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-stat {
    padding: 1.75rem;
    background: var(--blue-light);
    border-radius: 18px;
    border: 1px solid var(--blue-mid);
}

.why-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--blue);
    display: block;
    margin-bottom: .25rem;
}

.why-stat-label {
    font-size: .85rem;
    color: var(--gray-700);
    font-weight: 400;
    line-height: 1.4;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: border-color .3s, background .3s;
}

.why-feature:hover {
    border-color: var(--blue-mid);
    background: var(--blue-light);
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .95rem;
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem;
    letter-spacing: -.01em;
}

.why-feature p {
    font-size: .875rem;
    line-height: 1.65;
    color: var(--gray-700);
    font-weight: 300;
}

/* ── CTA ── */
.cta-section {
    padding: 8rem 3rem;
    background: var(--blue);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .03) 0px, rgba(255, 255, 255, .03) 1px, transparent 1px, transparent 50px);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.cta-inner p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .75);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: white;
    color: var(--blue);
    padding: .95rem 2.25rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .15);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: transparent;
    color: white;
    padding: .95rem 2.25rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, .1);
}

/* ── CONTACT MODAL ── */
.contact-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
}

.contact-float button {
    width: 58px;
    height: 58px;
    background: var(--blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 99, 235, .4);
    transition: transform .3s, box-shadow .3s;
}

.contact-float button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 99, 235, .5);
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 600;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--warm-white);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .2);
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp .3s cubic-bezier(.4, 0, .2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0
    }

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

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: background .2s;
}

.modal-close:hover {
    background: var(--gray-300);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .4rem;
}

.modal-subtitle {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.mfg {
    margin-bottom: 1.25rem;
}

.mfg label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: .5rem;
}

.mfg input,
.mfg textarea,
.mfg select {
    width: 100%;
    padding: .85rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font-family: var(--font);
    font-size: .9rem;
    background: white;
    color: var(--black);
    transition: border-color .2s;
    outline: none;
    appearance: none;
}

.mfg input:focus,
.mfg textarea:focus,
.mfg select:focus {
    border-color: var(--blue);
}

.mfg textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-form-modal {
    width: 100%;
    padding: .9rem;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .5rem;
}

.btn-form-modal:hover {
    background: var(--blue-dark);
}

.btn-form-modal:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.form-msg {
    margin-top: 1rem;
    padding: .9rem 1.2rem;
    border-radius: 10px;
    font-size: .9rem;
    display: none;
}

.form-msg.success {
    display: block;
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-msg.error {
    display: block;
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--blue);
    color: white;
    padding: .9rem 2rem;
    border-radius: 100px;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--gray-700);
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s;
    background: none;
    border: none;
}

.btn-ghost:hover {
    color: var(--black);
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    color: white;
    padding: 3.5rem 3rem 2rem;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.03em;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-brand-badge {
    background: var(--blue);
    font-size: .6rem;
    font-weight: 700;
    padding: .2rem .45rem;
    border-radius: 4px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-tagline {
    color: rgba(255, 255, 255, .4);
    font-size: .85rem;
    margin-top: .4rem;
}

.footer-back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: color .2s;
}

.footer-back:hover {
    color: white;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-col h5 {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, .6);
    font-size: .875rem;
    text-decoration: none;
    transition: color .2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .3);
    font-size: .8rem;
}

.social-links {
    display: flex;
    gap: .75rem;
}

.social-links a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: .8rem;
    text-decoration: none;
    transition: all .2s;
}

.social-links a:hover {
    border-color: white;
    color: white;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

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

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 7rem;
    }

    .hero-geo {
        width: 100%;
        height: 50%;
        top: 50%;
        clip-path: none;
    }

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

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

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

@media(max-width:768px) {
    nav {
        padding: 1.2rem 1.5rem;
    }

    nav.scrolled {
        padding: .9rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-btn {
        display: block;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
        gap: 3rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .trust-bar {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .trust-sep {
        display: none;
    }

    .services-section {
        padding: 5rem 1.5rem;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-body-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-left: 0;
    }

    .process-section {
        padding: 5rem 1.5rem;
    }

    .process-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .step-connector {
        display: none;
    }

    .tech-section {
        padding: 4rem 1.5rem;
    }

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

    .why-section {
        padding: 5rem 1.5rem;
    }

    .why-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cta-section {
        padding: 5rem 1.5rem;
    }

    footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        gap: 2rem;
    }

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

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }
}

@media(max-width:480px) {
    .tech-groups {
        grid-template-columns: 1fr;
    }

    .why-stats {
        grid-template-columns: 1fr;
    }
}