:root {
    --bg: #faf7ff;
    --surface: #f1ebfe;
    --card: #fdfbff;
    --border: rgba(139, 92, 246, 0.12);
    --accent: #8b5cf6;
    --accent2: #6d28d9;
    --accent3: #ec4899;
    --text: #1a0f2e;
    --muted: #7c6090;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-q: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.012;
    pointer-events: none;
    z-index: 9999;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    text-decoration: none;
}

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

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

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color .2s;
}

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

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

.lang-dropdown {
    position: relative;
}

.lang-current {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.lang-current svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.lang-dropdown.open .lang-current svg {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 130px;
    z-index: 1000;
    animation: slideUp 0.3s ease;
}

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

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

.lang-menu.open {
    display: flex;
}

.lang-menu button {
    background: none;
    border: none;
    padding: 0.5rem 0.8rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--muted);
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.lang-menu button:hover {
    background: var(--surface);
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    padding: .65rem 1.4rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    border: none;
    letter-spacing: .02em;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, .35);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

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

/* ─── HERO ────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5vw 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .18;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: var(--accent2);
    top: -100px;
    right: -100px;
    animation: float1 8s ease-in-out infinite;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -50px;
    left: 10%;
    animation: float2 10s ease-in-out infinite;
}

.orb3 {
    width: 300px;
    height: 300px;
    background: var(--accent3);
    top: 30%;
    right: 25%;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {

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

    50% {
        transform: translate(-30px, 20px)
    }
}

@keyframes float2 {

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

    50% {
        transform: translate(20px, -30px)
    }
}

@keyframes float3 {

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

    50% {
        transform: translate(-20px, -20px)
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(139, 92, 246, .08);
    border: 1px solid rgba(139, 92, 246, .25);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    padding: .35rem 1rem;
    border-radius: 100px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp .6s ease both;
}

.hero-tag::before {
    content: '●';
    font-size: .5rem;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    animation: fadeUp .6s .1s ease both;
}

h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeUp .6s .2s ease both;
}

.hero-calidad {
    font-family: var(--font-q);
    font-weight: 900;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .6s .3s ease both;
}

.hero-visual {
    position: relative;
    animation: fadeUp .6s .2s ease both;
}

.dashboard-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(139, 92, 246, .15), 0 0 0 1px rgba(139, 92, 246, .08);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform .5s ease;
}

.dashboard-card:hover {
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
}

.dash-header {
    background: var(--surface);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.dash-title {
    font-size: .8rem;
    color: var(--muted);
    margin-left: .5rem;
}

.dash-tools {
    font-size: .8rem;
    color: var(--muted);
    display: flex;
    gap: 10px;
}

.dash-body {
    padding: 1.5rem;
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-metric {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
}

.dash-metric-label {
    font-size: .7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .5rem;
}

.dash-metric-val {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.dash-metric-val.green {
    color: var(--accent);
}

.dash-metric-val.purple {
    color: var(--accent2);
}

.dash-metric-val.pink {
    color: var(--accent3);
}

.dash-metric-change {
    font-size: .7rem;
    color: var(--accent);
}

.dash-chart {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
}

.dash-chart-label {
    font-size: .7rem;
    color: var(--muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: .4rem;
    height: 80px;
}

.bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--accent), transparent);
    opacity: .7;
    animation: barGrow .8s ease both;
}

.bar:nth-child(7n+1) {
    height: 60%;
}

.bar:nth-child(7n+2) {
    height: 45%;
}

.bar:nth-child(7n+3) {
    height: 80%;
}

.bar:nth-child(7n+4) {
    height: 55%;
}

.bar:nth-child(7n+5) {
    height: 95%;
    background: linear-gradient(180deg, var(--accent3), transparent);
    opacity: 1;
}

.bar:nth-child(7n+6) {
    height: 70%;
}

.bar:nth-child(7n+0) {
    height: 85%;
}

@keyframes barGrow {
    from {
        height: 0
    }
}

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

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

/* ─── SECTION COMMONS ─────────────────────── */
section {
    padding: 6rem 5vw;
}

.section-wrap {
    max-width: 1300px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
    border-left: 2px solid var(--accent);
    padding-left: .75rem;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 em {
    font-style: normal;
    color: var(--accent);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.7;
}

/* ─── PRODUCTS ────────────────────────────── */
#products {
    background: var(--surface);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity .3s;
}

.product-card:hover {
    border-color: rgba(139, 92, 246, .4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, .12);
}

.product-by {
    color: var(--muted);
    font-size: 12px;
    margin-top: 0;
}

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

.product-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.ic1 {
    background: rgba(139, 92, 246, .12);
}

.ic2 {
    background: rgba(236, 72, 153, .12);
}

.ic3 {
    background: rgba(109, 40, 217, .12);
}

.ic4 {
    background: rgba(255, 200, 79, .12);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .2rem;
    letter-spacing: -0.02em;
}

.product-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .75rem;
    border-radius: 100px;
    letter-spacing: .04em;
    text-transform: uppercase;
    align-self: flex-start;
}

