/* ════════════════════════════════════════════════════════════
   DocIAGrid — CSS
   Paleta: Crema · Verde · Negro
   Fuentes: Playfair Display (serif) · Inter (sans) · DM Mono
════════════════════════════════════════════════════════════ */

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

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
    /* Colors */
    --cream: #F5F0E8;
    --cream-dark: #EDE7D9;
    --ink: #0855a0;
    --ink-mid: #4A4A42;
    --ink-light: #8A8A7E;
    --emerald: #46ad40;
    --emerald-dim: rgba(70, 173, 64, 0.78);
    --emerald-mid: rgba(70, 173, 64, 0.18);
    --amber: #B8832A;
    --amber-dim: rgba(184, 131, 42, 0.12);
    --border: rgba(26, 26, 24, 0.1);
    --border-mid: rgba(26, 26, 24, 0.18);
    /* Typography */
    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body: 'Inter', system-ui, sans-serif;
    --ff-mono: 'DM Mono', 'Courier New', monospace;
    /* Spacing */
    --max-w: 1200px;
    --section-pad: 8rem 5vw;
    --section-pad-sm: 5rem 1.5rem;
}

/* ─── BASE ───────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--cream);
    color: var(--ink);
    font-family: var(--ff-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

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

svg {
    display: block;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--cream-dark);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--emerald);
    }

/* --- NAV --------------------------------------------------*/
nav li a {
    color: rgba(0,0,0,0.4) !important;
    font-weight: 500 !important;
}

nav ul {
    color: #000000 !important;
}

.social-box a i {
    color: #000 !important;
}

.social-box a sub {
    color: #000 !important;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    padding: 8rem 5vw 6rem;
    position: relative;
}

    /* Subtle grid background */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
        background-size: 48px 48px;
        pointer-events: none;
        mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
    }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.35s;
}

    .hero-title em {
        font-style: italic;
        color: var(--emerald);
    }

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink-mid);
    max-width: 470px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.55s;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.75s;
    align-items: center;
    margin-top: -5rem !important;
}

.imgLogo {
    max-width: 400px;
    max-height: 500px;
    width: 100%;
}

.img-logo-footer {
    background-color: #fff;
    border-radius: 20px;
    margin-right: 6rem;
}

.btn-hero {
    max-height: 250px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 3px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    letter-spacing: 0.01em;
}

    .btn-primary:hover {
        background: var(--emerald);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(27, 107, 74, 0.25);
    }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--ink);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.875rem 2rem;
    border-radius: 3px;
    border: 1.5px solid var(--border-mid);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

    .btn-outline:hover {
        border-color: var(--emerald);
        background: var(--emerald-dim);
        transform: translateY(-2px);
    }

/* ─── HERO DOC: Paper-style card ─────────────────────────── */
.hero-doc {
    position: relative;
    opacity: 0;
    animation: fadeIn 0.9s ease forwards 0.9s;
}

.doc-paper {
    background: #FEFCF7;
    border: 1px solid var(--border-mid);
    border-radius: 4px;
    padding: 2rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(26,26,24,0.06), 0 8px 24px rgba(26,26,24,0.08), 0 32px 64px rgba(26,26,24,0.06);
}

/* Paper ruled lines decoration */
.paper-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient( 180deg, transparent, transparent 31px, rgba(26,26,24,0.04) 31px, rgba(26,26,24,0.04) 32px );
    background-position: 0 56px;
}

.doc-paper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid var(--border-mid);
    position: relative;
    z-index: 1;
}

.doc-paper-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.doc-paper-type {
    font-family: var(--ff-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--ink-light);
}

.doc-paper-num {
    font-family: var(--ff-mono);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
}

.doc-stamp {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--emerald);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

    .doc-stamp svg {
        width: 18px;
        height: 18px;
    }

