/* ============================================
   RADAR FISCAL — Spectacular Landing
   Apple-level polish + GSAP-driven experience
   ============================================ */

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

:root {
    --white: #FAFAFA;
    --black: #0A0A0A;
    --g50: #F5F5F7;
    --g100: #E8E8ED;
    --g200: #D2D2D7;
    --g300: #B0B0B6;
    --g400: #86868B;
    --g500: #6E6E73;
    --g600: #48484A;
    --g700: #2C2C2E;
    --g800: #1C1C1E;
    --g900: #141414;
    --accent: #2563EB;
    --accent2: #7C3AED;
    --green: #34C759;
    --blue: #007AFF;
    --purple: #AF52DE;
    --amber: #FF9F0A;
    --red: #FF3B30;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ======================== NAV ======================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 32px;
    border-bottom: 1px solid transparent;
    transition: all 0.4s;
}
.nav.scrolled {
    background: rgba(250,250,250,0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: rgba(0,0,0,0.06);
}
.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.nav-logo {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.03em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--g500);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 7px 18px !important;
    border-radius: 980px;
    font-size: 13px !important;
    transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.8; }

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-mobile-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--black);
    transition: transform 0.3s;
}
.nav-mobile-toggle.active span:first-child { transform: rotate(45deg) translate(2.5px, 2.5px); }
.nav-mobile-toggle.active span:last-child { transform: rotate(-45deg) translate(2.5px, -2.5px); }

.mobile-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(250,250,250,0.96);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s var(--ease), opacity 0.3s;
}
.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu a { font-size: 17px; font-weight: 500; color: var(--g600); }

/* ======================== SECTION EYEBROW ======================== */
.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 20px;
}
.section-eyebrow--light { color: var(--g400); }

/* ======================== HERO ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
    color: white;
}

/* --- Radar Animation --- */
.radar {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}
.radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    inset: 0;
    margin: auto;
}
.radar-ring--1 { width: min(300px, 50vw); height: min(300px, 50vw); }
.radar-ring--2 { width: min(500px, 75vw); height: min(500px, 75vw); }
.radar-ring--3 { width: min(700px, 95vw); height: min(700px, 95vw); }

.radar-cross {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(700px, 95vw);
    height: min(700px, 95vw);
}
.radar-cross::before,
.radar-cross::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.2);
}
.radar-cross::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
}
.radar-cross::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
}

.radar-sweep {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(700px, 95vw);
    height: min(700px, 95vw);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(37,99,235,0.5) 0deg,
        rgba(37,99,235,0.15) 40deg,
        transparent 80deg,
        transparent 360deg
    );
    animation: radar-spin 4s linear infinite;
}
@keyframes radar-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-blip {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent), 0 0 6px var(--accent);
    opacity: 0;
    animation: blip-pulse 4s ease-in-out infinite;
}
.radar-blip--1 {
    top: 30%;
    left: 40%;
    animation-delay: 0s;
}
.radar-blip--2 {
    top: 55%;
    left: 65%;
    animation-delay: 1.3s;
}
.radar-blip--3 {
    top: 38%;
    left: 58%;
    animation-delay: 2.6s;
}
@keyframes blip-pulse {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    15% { opacity: 1; transform: scale(1.3); }
    30% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0; transform: scale(0.5); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 18px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    opacity: 0;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 32px;
}

.hero-word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.hero-word {
    display: inline-block;
    transform: translateY(120%);
    line-height: 1.15;
    padding-bottom: 0.05em;
}