.tag-green {
    background: rgba(139, 92, 246, .1);
    color: var(--accent);
}

.tag-purple {
    background: rgba(109, 40, 217, .1);
    color: var(--accent2);
}

.product-link {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 5;
}

.product-card:hover .product-link {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.1);
}

/* ─── FEATURES ────────────────────────────── */
#features {
    position: relative;
    overflow: hidden;
}

.features-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.features-intro .section-sub {
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(139, 92, 246, .15), rgba(109, 40, 217, .4), rgba(236, 72, 153, .15));
}

.timeline-step {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3rem;
}

.timeline-step:nth-child(even) {
    justify-content: flex-end;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 2.4rem;
    width: 18px;
    height: 18px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--card);
    border: 4px solid var(--accent);
    box-shadow: 0 0 0 10px rgba(139, 92, 246, .08);
    z-index: 2;
}

.timeline-card {
    width: calc(50% - 3rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 244, 255, .96));
    border: 1px solid rgba(139, 92, 246, .10);
    border-radius: 28px;
    padding: 1.6rem;
    box-shadow: 0 12px 32px rgba(26, 15, 46, .08);
    position: relative;
}

.timeline-step:nth-child(odd) .timeline-card::after,
.timeline-step:nth-child(even) .timeline-card::after {
    content: '';
    position: absolute;
    top: 2.2rem;
    width: 22px;
    height: 2px;
    background: rgba(139, 92, 246, .22);
}

.timeline-step:nth-child(odd) .timeline-card::after {
    right: -22px;
}

.timeline-step:nth-child(even) .timeline-card::after {
    left: -22px;
}

.timeline-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timeline-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(139, 92, 246, .10);
    border: 1px solid rgba(139, 92, 246, .10);
    color: var(--accent2);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

@keyframes aiRing {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, .08);
    border: 1px solid rgba(139, 92, 246, .10);
    color: var(--accent2);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: .7rem;
}

.feature-text {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.65;
}

.timeline-visual {
    margin-top: 1.35rem;
    display: grid;
    gap: .9rem;
}

.timeline-panel {
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(139, 92, 246, .10);
    border-radius: 20px;
    padding: 1rem 1.05rem;
    box-shadow: 0 8px 22px rgba(26, 15, 46, .05);
}

.timeline-panel-title {
    font-size: .74rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .7rem;
}

.timeline-list {
    display: grid;
    gap: .7rem;
}

.timeline-list-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .88rem;
    color: var(--text);
}

.timeline-list-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, .08);
    color: var(--accent2);
    position: relative;
    font-size: 0;
}

.timeline-list-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.timeline-step:nth-child(1) .timeline-list-item:nth-child(1) .timeline-list-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d28d9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E");
}

.timeline-step:nth-child(1) .timeline-list-item:nth-child(2) .timeline-list-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d28d9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
}

.timeline-step:nth-child(1) .timeline-list-item:nth-child(3) .timeline-list-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d28d9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m19 9-5 5-4-4-3 3'/%3E%3C/svg%3E");
}

/* ─── FAQ ─────────────────────────────────── */
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: border-color .25s;
}

.faq-item[open] {
    border-color: rgba(139, 92, 246, .35);
}

.faq-q {
    list-style: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -0.01em;
    user-select: none;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform .25s;
    flex-shrink: 0;
}

.faq-item[open] .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    font-size: .93rem;
    color: var(--muted);
    line-height: 1.7;
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* ─── CTA ─────────────────────────────────── */
#cta {
    padding: 5rem 5vw;
}

.cta-box {
    max-width: 1300px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(139, 92, 246, .06), rgba(236, 72, 153, .06));
    border: 1px solid rgba(139, 92, 246, .2);
    border-radius: 28px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box>* {
    position: relative;
    z-index: 2;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, .08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── CONTACT FORM ────────────────────────── */
.cta-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-form input,
.cta-form textarea {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s ease;
    width: 100%;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.cta-form textarea {
    min-height: 120px;
    resize: vertical;
}

.cta-form .btn {
    align-self: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ─── FOOTER ──────────────────────────────── */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: .8rem;
    color: var(--muted);
}

/* ─── MOBILE ──────────────────────────────── */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-size: 1.4rem;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-card {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5vw;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

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

    .hero-visual {
        display: none;
    }

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

    .process-timeline::before {
        left: 18px;
        transform: none;
    }

    .timeline-step,
    .timeline-step:nth-child(even) {
        justify-content: flex-end;
    }

    .timeline-step::before {
        left: 18px;
        transform: none;
    }

    .timeline-card {
        width: calc(100% - 3rem);
    }

    .timeline-card::after,
    .timeline-step:nth-child(odd) .timeline-card::after,
    .timeline-step:nth-child(even) .timeline-card::after {
        left: -22px;
        right: auto;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

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

    .cta-form .btn {
        width: 100%;
    }
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

.reveal {
    animation: reveal both;
    animation-timeline: view();
    animation-range: entry 20% entry 80%;
}