/* ==============================================
   FACTURACR — Landing Page Styles
   ============================================== */

/* ---------- Custom Properties ---------- */
:root {
    --primary: #1d4ed8;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #7c3aed;
    --dark: #0f172a;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --bg-alt: #f1f5f9;
    --bg-white: #ffffff;
    --success: #16a34a;
    --cyan: #0891b2;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    padding: .3rem .9rem;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -.02em;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 1rem auto 0;
    line-height: 1.65;
}

/* ---------- Navbar ---------- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
    padding: .75rem 0;
}
.site-nav.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.site-nav .container { display: flex; align-items: center; gap: 2rem; }
.site-nav .brand { font-size: 1.3rem; font-weight: 800; color: var(--dark); display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.site-nav .brand span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; flex: 1; }
.nav-links a { padding: .45rem .8rem; font-size: .9rem; font-weight: 500; color: var(--text-muted); border-radius: 8px; transition: color var(--transition), background var(--transition); }
.nav-links a:hover { color: var(--dark); background: var(--bg-alt); }
.nav-actions { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.25rem; border-radius: 8px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all var(--transition); border: none; line-height: 1; }
.btn-ghost { color: var(--text); background: transparent; }
.btn-ghost:hover { background: var(--bg-alt); color: var(--dark); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(29,78,216,.3); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 16px rgba(29,78,216,.4); transform: translateY(-1px); color: #fff; }
.btn-secondary { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: .8rem 2rem; font-size: 1rem; border-radius: 10px; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.05rem; border-radius: 12px; }
.btn-success { background: var(--success); color: #fff; box-shadow: 0 2px 8px rgba(22,163,74,.3); }
.btn-success:hover { background: #15803d; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(22,163,74,.4); color: #fff; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; border-radius: 8px; }
.nav-toggle:hover { background: var(--bg-alt); }
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: all .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e1b4b 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99,102,241,.2) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: #93c5fd;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 1.5rem;
}
.hero-badge i { color: #4ade80; }
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,.7); max-width: 550px; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { }
.hero-stat .num { font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .25rem; }
.hero-visual { position: relative; z-index: 2; }
.dashboard-mockup {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}
.mockup-bar { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.mockup-card {
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.07);
}
.mockup-card .mc-label { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .05em; }
.mockup-card .mc-val { font-size: 1.4rem; font-weight: 800; color: #fff; margin-top: .25rem; }
.mockup-card .mc-sub { font-size: .75rem; color: #4ade80; margin-top: .15rem; }
.mockup-chart { background: rgba(255,255,255,.05); border-radius: 10px; padding: 1rem; height: 90px; display: flex; align-items: flex-end; gap: .35rem; border: 1px solid rgba(255,255,255,.07); }
.chart-bar { flex: 1; background: linear-gradient(to top, #3b82f6, #818cf8); border-radius: 4px 4px 0 0; transition: height .3s; }
.mockup-list { margin-top: 1rem; }
.mockup-row { display: flex; justify-content: space-between; align-items: center; padding: .6rem .8rem; background: rgba(255,255,255,.04); border-radius: 8px; margin-bottom: .5rem; border: 1px solid rgba(255,255,255,.05); }
.mockup-row .mr-name { font-size: .8rem; color: rgba(255,255,255,.7); }
.mockup-row .mr-badge { font-size: .65rem; padding: .2rem .6rem; border-radius: 50px; font-weight: 600; }
.badge-green { background: rgba(74,222,128,.15); color: #4ade80; }
.badge-blue { background: rgba(96,165,250,.15); color: #60a5fa; }
.badge-yellow { background: rgba(250,204,21,.15); color: #facc15; }

/* ---------- Trust Bar ---------- */
.trust-bar { padding: 2.5rem 0; border-bottom: 1px solid var(--border); background: #fff; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: var(--text-muted); font-size: .9rem; font-weight: 500; }
.trust-item i { font-size: 1.25rem; color: var(--primary); }

/* ---------- Sections Base ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #fff; }
.text-center { text-align: center; }

/* ---------- Features Grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); opacity: 0; transition: opacity var(--transition); }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.1rem; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.feature-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.feature-card ul { list-style: none; margin-top: .75rem; }
.feature-card ul li { font-size: .83rem; color: var(--text-muted); padding: .2rem 0; display: flex; gap: .5rem; }
.feature-card ul li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* Icon colors */
.ic-blue { background: #eff6ff; color: #2563eb; }
.ic-violet { background: #f5f3ff; color: #7c3aed; }
.ic-green { background: #f0fdf4; color: #16a34a; }
.ic-cyan { background: #ecfeff; color: #0891b2; }
.ic-orange { background: #fff7ed; color: #ea580c; }
.ic-pink { background: #fdf2f8; color: #db2777; }
.ic-yellow { background: #fefce8; color: #ca8a04; }
.ic-red { background: #fef2f2; color: #dc2626; }

/* ---------- Hacienda Highlight ---------- */
.hacienda-section { background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%); border-top: 1px solid #dbeafe; border-bottom: 1px solid #dbeafe; }
.hacienda-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1.5px solid #93c5fd;
    color: var(--primary);
    padding: .5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    box-shadow: 0 2px 12px rgba(29,78,216,.1);
}
.doc-types { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.5rem 0; }
.doc-tag {
    background: #fff;
    border: 1px solid #dbeafe;
    color: var(--primary);
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.process-steps { display: flex; gap: 1.5rem; align-items: flex-start; margin-top: 2rem; flex-wrap: wrap; }
.process-step { flex: 1; min-width: 160px; text-align: center; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step-label { font-size: .9rem; font-weight: 600; color: var(--dark); }
.step-desc { font-size: .8rem; color: var(--text-muted); margin-top: .35rem; }
.process-arrow { color: var(--border); font-size: 1.5rem; align-self: center; margin-top: -1rem; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; align-items: start; }
.pricing-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(29,78,216,.08), var(--shadow);
}
.pricing-card.featured:hover { box-shadow: 0 0 0 4px rgba(29,78,216,.12), var(--shadow-lg); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: .75rem; font-weight: 700; padding: .3rem 1rem; border-radius: 50px; white-space: nowrap; }
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.plan-desc { font-size: .85rem; color: var(--text-muted); margin-top: .35rem; }
.plan-price { margin: 1.5rem 0; }
.plan-price .amount { font-size: 2.5rem; font-weight: 900; color: var(--dark); line-height: 1; }
.plan-price .currency { font-size: 1.2rem; font-weight: 700; color: var(--text-muted); vertical-align: top; margin-top: .35rem; display: inline-block; }
.plan-price .period { font-size: .85rem; color: var(--text-muted); margin-top: .25rem; }
.plan-features { list-style: none; margin: 1.5rem 0; }
.plan-features li { display: flex; gap: .65rem; align-items: flex-start; padding: .45rem 0; font-size: .88rem; color: var(--text); border-bottom: 1px solid #f8fafc; }
.plan-features li i.fa-check { color: var(--success); flex-shrink: 0; margin-top: .15rem; }
.plan-features li i.fa-times { color: #cbd5e1; flex-shrink: 0; margin-top: .15rem; }
.plan-features li.disabled { color: var(--text-muted); }
.plan-cta { width: 100%; text-align: center; padding: .75rem; border-radius: 10px; font-size: .95rem; font-weight: 700; margin-top: 1.5rem; }

/* ---------- How it works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; position: relative; }
.step-card { text-align: center; padding: 1.5rem; }
.step-icon { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: #fff; margin: 0 auto 1.25rem; box-shadow: 0 8px 24px rgba(29,78,216,.25); }
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.step-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.testimonial-card .stars { color: #f59e0b; font-size: .9rem; margin-bottom: 1rem; }
.testimonial-card .quote { font-size: .92rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-card .author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; color: #fff; flex-shrink: 0; }
.author-name { font-size: .88rem; font-weight: 700; color: var(--dark); }
.author-role { font-size: .78rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 3rem auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: #fff; padding: 1.1rem 1.5rem; font-size: .95rem; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; border: none; transition: background var(--transition); }
.faq-question:hover { background: #fafafa; }
.faq-question i { color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-answer.open { max-height: 500px; padding: 0 1.5rem 1.1rem; }
.faq-answer p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- CTA Banner ---------- */
.cta-banner { background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%); padding: 5rem 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.cta-banner .btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.cta-banner .btn-white:hover { background: #f0f9ff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .brand-name { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.footer-brand .brand-name span { color: #60a5fa; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-brand .social-links { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: .9rem; transition: all var(--transition); }
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-col h4 { font-size: .85rem; font-weight: 700; color: #fff; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 1rem; }
.footer-bottom p { font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Contact Form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-detail-icon { width: 44px; height: 44px; background: #eff6ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-text .label { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.contact-detail-text .value { font-size: .95rem; font-weight: 600; color: var(--dark); margin-top: .15rem; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; }
.form-control { width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: .9rem; color: var(--dark); font-family: var(--font); transition: border-color var(--transition), box-shadow var(--transition); background: #fff; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(29,78,216,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Registro Page ---------- */
.registro-card { max-width: 540px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.registro-header { text-align: center; margin-bottom: 2rem; }
.registro-header h1 { font-size: 1.75rem; font-weight: 800; color: var(--dark); }
.registro-header p { font-size: .9rem; color: var(--text-muted); margin-top: .5rem; }

/* ---------- Animations ---------- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity .6s ease, transform .6s ease; }
.fade-left.visible { opacity: 1; transform: none; }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-right.visible { opacity: 1; transform: none; }
[data-delay="100"] { transition-delay: .1s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }
[data-delay="400"] { transition-delay: .4s; }
[data-delay="500"] { transition-delay: .5s; }

/* ---------- Contabilidad Section ---------- */
.contabilidad-section { background: linear-gradient(180deg, #faf5ff 0%, #ede9fe 40%, #f5f3ff 100%); border-top: 1px solid #ddd6fe; border-bottom: 1px solid #ddd6fe; }

/* Highlight cards */
.conta-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin: 3rem 0; }
.conta-card { background: #fff; border: 1px solid #e9d5ff; border-radius: var(--radius); padding: 1.5rem; transition: box-shadow var(--transition), transform var(--transition); }
.conta-card:hover { box-shadow: 0 8px 30px rgba(124,58,237,.12); transform: translateY(-3px); }
.conta-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #7c3aed, #a78bfa); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; margin-bottom: 1rem; }
.conta-card h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .45rem; }
.conta-card p { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

/* Split layout */
.conta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; margin-top: 1rem; }
.conta-reports-title { font-size: 1.25rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }

/* Report list */
.report-list { display: flex; flex-direction: column; gap: .75rem; }
.report-item { display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid #e9d5ff; border-radius: 10px; padding: .85rem 1rem; transition: box-shadow var(--transition); }
.report-item:hover { box-shadow: 0 4px 16px rgba(124,58,237,.1); }
.report-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.ri-blue { background: #eff6ff; color: #2563eb; }
.ri-green { background: #f0fdf4; color: #16a34a; }
.ri-cyan { background: #ecfeff; color: #0891b2; }
.ri-violet { background: #f5f3ff; color: #7c3aed; }
.ri-orange { background: #fff7ed; color: #ea580c; }
.ri-red { background: #fef2f2; color: #dc2626; }
.report-name { font-size: .88rem; font-weight: 700; color: var(--dark); }
.report-desc { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }
.report-badge { margin-left: auto; font-size: .7rem; font-weight: 700; background: #f5f3ff; color: #7c3aed; border: 1px solid #ddd6fe; padding: .25rem .65rem; border-radius: 50px; white-space: nowrap; flex-shrink: 0; }

/* Financial mockup */
.conta-mockup { display: flex; flex-direction: column; gap: 1.25rem; }
.fin-report-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 1.75rem; box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.fin-report-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid #f1f5f9; }
.fin-report-title { font-size: 1rem; font-weight: 800; color: var(--dark); }
.fin-report-period { font-size: .78rem; color: var(--text-muted); margin-top: .2rem; }
.fin-report-badge-live { display: flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 700; background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; padding: .3rem .75rem; border-radius: 50px; }
.fin-report-badge-live i { font-size: .5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.fin-section-label { font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); margin: .75rem 0 .4rem; }
.fin-row { display: flex; justify-content: space-between; padding: .35rem 0; font-size: .875rem; color: var(--text); border-bottom: 1px solid #f8fafc; }
.fin-row:last-of-type { border-bottom: none; }
.fin-subtotal { font-weight: 600; border-top: 1px solid var(--border) !important; margin-top: .25rem; padding-top: .5rem !important; }
.fin-total { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(90deg, #f5f3ff, #ede9fe); border-radius: 8px; padding: .75rem 1rem !important; margin-top: 1rem; font-size: .9rem; font-weight: 800; color: var(--dark); border: none !important; }
.fin-amount { font-variant-numeric: tabular-nums; }
.fin-amount.pos { color: var(--dark); }
.fin-amount.neg { color: var(--text-muted); }
.fin-amount.fw { font-weight: 700; }
.fin-amount-total { font-size: 1.05rem; font-weight: 900; color: #7c3aed; }
.fin-margin-bar { margin-top: .75rem; background: #f1f5f9; border-radius: 50px; height: 6px; position: relative; overflow: hidden; display: flex; align-items: center; gap: .65rem; }
.fin-margin-bar span { font-size: .75rem; color: var(--text-muted); white-space: nowrap; position: absolute; left: 0; top: 10px; }
.fin-margin-fill { height: 100%; background: linear-gradient(90deg, #7c3aed, #a78bfa); border-radius: 50px; }
.fin-margin-bar { background: #f1f5f9; border-radius: 6px; height: 8px; margin-top: 1rem; overflow: hidden; }
.fin-margin-bar-wrap { margin-top: .75rem; }
.fin-margin-bar-wrap .label { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-muted); margin-bottom: .35rem; }

/* Integrations grid */
.conta-integrations { background: var(--dark); border-radius: 14px; padding: 1.25rem 1.5rem; }
.ci-title { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.ci-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
.ci-item { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: .6rem .75rem; font-size: .8rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: .5rem; font-weight: 500; }
.ci-item i { color: #a78bfa; font-size: .85rem; }
.ci-item:hover { background: rgba(167,139,250,.15); border-color: rgba(167,139,250,.3); color: #fff; }

/* Responsive */
@media (max-width: 1024px) { .conta-highlights { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .conta-highlights { grid-template-columns: 1fr; }
    .conta-split { grid-template-columns: 1fr; }
}

/* ---------- Utilities ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.align-center { align-items: center; } .justify-center { justify-content: center; } .justify-between { justify-content: space-between; }
.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: #fff !important; }
.fw-bold { font-weight: 700; }
.w-100 { width: 100%; }
.alert { padding: 1rem 1.25rem; border-radius: 10px; font-size: .9rem; margin-bottom: 1rem; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-danger { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: block; }
    .site-nav.menu-open .nav-links,
    .site-nav.menu-open .nav-actions { display: flex; }
    .site-nav.menu-open { flex-wrap: wrap; padding-bottom: 1rem; }
    .site-nav.menu-open .nav-links { flex-direction: column; width: 100%; border-top: 1px solid var(--border); padding-top: .75rem; }
    .site-nav.menu-open .nav-actions { flex-direction: column; width: 100%; }
    .site-nav.menu-open .btn { width: 100%; justify-content: center; }
    .hero { padding: 6rem 0 3rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 1.5rem; }
    .trust-items { gap: 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .process-steps { flex-direction: column; align-items: center; }
    .process-arrow { transform: rotate(90deg); }
    .form-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    z-index: 9999;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,.6);
    color: #fff;
}
.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--dark);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: .35rem .75rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--dark);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
