/* Gestorix — Marketing site */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bc-primary: #1d4ed8;
    --bc-primary-dark: #1e3a8a;
    --bc-primary-light: #3b82f6;
    --bc-accent: #f59e0b;
    --bc-accent-dark: #d97706;
    --bc-slate-900: #0f172a;
    --bc-slate-800: #1e293b;
    --bc-slate-700: #334155;
    --bc-slate-500: #64748b;
    --bc-slate-200: #e2e8f0;
    --bc-slate-100: #f1f5f9;
    --bc-slate-50: #f8fafc;
    --bc-gradient: linear-gradient(145deg, #0f172a 0%, #1e3a8a 42%, #1d4ed8 78%, #2563eb 100%);
    --bc-gradient-subtle: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
    --bc-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --bc-shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
    --bc-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --bc-shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.16);
    --bc-radius: 1rem;
    --bc-radius-lg: 1.25rem;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--bc-slate-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: #fff;
}

/* ── Navigation ── */
.landing-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.landing-nav .navbar-brand {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--bc-slate-900);
    letter-spacing: -0.02em;
}

.landing-nav .navbar-brand i {
    color: var(--bc-primary);
}

.landing-nav .nav-link {
    font-weight: 500;
    font-size: 0.925rem;
    color: var(--bc-slate-700);
    padding: 0.5rem 0.85rem !important;
    border-radius: 0.5rem;
    transition: color 0.15s, background 0.15s;
}

.landing-nav .nav-link:hover,
.landing-nav .nav-link.active {
    color: var(--bc-primary);
    background: rgba(29, 78, 216, 0.06);
}

.landing-nav .btn-primary {
    background: var(--bc-primary);
    border-color: var(--bc-primary);
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.45rem 1.1rem;
}

.landing-nav .btn-primary:hover {
    background: var(--bc-primary-dark);
    border-color: var(--bc-primary-dark);
}

/* ── Hero ── */
.landing-hero {
    background: var(--bc-gradient);
    color: #fff;
    padding: 5rem 0 6.5rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
}

.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 85% 15%, rgba(245, 158, 11, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 8% 85%, rgba(255, 255, 255, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.landing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.08), transparent);
    pointer-events: none;
}

.landing-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: heroFadeIn 0.7s ease-out both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-badge i {
    color: var(--bc-accent);
}

.landing-hero h1 {
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.landing-hero .lead {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 36rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.hero-highlight i {
    color: var(--bc-accent);
    font-size: 1rem;
}

.landing-hero .btn-light,
.hero-cta-primary {
    font-weight: 600;
    border-radius: 0.6rem;
    padding: 0.7rem 1.5rem;
    color: var(--bc-primary-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-hero .btn-light:hover,
.hero-cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
    color: var(--bc-primary-dark);
}

.landing-hero .btn-outline-light {
    font-weight: 600;
    border-radius: 0.6rem;
    padding: 0.7rem 1.5rem;
    border-width: 2px;
}

.landing-hero .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ── Demo form card ── */
.demo-form-card {
    border-radius: var(--bc-radius-lg);
    box-shadow: var(--bc-shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    animation: heroFadeIn 0.7s ease-out 0.15s both;
}

.demo-form-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bc-accent), var(--bc-primary-light));
}

.demo-form-card .card-header {
    background: #fff;
    color: var(--bc-slate-900);
    border-bottom: 1px solid var(--bc-slate-100);
    padding: 1.5rem 1.75rem 1.25rem;
}

.demo-form-card .card-header h2 {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--bc-slate-900);
}

.demo-form-card .card-header p {
    color: var(--bc-slate-500);
    font-size: 0.875rem;
}

.demo-form-card .card-header i {
    color: var(--bc-primary);
}

.demo-form-card .card-body {
    background: #fff;
}

.demo-form-card .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--bc-slate-700);
    margin-bottom: 0.35rem;
}

.demo-form-card .form-control {
    border-radius: 0.5rem;
    border-color: #e2e8f0;
    padding: 0.6rem 0.85rem;
    font-size: 0.925rem;
}