.hero-word--gradient {
    background: linear-gradient(135deg, #60A5FA, #A78BFA, #F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 48px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--black);
    padding: 14px 32px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.3s, color 0.3s;
}
.btn-hero-ghost:hover {
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}
.hero-scroll-mouse {
    width: 26px;
    height: 42px;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.6);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero-scroll-wheel {
    width: 3px;
    height: 8px;
    border-radius: 3px;
    background: rgba(255,255,255,0.8);
    animation: scrollWheel 2s ease-in-out infinite;
}
.hero-scroll-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ======================== MEGA STATS ======================== */
.mega-stats {
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.mega-stats-inner {
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
}
.mega-stat {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    will-change: transform, opacity;
}
.mega-stat-number {
    display: block;
    font-size: clamp(80px, 16vw, 200px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    color: var(--black);
    white-space: nowrap;
}
/* SplitText chars need inline-block for transforms */
.mega-stat-number div,
.mega-stat-number span:not(.mega-stat-plus),
.mega-stat-label div {
    display: inline-block;
}
.mega-stat-plus {
    color: var(--accent);
}
.mega-stat-label {
    display: block;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--g400);
    font-weight: 400;
    margin-top: 12px;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* ======================== PROBLEM GIANT TEXT ======================== */
.problem-section {
    background: var(--g50);
}

.problem-giant {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    gap: 32px;
}
.problem-giant--alt {
    background: var(--white);
}
.problem-giant-label {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--g300);
    opacity: 0;
}
.problem-giant-text {
    max-width: 900px;
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-align: center;
}
.pg-word {
    display: inline-block;
    opacity: 0.15;
    transition: opacity 0.3s;
    margin-right: 0.3em;
}
.pg-word--red { color: var(--red); }

.problem-solution {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    padding: 80px 32px;
}
.ps-container { text-align: center; }
.ps-line {
    overflow: hidden;
    font-size: clamp(44px, 7vw, 96px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: white;
}
.ps-line span {
    display: inline-block;
    transform: translateY(110%);
}
.ps-gradient {
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ======================== FEATURES ======================== */
.features {
    padding: 160px 0 0;
    background: var(--white);
}
.features-header {
    text-align: center;
    padding: 0 32px;
    margin-bottom: 80px;
}
.features-title {
    font-size: clamp(44px, 6.5vw, 80px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}
.ft-word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 6px;
}
.ft-word {
    display: inline-block;
    transform: translateY(110%);
}

/* Feature panels — stacked cards */
.feature-panels {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 120px;
}

.feature-panel {
    border-radius: 28px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
}
.fp-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 64px;
    align-items: center;
    background: var(--g50);
}
.fp-inner--dark {
    background: var(--g900);
    color: white;
}
.fp-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--g300);
    margin-bottom: 16px;
    display: block;
}
.fp-inner--dark .fp-number { color: var(--g500); }
.fp-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}
.fp-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--g500);
    margin-bottom: 28px;
}
.fp-inner--dark .fp-desc { color: var(--g300); }

.fp-highlights {
    display: flex;
    gap: 32px;
}
.fp-highlight-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.fp-highlight-label {
    font-size: 13px;
    color: var(--g400);
}
.fp-inner--dark .fp-highlight-label { color: var(--g500); }

.fp-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Sync Animation --- */
.sync-anim {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}
.sync-orb {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.05em;
}
.sync-orb--sat {
    background: var(--g900);
    color: white;
    box-shadow: 0 0 60px rgba(10,10,10,0.3);
}
.sync-orb--odoo {
    background: linear-gradient(135deg, #714B67, #9B59B6);
    color: white;
    box-shadow: 0 0 60px rgba(113,75,103,0.3);
}
.sync-particles {
    display: flex;
    gap: 12px;
    align-items: center;
}
.sync-particle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    animation: particleFlow 2s infinite;
}
.sync-particle:nth-child(2) { animation-delay: 0.3s; }
.sync-particle:nth-child(3) { animation-delay: 0.6s; }
.sync-particle:nth-child(4) { animation-delay: 0.9s; }
.sync-particle:nth-child(5) { animation-delay: 1.2s; }
@keyframes particleFlow {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 1; transform: translateY(0) scale(1.2); }
    100% { opacity: 0; transform: translateY(0) scale(0.5); }
}
.sync-count {
    text-align: center;
}
.sync-count-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
}
.sync-count-label {
    font-size: 13px;
    color: var(--g400);
}

/* --- Classify Stack --- */
.classify-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 360px;
}
.cs-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateX(-30px);
}
.cs-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
}
.cs-tag--green { background: rgba(52,199,89,0.15); color: var(--green); }
.cs-tag--blue { background: rgba(0,122,255,0.15); color: var(--blue); }
.cs-tag--purple { background: rgba(175,82,222,0.15); color: var(--purple); }
.cs-tag--amber { background: rgba(255,159,10,0.15); color: var(--amber); }
.cs-tag--red { background: rgba(255,59,48,0.15); color: var(--red); }
.cs-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}
.cs-id { font-size: 12px; color: var(--g400); font-family: monospace; }
.cs-amount { font-size: 15px; font-weight: 700; }