.doc-paper-fields {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.doc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.doc-row-total {
    grid-template-columns: 1fr;
}

.doc-cell {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.6rem 0.75rem;
}

    .doc-cell.full {
        width: 100%;
    }

.cell-label {
    font-family: var(--ff-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-light);
    margin-bottom: 0.25rem;
}

.cell-value {
    font-family: var(--ff-mono);
    font-size: 0.875rem;
    color: var(--ink);
}

.cell-total {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--emerald);
    letter-spacing: -0.02em;
}

/* AI Scan animation */
.scan-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--emerald);
    opacity: 0.6;
    animation: scanDoc 4s ease-in-out infinite;
}

@keyframes scanDoc {
    0% {
        top: 10%;
        opacity: 0;
    }

    5% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        top: 90%;
        opacity: 0;
    }
}

.scan-highlight {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    height: 22px;
    background: var(--emerald);
    opacity: 0;
    border-radius: 2px;
}

.sh-1 {
    top: 28%;
    animation: highlightFlash 4s ease-in-out infinite 0.8s;
}

.sh-2 {
    top: 46%;
    animation: highlightFlash 4s ease-in-out infinite 1.4s;
}

.sh-3 {
    top: 64%;
    animation: highlightFlash 4s ease-in-out infinite 2s;
}

@keyframes highlightFlash {
    0%, 100% {
        opacity: 0;
    }

    30%, 60% {
        opacity: 0.07;
    }
}

.doc-paper-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--ff-mono);
    font-size: 0.7rem;
    color: var(--emerald);
    position: relative;
    z-index: 3;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
}

.status-ping {
    width: 7px;
    height: 7px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Floating tags */
.tag {
    position: absolute;
    background: #FEFCF7;
    border: 1px solid var(--border-mid);
    border-radius: 100px;
    padding: 0.45rem 0.9rem;
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    color: var(--ink-mid);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 4px 16px rgba(26,26,24,0.1);
    white-space: nowrap;
}

    .tag svg {
        width: 10px;
        height: 10px;
        color: var(--emerald);
        fill: var(--emerald);
    }

.tag-1 {
    top: -1.2rem;
    right: 1.5rem;
    animation: floatUp 6s ease-in-out infinite;
}

.tag-2 {
    bottom: 3rem;
    right: -1rem;
    animation: floatUp 7.5s ease-in-out infinite 1s;
    z-index: 2;
}

.tag-3 {
    bottom: -1rem;
    left: 0.5rem;
    animation: floatUp 5.5s ease-in-out infinite 0.5s;
}

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

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

/* ════════════════════════════════════════════════════════════
   QUÉ ES DOCAIAGRID
════════════════════════════════════════════════════════════ */
.what-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.what-body {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 2rem;
}

    .what-body p {
        font-size: 1rem;
        font-weight: 500;
        color: var(--ink-mid);
        line-height: 1.75;
    }

        .what-body p strong {
            color: var(--ink);
            font-weight: 600;
        }

.what-objective {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.obj-marker {
    font-family: var(--ff-mono);
    font-size: 1.65rem;
    color: var(--emerald);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    margin-top: 0.25em;
}

.obj-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.55;
}

    .obj-text em {
        font-style: italic;
        color: var(--emerald);
        font-weight: 500;
    }

.what-right {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border-mid);
    border-radius: 6px;
    overflow: hidden;
}

.pillar-card {
    background: var(--cream);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: background 0.22s;
}

    .pillar-card:hover {
        background: var(--cream-dark);
    }

.pillar-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-mid);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--emerald);
}

    .pillar-icon svg {
        width: 18px;
        height: 18px;
    }

.pillar-title {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.pillar-desc {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-mid);
    line-height: 1.6;
}

