@charset "UTF-8";
/* =================================================================
   APPETENZA CRM - Landing Page Styles
   Colour palette: Indigo #4F46E5 | Purple #7C3AED | Cyan #06B6D4
                   Emerald #10B981 | Dark #0F172A | Slate50 #F8FAFC
   ================================================================= */

/* ── CSS Variables ────────────────────────────────────────────────── */
:root {
    --crm-primary: #4F46E5;
    --crm-primary-hover: #4338CA;
    --crm-secondary: #7C3AED;
    --crm-accent: #06B6D4;
    --crm-success: #10B981;
    --crm-dark: #0F172A;
    --crm-slate-50: #F8FAFC;
    --crm-slate-100: #F1F5F9;
    --crm-slate-300: #CBD5E1;
    --crm-slate-400: #94A3B8;
    --crm-slate-500: #64748B;
    --crm-slate-900: #0F172A;
    --crm-card-bg: #FFFFFF;
    --crm-radius: 12px;
    --crm-radius-lg: 16px;
    --crm-shadow: 0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
    --crm-shadow-md: 0 4px 6px -1px rgba(15,23,42,.08), 0 2px 4px -2px rgba(15,23,42,.04);
    --crm-shadow-lg: 0 10px 15px -3px rgba(15,23,42,.08), 0 4px 6px -4px rgba(15,23,42,.04);
    --crm-font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --crm-font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* ── Base ─────────────────────────────────────────────────────────── */
body {
    font-family: var(--crm-font-body);
    color: var(--crm-slate-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--crm-font-heading);
    font-weight: 700;
    line-height: 1.2;
}
a { color: var(--crm-primary); text-decoration: none; }
a:hover { color: var(--crm-primary-hover); }

/* ── Scroll & Animation ──────────────────────────────────────────── */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Navbar ───────────────────────────────────────────────────────── */
.crm-navbar {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: .75rem 0;
    transition: background .3s, box-shadow .3s;
    z-index: 1050;
}
.crm-navbar.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: var(--crm-shadow-md);
}
.crm-navbar .navbar-brand {
    font-family: var(--crm-font-heading);
    font-size: 1.35rem;
    gap: .35rem;
    display: flex;
    align-items: center;
}
.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--crm-primary), var(--crm-secondary));
    color: #fff;
    border-radius: 8px;
    font-size: .85rem;
    margin-right: .35rem;
}
.text-primary-gradient {
    background: linear-gradient(135deg, var(--crm-primary), var(--crm-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.crm-navbar .nav-link {
    color: var(--crm-slate-500);
    font-weight: 500;
    font-size: .9rem;
    padding: .5rem .75rem;
    transition: color .2s;
}
.crm-navbar .nav-link:hover,
.crm-navbar .nav-link.active { color: var(--crm-primary); }
.nav-cta {
    font-weight: 600;
    font-size: .85rem;
}

/* ── Section Basics ──────────────────────────────────────────────── */
.crm-section {
    padding: 100px 0;
    position: relative;
}
.bg-slate-50 { background: var(--crm-slate-50); }
.section-header { max-width: 700px; margin-left: auto; margin-right: auto; }
.section-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: #EEF2FF;
    color: var(--crm-primary);
    margin-bottom: .5rem;
}
.section-badge.light {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: .75rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--crm-slate-500);
}
.text-slate-300 { color: var(--crm-slate-300); }
.text-slate-400 { color: var(--crm-slate-400); }
.text-slate-500 { color: var(--crm-slate-500); }

/* ── HERO ─────────────────────────────────────────────────────────── */
.crm-hero {
    background: linear-gradient(135deg, var(--crm-dark) 0%, #1E293B 100%);
    padding: 140px 0 100px;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.min-vh-hero { min-height: calc(100vh - 240px); }
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .15;
}
.shape-1 { width: 500px; height: 500px; background: var(--crm-primary); top: -100px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: var(--crm-secondary); bottom: -50px; left: -100px; }
.shape-3 { width: 300px; height: 300px; background: var(--crm-accent); top: 50%; left: 30%; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.1);
    color: var(--crm-accent);
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.1);
}
.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--crm-slate-300);
    margin-bottom: 1rem;
    max-width: 540px;
}
.hero-typing {
    color: var(--crm-slate-400);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.typing-text {
    color: var(--crm-accent);
    font-weight: 600;
}
.typing-cursor {
    animation: blink .7s infinite;
    color: var(--crm-accent);
}
@keyframes blink { 0%,100%{ opacity:1 } 50%{ opacity:0 } }

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero-ctas .btn-primary {
    background: var(--crm-primary);
    border-color: var(--crm-primary);
}
.hero-ctas .btn-primary:hover {
    background: var(--crm-primary-hover);
    border-color: var(--crm-primary-hover);
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--crm-slate-400);
    font-size: .8rem;
    font-weight: 500;
}
.trust-item i { color: var(--crm-accent); }