.demo-form-card .form-control:focus {
    border-color: var(--bc-primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.demo-form-card .btn-primary {
    background: var(--bc-primary);
    border-color: var(--bc-primary);
    font-weight: 600;
    border-radius: 0.6rem;
    font-size: 1rem;
}

.demo-form-card .btn-primary:hover {
    background: var(--bc-primary-dark);
    border-color: var(--bc-primary-dark);
}

.form-trust-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--bc-slate-500);
    font-weight: 500;
}

.form-trust-note i {
    color: var(--bc-primary);
    font-size: 0.7rem;
}

/* ── Sections ── */
.landing-section {
    padding: 5rem 0;
}

.landing-section.alt {
    background: var(--bc-slate-50);
}

.landing-section.dark {
    background: var(--bc-slate-900);
    color: #fff;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bc-primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--bc-slate-500);
    font-size: 1.05rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.text-center .section-subtitle {
    margin-bottom: 0;
}

/* ── Stats bar ── */
.stats-bar {
    background: transparent;
    padding: 0;
    margin-top: -3.5rem;
    position: relative;
    z-index: 2;
}

.stats-card {
    background: #fff;
    border: 1px solid var(--bc-slate-200);
    border-radius: var(--bc-radius-lg);
    box-shadow: var(--bc-shadow-lg);
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 1.75rem 1.25rem;
    height: 100%;
    border-right: 1px solid var(--bc-slate-100);
}

.stats-card .col-md-3:last-child .stat-item,
.stats-card .col-6:nth-child(2n) .stat-item {
    border-right: none;
}

@media (min-width: 768px) {
    .stats-card .col-6:nth-child(2n) .stat-item {
        border-right: 1px solid var(--bc-slate-100);
    }

    .stats-card .col-md-3:last-child .stat-item {
        border-right: none;
    }
}

.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(29, 78, 216, 0.04));
    color: var(--bc-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.stat-item strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--bc-slate-900);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.stat-item span {
    font-size: 0.825rem;
    color: var(--bc-slate-500);
    font-weight: 500;
    line-height: 1.4;
}

/* ── Product mockup ── */
.product-preview-section {
    padding-top: 4rem !important;
}

.product-mockup {
    border-radius: var(--bc-radius-lg);
    border: 1px solid var(--bc-slate-200);
    box-shadow: var(--bc-shadow-xl);
    overflow: hidden;
    background: #fff;
}

.mockup-chrome {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bc-slate-50);
    border-bottom: 1px solid var(--bc-slate-200);
}

.mockup-dots {
    display: flex;
    gap: 0.35rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bc-slate-200);
}