.pillar-card.pillar-card-highlight {
    background: var(--emerald);
}

    .pillar-card.pillar-card-highlight:hover {
        background: #3a9a35;
    }

    .pillar-card.pillar-card-highlight .pillar-title,
    .pillar-card.pillar-card-highlight .pillar-desc {
        color: rgba(245, 240, 232, 0.95);
    }

    .pillar-card.pillar-card-highlight .pillar-icon {
        border-color: rgba(245, 240, 232, 0.25);
        color: rgba(245, 240, 232, 0.9);
        background: rgba(245, 240, 232, 0.1);
    }

@media (max-width: 1100px) {
    .what-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ════════════════════════════════════════════════════════════
   DIVIDER BAND
════════════════════════════════════════════════════════════ */
.divider-band {
    background: var(--ink);
    color: rgba(245, 240, 232, 0.45);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.band-sep {
    color: var(--emerald);
    opacity: 0.7;
}

/* ════════════════════════════════════════════════════════════
   SECTION WRAPPER
════════════════════════════════════════════════════════════ */
.section {
    padding: var(--section-pad);
    position: relative;
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

.split-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
}

.section-tag {
    font-family: var(--ff-mono);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-light);
    margin-bottom: 1rem;
    font-weight: 600;
}
    .section-tag span {
    }

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.02em;
}

    .section-title em {
        font-style: italic;
        color: var(--emerald);
    }

.section-subtitle {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 2.3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.02em;
}

    .section-subtitle em {
        font-style: italic;
        color: var(--emerald);
    }

.section-lead {
    font-size: 1.05rem;
    color: var(--ink-mid);
    font-weight: 500;
    line-height: 1.7;
    max-width: 480px;
    align-self: end;
}

/* ════════════════════════════════════════════════════════════
   PROCESS SECTION
════════════════════════════════════════════════════════════ */
.process-section {
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
    margin-top: 5rem;
}

.process-connector {
    font-size: 2rem;
    color: var(--emerald);
    opacity: 0.4;
    margin: 5rem 1rem 0;
    align-self: start;
    font-weight: 500;
}