/* ── Hero Mockup ─────────────────────────────────────────────────── */
.hero-mockup { perspective: 1500px; }
.mockup-browser {
    background: #1E293B;
    border-radius: var(--crm-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.08);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform .4s ease;
}
.mockup-browser:hover { transform: rotateY(0) rotateX(0); }
.mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #0F172A;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }
.mockup-url {
    margin-left: 10px;
    font-size: .65rem;
    color: var(--crm-slate-400);
    background: rgba(255,255,255,.06);
    padding: 3px 10px;
    border-radius: 4px;
    flex: 1;
}
.mockup-body { display: flex; min-height: 280px; }
.mockup-sidebar {
    width: 44px;
    background: rgba(255,255,255,.03);
    border-right: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 8px;
}
.sb-item {
    width: 28px; height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crm-slate-400);
    font-size: .7rem;
}
.sb-item.active {
    background: var(--crm-primary);
    color: #fff;
}
.mockup-content {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mc-title-bar {
    height: 10px;
    width: 120px;
    border-radius: 4px;
    background: rgba(255,255,255,.12);
}
.mc-actions { display: flex; gap: 6px; }
.mc-btn {
    height: 22px;
    width: 50px;
    border-radius: 4px;
    background: rgba(255,255,255,.06);
}
.mc-btn.primary { background: var(--crm-primary); width: 60px; }
.mc-stats { display: flex; gap: 8px; }
.mc-stat-card {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    background: rgba(79,70,229,.1);
    border: 1px solid rgba(79,70,229,.15);
}
.mc-stat-card.accent {
    background: rgba(6,182,212,.1);
    border-color: rgba(6,182,212,.15);
}
.mc-stat-card.success {
    background: rgba(16,185,129,.1);
    border-color: rgba(16,185,129,.15);
}
.mc-stat-num {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
}
.mc-stat-label {
    height: 6px;
    width: 60%;
    border-radius: 3px;
    background: rgba(255,255,255,.1);
    margin-top: 4px;
}
.mc-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    padding: 8px 4px 0;
}
.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--crm-primary), var(--crm-secondary));
    border-radius: 3px 3px 0 0;
    opacity: .7;
    transition: opacity .3s;
}
.chart-bar:hover { opacity: 1; }
.mc-table { display: flex; flex-direction: column; gap: 4px; }
.mc-row {
    height: 10px;
    border-radius: 3px;
    background: rgba(255,255,255,.05);
}
.mc-row:nth-child(2) { width: 85%; }
.mc-row:nth-child(3) { width: 70%; }