.mockup-dots span:nth-child(1) { background: #fca5a5; }
.mockup-dots span:nth-child(2) { background: #fcd34d; }
.mockup-dots span:nth-child(3) { background: #86efac; }

.mockup-url {
    flex: 1;
    background: #fff;
    border: 1px solid var(--bc-slate-200);
    border-radius: 0.4rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    color: var(--bc-slate-500);
    font-weight: 500;
}

.mockup-body {
    display: flex;
    min-height: 320px;
}

.mockup-sidebar {
    width: 56px;
    background: var(--bc-slate-900);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.mockup-logo {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--bc-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.mockup-nav-item {
    width: 2rem;
    height: 2rem;
    border-radius: 0.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.75rem;
}

.mockup-nav-item.active {
    background: rgba(29, 78, 216, 0.25);
    color: #93c5fd;
}

.mockup-main {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: var(--bc-slate-50);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mockup-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--bc-slate-900);
}

.mockup-badge {
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(29, 78, 216, 0.1);
    color: var(--bc-primary);
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
}

.mockup-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.mockup-kpi {
    background: #fff;
    border: 1px solid var(--bc-slate-200);
    border-radius: 0.65rem;
    padding: 0.85rem;
}

.mockup-kpi-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--bc-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.mockup-kpi-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bc-slate-900);
    letter-spacing: -0.02em;
}

.mockup-kpi-trend {
    font-size: 0.65rem;
    font-weight: 600;
}

.mockup-kpi-trend.up { color: #059669; }
.mockup-kpi-trend.neutral { color: var(--bc-slate-500); }

.mockup-table {
    background: #fff;
    border: 1px solid var(--bc-slate-200);
    border-radius: 0.65rem;
    overflow: hidden;
}

.mockup-table-head,
.mockup-table-row {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
    align-items: center;
}

.mockup-table-head {
    background: var(--bc-slate-50);
    font-weight: 700;
    color: var(--bc-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.65rem;
    border-bottom: 1px solid var(--bc-slate-200);
}

.mockup-table-row {
    color: var(--bc-slate-700);
    font-weight: 500;
    border-bottom: 1px solid var(--bc-slate-100);
}

.mockup-table-row:last-child {
    border-bottom: none;
}

.mockup-status {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 2rem;
    text-align: center;
    width: fit-content;
}

.mockup-status.in-progress {
    background: rgba(29, 78, 216, 0.1);
    color: var(--bc-primary);
}

.mockup-status.review {
    background: rgba(245, 158, 11, 0.12);
    color: var(--bc-accent-dark);
}

.mockup-status.quote {
    background: rgba(100, 116, 139, 0.12);
    color: var(--bc-slate-500);
}

.mockup-progress {
    display: block;
    height: 6px;
    background: var(--bc-slate-100);
    border-radius: 3px;
    overflow: hidden;
}

.mockup-progress i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--bc-primary), var(--bc-primary-light));
    border-radius: 3px;
}

/* ── Trust strip ── */
.trust-strip {
    padding: 2.5rem 0;
    background: var(--bc-slate-50);
    border-top: 1px solid var(--bc-slate-200);
    border-bottom: 1px solid var(--bc-slate-200);
}

.trust-strip-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bc-slate-500);
    margin-bottom: 1rem;
}

.trust-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.trust-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff;
    border: 1px solid var(--bc-slate-200);
    border-radius: 2rem;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bc-slate-700);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.trust-tags span i {
    color: var(--bc-primary);
    font-size: 0.8rem;
}

.trust-tags span:hover {
    border-color: rgba(29, 78, 216, 0.25);
    box-shadow: var(--bc-shadow-sm);
}

/* ── Feature cards ── */
.feature-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--bc-radius);
    box-shadow: var(--bc-shadow-sm);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    background: #fff;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bc-shadow-md);
    border-color: rgba(29, 78, 216, 0.25);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(29, 78, 216, 0.05));
    color: var(--bc-primary);
    font-size: 1.2rem;
}

.feature-card h3 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--bc-slate-900);
}

.feature-card p {
    color: var(--bc-slate-500);
    font-size: 0.925rem;
    margin-bottom: 0;
    line-height: 1.65;
}

.feature-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.feature-card .feature-list li {
    font-size: 0.85rem;
    color: var(--bc-slate-500);
    padding: 0.2rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.feature-card .feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bc-accent);
}

/* ── Workflow / timeline ── */
.workflow-timeline {
    position: relative;
    padding-left: 0;
}

.workflow-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 1.5rem 0;
    position: relative;
}

.workflow-step:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
}

.workflow-num {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
}

.workflow-step h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--bc-slate-900);
}

.workflow-step p {
    color: var(--bc-slate-500);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.65;
}

.workflow-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--bc-radius-lg);
    padding: 2rem;
    box-shadow: var(--bc-shadow-sm);
}

/* ── Page header (inner pages) ── */
.page-hero {
    background: var(--bc-gradient-subtle);
    border-bottom: 1px solid #e2e8f0;
    padding: 3.5rem 0 3rem;
}

.page-hero h1 {
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.page-hero .lead {
    color: var(--bc-slate-500);
    font-size: 1.1rem;
    max-width: 40rem;
    margin-bottom: 0;
}

/* ── Module grid (cosa facciamo) ── */
.module-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--bc-radius);
    padding: 1.75rem;
    height: 100%;
    transition: box-shadow 0.2s;
}

.module-card:hover {
    box-shadow: var(--bc-shadow-md);
}