.process-content {
    display: flex;
    gap: 3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process-step {
}

.process-num {
    font-family: var(--ff-mono);
    font-size: 1.2rem;
    color: var(--emerald);
    letter-spacing: 0.1em;
}

.process-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border: 1px solid var(--border-mid);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

    .process-icon svg {
        width: 20px;
        height: 20px;
    }

.process-label {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.process-desc {
    font-size: 0.9rem;
    color: var(--ink-mid);
    line-height: 1.6;
    font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════════════════ */
.features-section {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.feature-card {
    background: var(--cream);
    padding: 2.25rem 2rem;
    transition: background 0.25s;
    position: relative;
}

    .feature-card:hover {
        background: var(--cream-dark);
    }

.feature-card-highlight {
    background: var(--emerald);
}

    .feature-card-highlight:hover {
        background: #1d7a55;
    }

    .feature-card-highlight .feature-title,
    .feature-card-highlight .feature-body,
    .feature-card-highlight .feature-list li {
        color: rgba(245, 240, 232, 0.9) !important;
    }

    .feature-card-highlight .feature-num {
        color: rgba(245, 240, 232, 0.15) !important;
    }

    .feature-card-highlight .feature-icon {
        background: rgba(245, 240, 232, 0.12);
        border-color: rgba(245, 240, 232, 0.2);
        color: var(--cream);
    }

    .feature-card-highlight .feature-list li::before {
        color: rgba(245, 240, 232, 0.5) !important;
    }

.feature-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.feature-num {
    font-family: var(--ff-mono);
    font-size: 1.5rem;
    color: var(--ink-light);
    letter-spacing: 0.08em;
}

    .feature-num06 span{
        color: rgba(0,0,0,0.6);
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        border: 1px solid var(--border);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

.feature-title {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.feature-body {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-mid);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .feature-list li {
        font-size: .9rem;
        color: var(--ink-mid);
        padding: 0.45rem 0;
        border-top: 1px solid var(--border);
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        line-height: 1.4;
    }

        .feature-list li::before {
            content: '—';
            color: var(--emerald);
            font-family: var(--ff-mono);
            flex-shrink: 0;
            margin-top: 0.05em;
        }

/* ════════════════════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════════════════════ */
.benefits-section {
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.benefits-left .section-title {
    margin-bottom: 2.5rem;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

    .benefit-item:first-child {
        border-top: 1px solid var(--border);
    }

.benefit-marker {
    font-family: var(--ff-mono);
    font-size: 0.65rem;
    color: var(--emerald);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    margin-top: 0.3em;
}

.benefit-text strong {
    display: block;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.benefit-text span {
    font-size: 0.875rem;
    color: var(--ink-mid);
    line-height: 1.6;
}

/* Stats panel */
.stats-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-mid);
    border: 1px solid var(--border-mid);
    border-radius: 6px;
    overflow: hidden;
}

.stat-box {
    background: var(--cream);
    padding: 2.5rem 2rem;
    text-align: left;
}

.stat-num {
    font-family: var(--ff-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    color: var(--ink-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   INTEGRATION BAND
════════════════════════════════════════════════════════════ */
.integration-band {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 10vw;
}

.integration-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.integration-label {
    font-family: var(--ff-mono);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-light);
}

.integration-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
}

.integration-pip {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.integration-name {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: .4rem;
}

.integration-sub {
    font-family: var(--ff-mono);
    font-size: 1rem;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ════════════════════════════════════════════════════════════
   AUDIENCE
════════════════════════════════════════════════════════════ */
.audience-section {
    background: var(--cream);
}

    .audience-section .section-title {
        margin-bottom: 1rem;
    }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 3rem;
}

.audience-card {
    background: var(--cream);
    padding: 2rem 1.5rem;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

    .audience-card:hover {
        background: var(--cream-dark);
    }

.audience-icon-wrap {
    width: 40px;
    height: 40px;
    border: 1px solid var(--ink-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

    .audience-icon-wrap svg {
        width: 18px;
        height: 18px;
    }

.audience-label {
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   CTA
════════════════════════════════════════════════════════════ */
.cta-section {
    background: var(--ink);
    padding: var(--section-pad);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.cta-tag {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald);
    margin-bottom: 1.25rem;
}

#last-cta-tag {
    color: #000;
    font-size: .9rem;
    font-weight: 600;
}

.cta-title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--cream);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

    .cta-title em {
        font-style: italic;
        color: var(--emerald);
    }

.cta-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(245, 240, 232, 0.65);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.cta-section .btn-primary {
    background: var(--cream);
    color: var(--ink);
}

    .cta-section .btn-primary:hover {
        background: var(--emerald);
        color: var(--cream);
        box-shadow: 0 6px 20px rgba(27, 107, 74, 0.35);
    }

.cta-section .btn-outline {
    border-color: rgba(245, 240, 232, 0.2);
    color: var(--cream);
}

    .cta-section .btn-outline:hover {
        border-color: var(--emerald);
        background: var(--emerald-mid);
        color: var(--cream);
    }

/* Decorative doc illustration */
.cta-decoration {
    position: relative;
    width: 560px;
    flex-shrink: 0;
    opacity: 0.32;

}

.cta-doc {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--cream);
    border-radius: 4px;
}

.cta-doc-line {
    height: 4px;
    background: var(--cream);
    border-radius: 1px;
}

    .cta-doc-line.short {
        width: 70%;
    }

    .cta-doc-line.shorter {
        width: 45%;
    }

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

.divisor {
    margin: 4rem 0;
}
/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-doc {
        display: none;
    }

    .split-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-lead {
        max-width: 100%;
    }

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

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .process-connector {
        display: none;
    }

    .cta-section {
        grid-template-columns: 1fr;
    }

    .cta-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: var(--section-pad-sm);
    }

    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .integration-inner {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

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

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

    .divider-band {
        padding: 0.9rem 1.5rem;
    }
}

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

    .doc-row {
        grid-template-columns: 1fr;
    }
}