/* ── Stats ────────────────────────────────────────────────────────── */
.stat-card {
    padding: 2rem 1rem;
}
.stat-number {
    font-family: var(--crm-font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--crm-primary), var(--crm-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .5rem;
}
.stat-label {
    font-size: .85rem;
    color: var(--crm-slate-500);
    font-weight: 500;
}

/* ── Testimonials ─────────────────────────────────────────────────── */
.testimonial-card {
    background: var(--crm-card-bg);
    border: 1px solid var(--crm-slate-100);
    border-radius: var(--crm-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: box-shadow .3s, transform .3s;
}
.testimonial-card:hover {
    box-shadow: var(--crm-shadow-lg);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: #F59E0B;
    margin-bottom: .75rem;
    font-size: .85rem;
    letter-spacing: 2px;
}
.testimonial-text {
    color: var(--crm-slate-500);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crm-primary), var(--crm-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .8rem; color: var(--crm-slate-400); }

/* ── Features ─────────────────────────────────────────────────────── */
.feature-group-title {
    font-family: var(--crm-font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--crm-slate-100);
}
.feature-card {
    background: var(--crm-card-bg);
    border: 1px solid var(--crm-slate-100);
    border-radius: var(--crm-radius);
    padding: 1.5rem;
    height: 100%;
    transition: box-shadow .3s, transform .3s;
}
.feature-card:hover {
    box-shadow: var(--crm-shadow-md);
    transform: translateY(-3px);
}
.feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .75rem;
    background: #EEF2FF;
    color: var(--crm-primary);
}
.feature-icon.success { background: #ECFDF5; color: var(--crm-success); }
.feature-icon.info { background: #ECFEFF; color: var(--crm-accent); }
.feature-icon.purple { background: #F5F3FF; color: var(--crm-secondary); }
.feature-card h6 {
    font-family: var(--crm-font-heading);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .35rem;
}
.feature-card p {
    font-size: .85rem;
    color: var(--crm-slate-500);
    margin-bottom: 0;
    line-height: 1.55;
}
.text-purple { color: var(--crm-secondary) !important; }

/* ── How It Works ─────────────────────────────────────────────────── */
.step-card { position: relative; padding: 0 1rem; }
.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crm-primary), var(--crm-secondary));
    color: #fff;
    font-family: var(--crm-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 2;
}
.step-connector {
    position: absolute;
    top: 28px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--crm-primary), var(--crm-secondary));
    z-index: 1;
    opacity: .3;
}
.step-icon {
    font-size: 2rem;
    color: var(--crm-primary);
    margin-bottom: .75rem;
}
.step-card h5 {
    font-family: var(--crm-font-heading);
    font-weight: 700;
    margin-bottom: .5rem;
}
.step-card p {
    font-size: .9rem;
    color: var(--crm-slate-500);
}

/* ── Pricing ──────────────────────────────────────────────────────── */
.billing-toggle {
    background: var(--crm-card-bg);
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid var(--crm-slate-100);
}
.toggle-label { font-size: .85rem; font-weight: 500; color: var(--crm-slate-500); }
.toggle-label.active { color: var(--crm-primary); font-weight: 600; }
.save-badge {
    font-size: .7rem;
    font-weight: 600;
    background: #ECFDF5;
    color: var(--crm-success);
    padding: 2px 8px;
    border-radius: 10px;
}
.form-check-input:checked {
    background-color: var(--crm-primary);
    border-color: var(--crm-primary);
}