/* --- Tax Calc --- */
.tax-calc {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--g100);
    width: 100%;
    max-width: 380px;
}
.tc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}
.tc-label { font-size: 14px; color: var(--g500); font-weight: 500; }
.tc-val { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.tc-val--green { color: var(--green); }
.tc-val--blue { color: var(--blue); }
.tc-val--purple { color: var(--purple); }
.tc-divider { height: 1px; background: var(--g100); margin: 4px 0; }
.tc-row--total { padding-top: 16px; }
.tc-row--total .tc-label { font-size: 16px; font-weight: 700; color: var(--black); }
.tc-val--total { font-size: 28px; color: var(--black); }
.tc-badge {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: rgba(52,199,89,0.08);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}

/* --- Declaration Visual --- */
.decl-visual {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}
.decl-header {
    padding: 14px 24px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
    font-weight: 600;
    color: var(--g400);
    display: flex;
    align-items: center;
    gap: 10px;
}
.decl-header-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}
.decl-row {
    display: flex;
    justify-content: space-between;
    padding: 13px 24px;
    font-size: 13px;
    color: var(--g400);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.decl-row span:last-child { font-weight: 600; color: white; }
.decl-row:last-child { border: none; }
.decl-row--total {
    background: rgba(37,99,235,0.08);
    padding: 16px 24px;
}
.decl-row--total span:first-child { font-weight: 700; color: white; }
.decl-row--total span:last-child { font-size: 18px; color: var(--accent); }

/* --- Buzon Visual --- */
.buzon-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}
.buzon-msg {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--g100);
}
.buzon-msg--critical { border-color: rgba(255,59,48,0.2); }
.buzon-priority {
    width: 4px;
    height: 36px;
    border-radius: 2px;
    flex-shrink: 0;
}
.buzon-priority--critical { background: var(--red); }
.buzon-priority--high { background: var(--amber); }
.buzon-priority--medium { background: var(--blue); }
.buzon-msg-content { flex: 1; }
.buzon-msg-title { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.buzon-msg-date { font-size: 12px; color: var(--g400); }
.buzon-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
}
.buzon-badge--critical { background: rgba(255,59,48,0.1); color: var(--red); }
.buzon-badge--high { background: rgba(255,159,10,0.1); color: var(--amber); }
.buzon-badge--medium { background: rgba(0,122,255,0.1); color: var(--blue); }

/* --- Link Visual --- */
.link-visual {
    display: flex;
    align-items: center;
    gap: 20px;
}
.link-cfdi, .link-invoice {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 160px;
}
.link-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--g400);
    margin-bottom: 8px;
}
.link-id { display: block; font-size: 12px; font-family: monospace; color: var(--g300); margin-bottom: 4px; }
.link-vendor { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.link-total { display: block; font-size: 16px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.link-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--accent);
}
.link-arrow span { font-size: 11px; font-weight: 700; }

/* ======================== DASHBOARDS ======================== */
.dashboards {
    padding: 160px 0;
    background: var(--g50);
}
.dashboards-header {
    text-align: center;
    padding: 0 32px;
    margin-bottom: 80px;
}
.dash-giant-title {
    font-size: clamp(44px, 6.5vw, 80px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}
.dgt-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 6px;
}
.dgt-word {
    display: inline-block;
    transform: translateY(110%);
}
.dash-subtitle {
    font-size: 18px;
    color: var(--g400);
    opacity: 0;
}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}
.dash-card {
    background: white;
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid var(--g100);
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.dash-card:hover {
    transform: translateY(-4px) scale(1);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.08);
}
.dash-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.dash-card-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--g300);
    letter-spacing: 0.05em;
}
.dash-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dash-card-dot--green { background: var(--green); }
.dash-card-dot--blue { background: var(--blue); }
.dash-card-dot--purple { background: var(--purple); }
.dash-card-dot--amber { background: var(--amber); }
.dash-card h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.dash-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--g500);
    margin-bottom: 20px;
}
.dash-card-role {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* --- Dashboard Apple-style mock windows --- */
.dash-mock {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--g900);
    border: 1px solid rgba(255,255,255,0.06);
}
.dash-mock-bar {
    display: flex;
    gap: 5px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dm-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.dm-dot:nth-child(1) { background: #FF5F57; }
.dm-dot:nth-child(2) { background: #FEBC2E; }
.dm-dot:nth-child(3) { background: #28C840; }
.dash-mock-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px;
}
.dm-row--accent {
    background: rgba(37, 99, 235, 0.12);
}
.dm-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--g300);
    letter-spacing: 0;
}
.dm-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.dm-val--green {
    color: var(--green);
}

/* ======================== MORE FEATURES ======================== */
.more-features {
    padding: 160px 0;
    background: var(--white);
}
.mf-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}
.mf-title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 64px;
}
.mft-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 4px;
}
.mft-word {
    display: inline-block;
    transform: translateY(110%);
}
.mf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mf-item {
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid var(--g100);
    opacity: 0;
    transform: translateY(24px);
    transition: transform 0.4s var(--ease), border-color 0.3s;
}
.mf-item:hover {
    transform: translateY(-2px);
    border-color: var(--g200);
}
.mf-item h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.mf-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--g500);
}