.module-card .module-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 78, 216, 0.08);
    color: var(--bc-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.module-card h3 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.module-card p {
    color: var(--bc-slate-500);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.module-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-card ul li {
    font-size: 0.85rem;
    color: var(--bc-slate-500);
    padding: 0.25rem 0 0.25rem 1.1rem;
    position: relative;
}

.module-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bc-primary);
    font-weight: 700;
    font-size: 0.75rem;
}

/* ── Testimonials ── */
.testimonials-section {
    background: linear-gradient(180deg, #fff 0%, var(--bc-slate-50) 100%);
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--bc-slate-200);
    border-radius: var(--bc-radius-lg);
    padding: 1.75rem;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.testimonial-card:hover {
    box-shadow: var(--bc-shadow-md);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--bc-accent);
    font-size: 0.75rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-card p {
    color: var(--bc-slate-700);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
    font-style: normal;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bc-slate-100);
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bc-slate-900);
}

.testimonial-card footer span {
    display: block;
    font-size: 0.78rem;
    color: var(--bc-slate-500);
    font-weight: 500;
}

/* ── CTA banner ── */
.cta-banner {
    background: var(--bc-gradient);
    border-radius: var(--bc-radius-lg);
    padding: 3.5rem 2.5rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner h2,
.cta-banner p,
.cta-banner .btn {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    opacity: 0.9;
    max-width: 32rem;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
}

.cta-banner .btn-light {
    font-weight: 600;
    border-radius: 0.6rem;
    padding: 0.7rem 1.75rem;
    color: var(--bc-primary-dark);
}

/* ── About card ── */
.about-highlight {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--bc-accent);
    border-radius: 0 var(--bc-radius) var(--bc-radius) 0;
    padding: 1.5rem 1.75rem;
    margin-top: 2rem;
}

.about-highlight h2 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.about-highlight p {
    color: var(--bc-slate-500);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ── Benefit comparison ── */
.benefit-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(245, 158, 11, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon-wrap i {
    font-size: 1.35rem;
    color: var(--bc-primary);
}

/* ── Footer ── */
.landing-footer {
    background: var(--bc-slate-900);
    color: #94a3b8;
    padding: 3.5rem 0 2rem;
    font-size: 0.9rem;
}

.landing-footer .footer-brand {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.landing-footer .footer-brand i {
    color: var(--bc-accent);
}

.landing-footer .footer-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 22rem;
}

.landing-footer h6 {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.landing-footer a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.2rem 0;
    transition: color 0.15s;
}

.landing-footer a:hover {
    color: #fff;
}

.landing-footer hr {
    border-color: rgba(148, 163, 184, 0.2);
    margin: 2rem 0 1.5rem;
}

/* ── Access demo page ── */
.access-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bc-gradient);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.access-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.access-card {
    max-width: 480px;
    width: 100%;
    background: #fff;
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    box-shadow: var(--bc-shadow-lg);
}

.access-card-header {
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-primary-dark));
    color: #fff;
    padding: 1.75rem;
    text-align: center;
}

.access-card-header h1 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.access-card-body {
    padding: 2rem;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .landing-hero {
        padding: 3.5rem 0 5rem;
    }

    .stats-bar {
        margin-top: -2.5rem;
    }

    .hero-highlights {
        gap: 0.75rem;
    }

    .landing-section {
        padding: 3.5rem 0;
    }

    .mockup-kpis {
        grid-template-columns: 1fr;
    }

    .mockup-table-head span:nth-child(3),
    .mockup-table-row span:nth-child(3) {
        display: none;
    }

    .mockup-table-head,
    .mockup-table-row {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .landing-hero {
        padding: 2.5rem 0 4.5rem;
    }

    .stats-bar {
        margin-top: -2rem;
        padding: 0 0.75rem;
    }

    .stat-item {
        padding: 1.25rem 0.75rem;
    }

    .stat-item strong {
        font-size: 1.35rem;
    }

    .cta-banner {
        padding: 2.25rem 1.5rem;
    }

    .workflow-card {
        padding: 1.25rem;
    }

    .mockup-body {
        min-height: 280px;
    }

    .mockup-main {
        padding: 1rem;
    }

    .trust-tags span {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }
}