.pricing-card {
    background: var(--crm-card-bg);
    border: 1px solid var(--crm-slate-100);
    border-radius: var(--crm-radius-lg);
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--crm-shadow-lg);
}
.pricing-card.popular {
    border-color: var(--crm-primary);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(79,70,229,.1);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--crm-primary), var(--crm-secondary));
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
}
.plan-name {
    font-family: var(--crm-font-heading);
    font-weight: 700;
    margin-bottom: .5rem;
}
.plan-price {
    margin-bottom: .25rem;
}
.price-currency {
    font-family: var(--crm-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    vertical-align: top;
}
.price-amount {
    font-family: var(--crm-font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}
.price-period {
    font-size: .8rem;
    color: var(--crm-slate-400);
}
.price-save {
    font-size: .8rem;
    color: var(--crm-slate-400);
    margin-bottom: .25rem;
}
.plan-desc {
    font-size: .8rem;
    color: var(--crm-slate-500);
    margin-bottom: 1rem;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    flex: 1;
}
.plan-features li {
    padding: .4rem 0;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.plan-features li.disabled { color: var(--crm-slate-400); }
.plan-features li i { font-size: .75rem; }
.plan-cta {
    margin-top: 1.5rem;
    font-weight: 600;
}
.pricing-card .btn-primary {
    background: var(--crm-primary);
    border-color: var(--crm-primary);
}
.pricing-card .btn-primary:hover {
    background: var(--crm-primary-hover);
    border-color: var(--crm-primary-hover);
}

.addons-box {
    background: var(--crm-card-bg);
    border: 1px dashed var(--crm-slate-300);
    border-radius: var(--crm-radius);
    padding: 1rem 1.5rem;
    display: inline-block;
}
.addon-item { font-size: .85rem; color: var(--crm-slate-500); }
.addon-divider {
    display: inline-block;
    margin: 0 .75rem;
    color: var(--crm-slate-300);
}

/* ── Comparison Tables ────────────────────────────────────────────── */
.comparison-table {
    font-size: .85rem;
    border-collapse: separate;
    border-spacing: 0;
}
.comparison-table th {
    background: var(--crm-slate-50);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: .75rem 1rem;
}
.comparison-table td {
    padding: .65rem 1rem;
    vertical-align: middle;
}
.comparison-table .highlight {
    background: rgba(79,70,229,.04);
}
.competitor-table .highlight { background: rgba(79,70,229,.06); }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.accordion-item {
    border: 1px solid var(--crm-slate-100);
    border-radius: var(--crm-radius) !important;
    margin-bottom: .75rem;
    overflow: hidden;
}
.accordion-button {
    font-weight: 600;
    font-size: .95rem;
    padding: 1rem 1.25rem;
    color: var(--crm-slate-900);
    background: var(--crm-card-bg);
}
.accordion-button:not(.collapsed) {
    color: var(--crm-primary);
    background: var(--crm-card-bg);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--crm-slate-100); }
.accordion-button::after {
    background-size: 1rem;
}
.accordion-body {
    font-size: .9rem;
    color: var(--crm-slate-500);
    line-height: 1.7;
    padding: 0 1.25rem 1rem;
}

/* ── Blog Cards ───────────────────────────────────────────────────── */
.blog-card {
    background: var(--crm-card-bg);
    border: 1px solid var(--crm-slate-100);
    border-radius: var(--crm-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: box-shadow .3s, transform .3s;
}
.blog-card:hover {
    box-shadow: var(--crm-shadow-md);
    transform: translateY(-4px);
}
.blog-card-top { border-top: 4px solid; }
.blog-card-body { padding: 1.5rem; }
.blog-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.blog-title {
    font-family: var(--crm-font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .5rem;
    line-height: 1.35;
}
.blog-excerpt {
    font-size: .85rem;
    color: var(--crm-slate-500);
    line-height: 1.6;
    margin-bottom: .75rem;
}
.blog-meta {
    font-size: .75rem;
    color: var(--crm-slate-400);
    margin-bottom: .75rem;
    display: flex;
    gap: .5rem;
}
.blog-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--crm-primary);
}
.blog-link:hover { text-decoration: underline; }

/* ── Contact Section ──────────────────────────────────────────────── */
.bg-dark-gradient {
    background: linear-gradient(135deg, var(--crm-dark) 0%, #1E293B 100%);
}
.contact-form-card {
    background: var(--crm-card-bg);
    border-radius: var(--crm-radius-lg);
    padding: 2rem;
    box-shadow: var(--crm-shadow-lg);
}
.contact-form-card .form-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--crm-slate-500);
    margin-bottom: .25rem;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
    border-color: var(--crm-slate-100);
    font-size: .9rem;
    padding: .6rem .75rem;
    border-radius: 8px;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--crm-primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
.contact-form-card .input-group-text {
    background: var(--crm-slate-50);
    border-color: var(--crm-slate-100);
    font-size: .85rem;
    color: var(--crm-slate-500);
}
.contact-form-card .btn-primary {
    background: var(--crm-primary);
    border-color: var(--crm-primary);
    font-weight: 600;
}
.contact-form-card .btn-primary:hover {
    background: var(--crm-primary-hover);
    border-color: var(--crm-primary-hover);
}
.form-disclaimer {
    font-size: .75rem;
    color: var(--crm-slate-400);
    text-align: center;
    margin-top: .5rem;
    margin-bottom: 0;
}
.success-icon {
    font-size: 3.5rem;
    color: var(--crm-success);
}

.contact-info-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--crm-radius-lg);
    padding: 2rem;
    height: 100%;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
}
.contact-detail i {
    color: var(--crm-accent);
    font-size: 1.1rem;
    margin-top: 2px;
}
.contact-detail strong {
    color: #fff;
    display: block;
    font-size: .9rem;
}
.contact-detail span {
    color: var(--crm-slate-400);
    font-size: .85rem;
}
.contact-detail a {
    color: var(--crm-slate-300);
    font-size: .9rem;
}
.contact-detail a:hover { color: #fff; }
.next-steps {
    padding-left: 1.25rem;
    margin: 0;
}
.next-steps li {
    color: var(--crm-slate-300);
    font-size: .85rem;
    padding: .25rem 0;
}
.next-steps li strong { color: #fff; }

/* ── Footer ───────────────────────────────────────────────────────── */
.crm-footer {
    background: var(--crm-dark);
    padding: 60px 0 0;
    color: var(--crm-slate-400);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.1rem;
    color: #fff;
}
.footer-heading {
    color: #fff;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .75rem;
    font-weight: 600;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: .4rem; }
.footer-links a {
    color: var(--crm-slate-400);
    font-size: .85rem;
    transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crm-slate-400);
    transition: background .2s, color .2s;
    font-size: 1rem;
}
.social-link:hover {
    background: var(--crm-primary);
    color: #fff;
}

/* ── WhatsApp Float ───────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(37,211,102,.4);
    z-index: 1040;
    transition: transform .3s, box-shadow .3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,.5);
    color: #fff;
}

/* ── Toast ─────────────────────────────────────────────────────────── */
.crm-toast {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    padding: 1rem 1.25rem;
    border-radius: var(--crm-radius);
    color: #fff;
    font-size: .9rem;
    box-shadow: var(--crm-shadow-lg);
    animation: slideInRight .3s ease-out;
}
.crm-toast.success { background: var(--crm-success); }
.crm-toast.error { background: #EF4444; }
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.75rem; }
    .section-title { font-size: 2rem; }
}
@media (max-width: 768px) {
    .crm-section { padding: 60px 0; }
    .crm-hero { padding: 120px 0 60px; }
    .hero-title { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.75rem; }
    .stat-number { font-size: 2rem; }
    .mockup-browser { transform: none; }
    .hero-ctas .btn { width: 100%; }
    .step-connector { display: none !important; }
    .pricing-card:hover { transform: none; }
    .comparison-table { font-size: .75rem; }
    .comparison-table th,
    .comparison-table td { padding: .5rem .6rem; }
    .crm-navbar .navbar-collapse {
        background: #fff;
        border-radius: var(--crm-radius);
        margin-top: .5rem;
        padding: 1rem;
        box-shadow: var(--crm-shadow-lg);
    }
}
@media (max-width: 375px) {
    .hero-title { font-size: 1.85rem; }
    .section-title { font-size: 1.5rem; }
    .price-amount { font-size: 2rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG DETAIL PAGE STYLES
   ═══════════════════════════════════════════════════════════════════ */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
    padding: 140px 0 60px;
    color: #fff;
}
.blog-hero-inner { max-width: 800px; }
.blog-breadcrumb {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 14px;
}
.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.blog-breadcrumb a:hover { text-decoration: underline; }
.blog-breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}
.blog-category-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.blog-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.3;
    max-width: 820px;
    margin-bottom: 16px;
}
.blog-hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.85;
}
.blog-hero-meta i { margin-right: 5px; }