/* ======================== ENTERPRISE ======================== */
.enterprise {
    padding: 180px 0;
    background: var(--black);
    color: white;
    position: relative;
    overflow: hidden;
}
.enterprise-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 60%, rgba(37,99,235,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 40%, rgba(124,58,237,0.08) 0%, transparent 70%);
}
.enterprise-content {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.enterprise-title {
    font-size: clamp(44px, 6.5vw, 80px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 64px;
}
.et-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 6px;
}
.et-word {
    display: inline-block;
    transform: translateY(110%);
}
.et-word--gradient {
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enterprise-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--g400);
    max-width: 600px;
    margin: 0 auto 64px;
    opacity: 0;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}
.ent-card {
    padding: 40px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.96);
}
.ent-card-number {
    display: block;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, white, var(--g300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ent-card-label {
    font-size: 14px;
    color: var(--g400);
    line-height: 1.5;
}

.enterprise-odoo-badge {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}
.eob-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px 16px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
}
.eob-icon { width: 40px; height: 40px; flex-shrink: 0; }
.eob-text { text-align: left; }
.eob-title { display: block; font-size: 15px; font-weight: 700; }
.eob-desc { font-size: 13px; color: var(--g400); }

/* ======================== CTA ======================== */
.cta {
    padding: 200px 0 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.cta::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
}
.cta-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}
.cta-title {
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 28px;
}
.cta-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 6px;
}
.cta-word {
    display: inline-block;
    transform: translateY(110%);
}
.cta-word--gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-sub {
    font-size: 18px;
    color: var(--g400);
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: white;
    padding: 18px 40px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    opacity: 0;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.cta-footer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    font-size: 13px;
    color: var(--g400);
    font-weight: 500;
    opacity: 0;
}
.cta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--g200);
}

/* ======================== SECURITY ======================== */
.security {
    padding: 120px 0;
    background: var(--g900);
    color: white;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.security-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.security-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--g400);
    margin-bottom: 20px;
}
.security-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 64px;
}
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
    margin-bottom: 64px;
}
.security-card {
    padding: 32px 24px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.3s, background 0.3s;
}
.security-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}
.security-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--g300);
}
.security-card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: white;
}
.security-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--g400);
}
.security-tagline {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--g500);
}

/* ======================== FOOTER ======================== */
.footer {
    padding: 32px 0;
    background: var(--g900);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo { font-weight: 700; font-size: 14px; letter-spacing: -0.02em; color: var(--g300); }
.footer-copy { font-size: 13px; color: var(--g500); }
.footer-link { color: var(--g400); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--accent); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .fp-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 36px; }
    .dashboard-cards { grid-template-columns: repeat(2, 1fr); }
    .enterprise-grid { grid-template-columns: repeat(2, 1fr); }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .link-visual { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .hero-title { font-size: clamp(44px, 12vw, 70px); }
    .dashboard-cards { grid-template-columns: 1fr; }
    .mf-grid { grid-template-columns: 1fr; }
    .enterprise-grid { grid-template-columns: 1fr; }
    .fp-inner { padding: 36px 24px; }
    .fp-title { font-size: 28px; }
    .feature-panels { padding: 0 16px; padding-bottom: 80px; }
    .features { padding-top: 100px; }
    .dashboards { padding: 100px 0; }
    .more-features { padding: 100px 0; }
    .enterprise { padding: 100px 0; }
    .security { padding: 80px 0; }
    .security-grid { grid-template-columns: 1fr; }
    .cta { padding: 120px 0 100px; }
    .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
    .cta-footer-info { flex-direction: column; gap: 8px; }
    .cta-dot { display: none; }
    .classify-stack { max-width: 100%; }
    .tax-calc, .decl-visual, .buzon-visual { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 40px; }
    .mega-stat-number { font-size: 64px; }
    .problem-giant-text { font-size: 24px; }
    .ps-line { font-size: 36px; }
    .fp-highlights { flex-direction: column; gap: 16px; }
    .link-cfdi, .link-invoice { min-width: auto; width: 100%; }
}