/* Blog Article Section */
.blog-article-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* Article Body */
.blog-article {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.article-body h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 36px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}
.article-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 28px 0 12px;
}
.article-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 16px;
}
.article-body .article-lead {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.85;
    border-left: 4px solid #4F46E5;
    padding-left: 20px;
    margin-bottom: 30px;
}
.article-body ul, .article-body ol {
    margin: 12px 0 20px 20px;
    color: #334155;
    line-height: 1.85;
}
.article-body li {
    margin-bottom: 8px;
    font-size: 1rem;
}
.article-body strong { color: #0f172a; }

/* Article Highlight Box */
.article-highlight {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-left: 4px solid #4F46E5;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #1e293b;
}

/* Article Tables */
.article-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.article-table thead {
    background: #0f172a;
    color: #fff;
}
.article-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.article-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}
.article-table tbody tr:hover { background: #f8fafc; }
.article-table tbody tr:last-child td { border-bottom: none; }

/* Article CTA Box */
.article-cta-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
}
.article-cta-box h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.article-cta-box p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Article Tags */
.blog-article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 24px;
    margin-top: 30px;
    border-top: 1px solid #e2e8f0;
}
.tags-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}
.blog-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Share Row */
.blog-share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    margin: 20px 0;
}
.share-label {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s, opacity 0.2s;
}
.share-btn:hover { transform: scale(1.1); opacity: 0.9; color: #fff; }
.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-linkedin { background: #0a66c2; }
.share-whatsapp { background: #25d366; }

/* Author Card */
.blog-author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 20px;
}
.author-avatar-lg {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #4F46E5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    color: #0f172a;
    display: block;
    margin-bottom: 6px;
}
.author-bio {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 90px;
}
.sidebar-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-box h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}
.sidebar-box h4 i { margin-right: 6px; }
.sidebar-mini-card {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}
.sidebar-mini-card:last-child { border-bottom: none; }
.smc-body h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.5;
}
.smc-body h5 a {
    color: #1e293b;
    text-decoration: none;
}
.smc-body h5 a:hover { color: #4F46E5; }
.smc-body span {
    font-size: 0.78rem;
    color: #94a3b8;
}
.smc-body span i { margin-right: 4px; }

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    border: none !important;
    color: #fff;
}
.sidebar-cta h4 {
    color: #fff !important;
    border-bottom-color: rgba(255,255,255,0.15) !important;
}
.sidebar-cta p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Sidebar WhatsApp */
.sidebar-whatsapp {
    background: #ecfdf5 !important;
    border-color: #d1fae5 !important;
}
.sidebar-whatsapp h4 {
    color: #065f46 !important;
}
.sidebar-whatsapp h4 i { color: #25d366; }
.sidebar-whatsapp p {
    font-size: 0.88rem;
    color: #065f46;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Blog CTA Banner */
.blog-cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
    padding: 60px 0;
    color: #fff;
}
.blog-cta-banner h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
}
.blog-cta-banner p {
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 auto 24px;
}

/* Blog Detail Responsive */
@media (max-width: 991.98px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
    }
}
@media (max-width: 767.98px) {
    .blog-hero { padding: 120px 0 40px; }
    .blog-article { padding: 24px; }
    .article-body h2 { font-size: 1.3rem; }
    .blog-hero-meta { gap: 12px; font-size: 0.82rem; }
    .blog-author-card { flex-direction: column; gap: 14px; }
    .article-cta-box { padding: 24px; }
}
