/* ============================================================
   Brasgest Landing Page — Premium SaaS Styles
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --primary-soft: #e0f2fe;
    --primary-light: #f0f9ff;
    --text: #0f172a;
    --text-secondary: #475569;
    --muted: #64748b;
    --muted-light: #94a3b8;
    --border: #e2e8f0;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --dark: #0f172a;
    --dark-surface: #1e293b;
    --success: #10b981;
    --success-soft: #d1fae5;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 1px 3px rgba(2, 132, 199, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: #94a3b8;
    background: var(--surface-alt);
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: none;
}

.btn-ghost:hover {
    color: var(--text);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 6px;
}

.header-nav a:not(.btn) {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
}

.header-nav a:not(.btn):hover {
    color: var(--primary);
    background: var(--primary-light);
}

.header-nav .btn {
    margin-left: 8px;
}

.header-nav .btn-secondary {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.header-nav .btn-primary {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background var(--transition);
}

.mobile-toggle:hover {
    background: var(--surface-alt);
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }
}

/* --- Mobile Menu --- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.mobile-menu.open {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.mobile-menu a:not(.btn) {
    display: block;
    padding: 14px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid #f1f5f9;
}

.mobile-menu a:not(.btn):last-of-type {
    border-bottom: none;
}

.mobile-menu .btn {
    margin-top: 12px;
    width: 100%;
    text-align: center;
}

/* --- Hero --- */
.hero {
    padding: 130px 0 80px;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 8px;
}

.hero-support {
    font-size: 0.9rem;
    color: var(--muted-light);
    margin-top: 8px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-mini-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-top: 28px;
    max-width: 480px;
}

.hero-mini-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-mini-benefits li svg {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-mini-benefits {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Hero Mockup Dashboard --- */
.hero-mockup {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    max-width: 580px;
    margin: 0 auto;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: #fafbfc;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
    background: #10b981;
}

.mockup-header-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-light);
    margin-left: 8px;
    letter-spacing: 0.02em;
}

.mockup-body {
    padding: 20px;
    display: grid;
    gap: 16px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mockup-stat {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
}

.mockup-stat .num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.mockup-stat .label {
    font-size: 0.75rem;
    color: var(--muted-light);
    margin-top: 2px;
}

.mockup-agenda {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}

.mockup-agenda h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-agenda h4 svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.mockup-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.mockup-item:last-child {
    border-bottom: none;
}

.mockup-item .time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    min-width: 44px;
}

.mockup-item .info {
    flex: 1;
    min-width: 0;
}

.mockup-item .info .title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-item .info .sub {
    font-size: 0.7rem;
    color: var(--muted-light);
}

.mockup-item .status {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.status-scheduled {
    background: #dbeafe;
    color: #2563eb;
}

.status-evaluating {
    background: #fef3c7;
    color: #d97706;
}

.status-executing {
    background: #d1fae5;
    color: #059669;
}

.mockup-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mockup-card-small {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
}

.mockup-card-small h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.mockup-card-small p {
    font-size: 0.7rem;
    color: var(--muted-light);
    line-height: 1.4;
}

.mockup-card-small .tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    margin-top: 4px;
}

.tag-blue {
    background: #dbeafe;
    color: #2563eb;
}

.tag-green {
    background: #d1fae5;
    color: #059669;
}

.tag-amber {
    background: #fef3c7;
    color: #d97706;
}

@media (min-width: 640px) {
    .mockup-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .mockup-bottom {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Sections Common --- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-alt {
    background: var(--surface-alt);
}

/* --- Problem Section --- */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.problem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.problem-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.problem-card .icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.problem-card .icon-wrap.red {
    background: #fee2e2;
    color: #dc2626;
}

.problem-card .icon-wrap.orange {
    background: #ffedd5;
    color: #ea580c;
}

.problem-card .icon-wrap.yellow {
    background: #fef9c3;
    color: #ca8a04;
}

.problem-card .icon-wrap.gray {
    background: #f1f5f9;
    color: var(--muted);
}

.problem-card .icon-wrap.blue {
    background: #dbeafe;
    color: #2563eb;
}

.problem-card .icon-wrap.purple {
    background: #ede9fe;
    color: #7c3aed;
}

.problem-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.problem-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* --- Solution Section --- */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.solution-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.solution-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.solution-card .num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.solution-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.solution-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .solution-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .solution-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* --- For Whom Section --- */
.forwhom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.forwhom-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.forwhom-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
    transform: translateY(-2px);
}

.forwhom-item .icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.forwhom-footer {
    text-align: center;
    margin-top: 28px;
    font-size: 0.9rem;
    color: var(--muted);
}

@media (min-width: 640px) {
    .forwhom-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Features Section --- */
.features-category {
    margin-bottom: 40px;
}

.features-category:last-child {
    margin-bottom: 0;
}

.features-category h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-category h3 .cat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.features-category h3 .cat-icon.blue {
    background: var(--primary-soft);
    color: var(--primary);
}

.features-category h3 .cat-icon.green {
    background: var(--success-soft);
    color: var(--success);
}

.features-category h3 .cat-icon.amber {
    background: #fef3c7;
    color: #d97706;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-sm);
}

.feature-item .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--success-soft);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- How It Works --- */
.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    counter-reset: step;
    max-width: 720px;
    margin: 0 auto;
}

.how-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition);
}

.how-step:hover {
    box-shadow: var(--shadow);
}

.how-step .step-num {
    counter-increment: step;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.how-step .step-num::before {
    content: counter(step);
}

.how-step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.how-step p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.how-cta {
    text-align: center;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .how-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Benefits Section --- */
.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow var(--transition);
}

.benefits-list li:hover {
    box-shadow: var(--shadow-sm);
}

.benefits-list li svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .benefits-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Plans Section --- */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.plan-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
    position: relative;
}

.plan-card.featured::before {
    content: attr(data-popular-label);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 16px;
    border-radius: 999px;
}

.plan-card .plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.plan-card .plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.plan-card .plan-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
}

.plan-card .plan-desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-card .plan-features {
    flex: 1;
    margin-bottom: 24px;
}

.plan-card .plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
}

.plan-card .plan-features li svg {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}

.plan-card .btn {
    width: 100%;
    text-align: center;
}

.plans-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.95rem;
    color: var(--muted-light);
}

.plans-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 32px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.plans-error p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.plan-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--muted-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .plans-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- FAQ Section --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
    gap: 12px;
}

.faq-question .faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--muted-light);
    transition: transform 0.3s;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

/* --- Trust Section --- */
.trust-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.trust-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.trust-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
}

.trust-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.trust-points li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .trust-points {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Final CTA Section --- */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-surface) 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.final-cta .btn-primary {
    background: var(--primary);
    color: #fff;
}

.final-cta .btn-primary:hover {
    background: var(--primary-dark);
}

.final-cta .btn-secondary {
    border-color: #475569;
    color: #e2e8f0;
}

.final-cta .btn-secondary:hover {
    border-color: #64748b;
    background: rgba(255, 255, 255, 0.05);
}

.final-cta .cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.final-cta .cta-small {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #64748b;
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 2.5rem;
    }
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-surface);
    padding: 56px 0 32px;
}

.footer .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: #94a3b8;
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: #fff;
}

.footer-brand-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 280px;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid var(--dark-surface);
    padding-top: 24px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #475569;
}

@media (min-width: 640px) {
    .footer .container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* --- Responsive Helpers --- */
@media (max-width: 639px) {
    .section {
        padding: 56px 0;
    }

    .hero {
        padding: 110px 0 56px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .plan-card .plan-price {
        font-size: 1.6rem;
    }

    .final-cta {
        padding: 64px 0;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }

    .footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Conversion comparison section --- */
.before-after-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.compare-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 30px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.compare-card h3 {
    font-size: 1.2rem;
    margin: 10px 0 16px;
    color: var(--text);
}

.compare-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 999px;
}

.compare-before .compare-label {
    color: #b91c1c;
    background: #fee2e2;
}

.compare-after {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.08);
}

.compare-after .compare-label {
    color: #047857;
    background: var(--success-soft);
}

.compare-card li {
    position: relative;
    padding-left: 24px;
    margin: 10px 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.compare-card li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
}

.compare-before li::before {
    content: '×';
    color: #ef4444;
}

.compare-after li::before {
    content: '✓';
    color: var(--success);
}

@media (min-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Product Preview --- */
.product-preview-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.product-preview {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 58px 1fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.preview-sidebar {
    background: var(--dark);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.preview-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #334155;
}

.preview-dot.active {
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(2, 132, 199, 0.18);
}

.preview-main {
    padding: 28px;
}

.preview-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.preview-topbar .eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.preview-topbar h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--text);
}

.status-chip {
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 700;
    color: #d97706;
    background: #fef3c7;
    padding: 6px 12px;
    border-radius: 999px;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.preview-panel {
    border: 1px solid var(--border);
    background: var(--surface-alt);
    border-radius: var(--radius-lg);
    padding: 18px;
}

.preview-panel span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.preview-panel strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 6px;
}

.preview-panel p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .preview-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 639px) {
    .product-preview {
        grid-template-columns: 1fr;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-main {
        padding: 20px;
    }

    .preview-topbar {
        display: block;
    }

    .status-chip {
        display: inline-flex;
        margin-top: 12px;
    }
}

/* --- Better visual treatment for solution icons --- */
.solution-card .num {
    font-size: 0.82rem;
    color: var(--primary);
    background: var(--primary-soft);
}

/* --- Legal pages --- */
.legal-page {
    padding: 130px 0 80px;
    background: var(--surface-alt);
}

.legal-card {
    max-width: 860px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
}

.legal-card h1 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-card h2 {
    font-size: 1.2rem;
    margin: 28px 0 8px;
    color: var(--text);
}

.legal-card p,
.legal-card li {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
}

.legal-card ul {
    list-style: disc;
    padding-left: 22px;
    margin-top: 8px;
}

.legal-back {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}


/* --- Expanded legal pages --- */
.legal-meta {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.legal-alert {
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    margin: 22px 0;
    line-height: 1.65;
    font-size: 0.92rem;
}

.legal-note {
    border: 1px solid var(--border);
    background: var(--surface-alt);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    margin: 18px 0;
}

.legal-card a {
    color: var(--primary);
    font-weight: 700;
}

.legal-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.92rem;
}

.legal-card th,
.legal-card td {
    text-align: left;
    vertical-align: top;
    border: 1px solid var(--border);
    padding: 12px;
    color: var(--text-secondary);
}

.legal-card th {
    color: var(--text);
    background: var(--surface-alt);
    font-weight: 800;
}

.legal-doc-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.legal-doc-nav a {
    display: block;
    border: 1px solid var(--border);
    background: var(--surface-alt);
    border-radius: var(--radius);
    padding: 14px;
    color: var(--text);
    font-weight: 800;
}

.legal-doc-nav span {
    display: block;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.82rem;
    margin-top: 4px;
}

.legal-checklist li {
    margin-bottom: 8px;
}

.footer-legal-note {
    grid-column: 1 / -1;
    color: #94a3b8;
    font-size: 0.78rem;
    line-height: 1.6;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 18px;
    margin-top: 8px;
}

@media (max-width: 639px) {
    .legal-card {
        padding: 26px 20px;
    }

    .legal-card h1 {
        font-size: 1.8rem;
    }

    .legal-card table {
        display: block;
        overflow-x: auto;
    }
}

/* ============================================================
   BrasGest Landing 2026 Refresh
   Scoped to landing only to avoid touching legal pages.
   ============================================================ */

body.landing-page {
    --lp-bg: #07111f;
    --lp-bg-soft: #0d182a;
    --lp-text: #081120;
    --lp-text-soft: #52627a;
    --lp-blue: #1f7ae5;
    --lp-blue-strong: #155ed5;
    --lp-success: #0f9d76;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eff5fb 46%, #f8fafc 100%);
    color: var(--lp-text);
}

body.landing-page.menu-open {
    overflow: hidden;
}

.landing-page .container {
    max-width: 1240px;
    padding: 0 20px;
}

.landing-page .lp-skip-link {
    position: absolute;
    left: 12px;
    top: -48px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: var(--lp-text);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.landing-page .lp-skip-link:focus {
    top: 12px;
}

.landing-page .header {
    background: rgba(248, 251, 255, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.landing-page .header.scrolled {
    box-shadow: 0 14px 34px rgba(8, 17, 32, 0.08);
}

.landing-page .header .container {
    height: 82px;
    gap: 18px;
}

.landing-page .header-nav {
    gap: 8px;
}

.landing-page .header-nav a:not(.btn) {
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.92rem;
    color: var(--lp-text-soft);
}

.landing-page .header-nav a:not(.btn):hover {
    background: rgba(255, 255, 255, 0.7);
    color: var(--lp-text);
}

.landing-page .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-page .lp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.landing-page .lp-header-cta {
    display: none;
}

.landing-page .lp-locale-select-wrap,
.landing-page .lp-mobile-locale {
    position: relative;
}

.landing-page .lp-locale-select {
    min-width: 118px;
    height: 44px;
    padding: 0 40px 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(255, 255, 255, 0.86);
    color: var(--lp-text);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    box-shadow: 0 10px 24px rgba(8, 17, 32, 0.05);
}

.landing-page .lp-locale-select:focus {
    outline: none;
    border-color: rgba(31, 122, 229, 0.34);
    box-shadow: 0 0 0 4px rgba(31, 122, 229, 0.12);
}

.landing-page .btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 22px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.landing-page .btn:hover {
    transform: translateY(-1px);
}

.landing-page .btn-primary {
    background: linear-gradient(135deg, var(--lp-blue) 0%, #4b9cf0 100%);
    box-shadow: 0 16px 32px rgba(31, 122, 229, 0.22);
}

.landing-page .btn-primary:hover {
    background: linear-gradient(135deg, var(--lp-blue-strong) 0%, var(--lp-blue) 100%);
    box-shadow: 0 18px 34px rgba(31, 122, 229, 0.28);
}

.landing-page .btn-secondary {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: var(--lp-text);
}

.landing-page .btn-secondary:hover {
    border-color: rgba(31, 122, 229, 0.24);
    background: #fff;
}

.landing-page .btn-lg {
    min-height: 54px;
    padding: 16px 28px;
}

.landing-page .mobile-toggle {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.24);
    width: 48px;
    height: 48px;
}

.landing-page .mobile-toggle span {
    background: var(--lp-text);
}

.landing-page .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 88;
    background: rgba(8, 17, 32, 0.44);
    backdrop-filter: blur(6px);
}

.landing-page .mobile-menu {
    top: 78px;
    right: 18px;
    left: 18px;
    width: auto;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 30px 60px rgba(8, 17, 32, 0.16);
}

.landing-page .lp-mobile-locale {
    margin-bottom: 12px;
}

.landing-page .lp-mobile-locale .lp-locale-select {
    width: 100%;
}

.landing-page .mobile-menu a:not(.btn) {
    color: var(--lp-text);
    font-weight: 600;
}

.landing-page .hero {
    position: relative;
    padding: 136px 0 88px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.14), transparent 22%),
        radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.12), transparent 20%);
}

.landing-page .hero::before,
.landing-page .hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    pointer-events: none;
}

.landing-page .hero::before {
    width: 340px;
    height: 340px;
    left: -120px;
    top: 80px;
    background: rgba(56, 189, 248, 0.12);
}

.landing-page .hero::after {
    width: 420px;
    height: 420px;
    right: -160px;
    bottom: -80px;
    background: rgba(37, 99, 235, 0.1);
}

.landing-page .lp-hero-grid {
    display: grid;
    gap: 34px;
    align-items: center;
}

.landing-page .hero-content {
    max-width: 670px;
}

.landing-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(31, 122, 229, 0.14);
    color: var(--lp-blue);
    box-shadow: 0 10px 24px rgba(8, 17, 32, 0.05);
}

.landing-page .lp-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--lp-success);
    box-shadow: 0 0 0 6px rgba(15, 157, 118, 0.12);
}

.landing-page .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 4.8vw, 4.15rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    max-width: 11.5ch;
}

.landing-page .hero p {
    max-width: 60ch;
    color: var(--lp-text-soft);
}

.landing-page .lp-hero-lead {
    font-size: 1.08rem;
    line-height: 1.72;
    margin-bottom: 16px;
}

.landing-page .hero-support {
    font-size: 0.98rem;
    line-height: 1.68;
}

.landing-page .hero-actions {
    margin-top: 28px;
    gap: 14px;
    flex-wrap: wrap;
}

.landing-page .lp-trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.landing-page .lp-trust-inline span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: var(--lp-text-soft);
    font-size: 0.88rem;
    font-weight: 600;
}

.landing-page .lp-hero-metrics {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.landing-page .lp-metric-card {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 18px 36px rgba(8, 17, 32, 0.06);
}

.landing-page .lp-metric-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.96rem;
    color: var(--lp-text);
}

.landing-page .lp-metric-card p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.65;
}

.landing-page .hero-mockup {
    position: relative;
    border-radius: 32px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.96), rgba(15, 27, 47, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 38px 80px rgba(8, 17, 32, 0.24);
}

.landing-page .hero-mockup::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.landing-page .mockup-header {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .mockup-header-text {
    color: rgba(255, 255, 255, 0.84);
}

.landing-page .mockup-body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    padding: 18px;
}

.landing-page .lp-mockup-top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.landing-page .lp-mockup-kpi {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .lp-mockup-kpi span {
    display: block;
    margin-bottom: 6px;
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-page .lp-mockup-kpi strong {
    color: #fff;
    font-size: 1rem;
}

.landing-page .mockup-agenda h4,
.landing-page .mockup-card-small h4,
.landing-page .mockup-item .title {
    color: #fff;
}

.landing-page .mockup-agenda {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .mockup-item {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.landing-page .mockup-item .sub {
    color: rgba(226, 232, 240, 0.68);
}

.landing-page .mockup-item .time {
    color: #93c5fd;
}

.landing-page .mockup-card-small {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .mockup-card-small p {
    color: rgba(226, 232, 240, 0.7);
}

.landing-page .status,
.landing-page .tag {
    border-radius: 999px;
    font-weight: 700;
}

.landing-page .status-scheduled {
    background: rgba(59, 130, 246, 0.18);
    color: #bfdbfe;
}

.landing-page .status-evaluating {
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
}

.landing-page .status-executing {
    background: rgba(16, 185, 129, 0.18);
    color: #bbf7d0;
}

.landing-page .section {
    padding: 88px 0;
}

.landing-page .section-alt {
    background:
        radial-gradient(circle at top left, rgba(31, 122, 229, 0.05), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(247, 250, 253, 0.92));
}

.landing-page .section-header {
    margin-bottom: 34px;
}

.landing-page .section-title {
    max-width: 18ch;
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.landing-page .section-subtitle {
    max-width: 66ch;
    color: var(--lp-text-soft);
    font-size: 1rem;
    line-height: 1.72;
}

.landing-page .section-tag {
    color: var(--lp-blue);
    background: rgba(31, 122, 229, 0.1);
    border: 1px solid rgba(31, 122, 229, 0.12);
}

.landing-page .problem-card,
.landing-page .solution-card,
.landing-page .compare-card,
.landing-page .feature-item,
.landing-page .faq-item,
.landing-page .forwhom-item,
.landing-page .plan-card,
.landing-page .preview-panel {
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 36px rgba(8, 17, 32, 0.05);
}

.landing-page .problem-card:hover,
.landing-page .solution-card:hover,
.landing-page .lp-feature-card:hover,
.landing-page .lp-audience-card:hover,
.landing-page .lp-step-card:hover,
.landing-page .lp-budget-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(8, 17, 32, 0.08);
}

.landing-page .problem-grid,
.landing-page .solution-grid {
    gap: 20px;
}

.landing-page .problem-card,
.landing-page .solution-card {
    padding: 24px;
}

.landing-page .problem-card h3,
.landing-page .solution-card h3,
.landing-page .lp-feature-card h3,
.landing-page .lp-audience-card h3,
.landing-page .lp-budget-card h3,
.landing-page .lp-step-card h3 {
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.landing-page .problem-card p,
.landing-page .solution-card p,
.landing-page .lp-feature-card p,
.landing-page .lp-audience-card p,
.landing-page .lp-budget-card p,
.landing-page .lp-step-card p {
    font-size: 0.95rem;
    line-height: 1.68;
    color: var(--lp-text-soft);
}

.landing-page .icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.landing-page .icon-wrap.red { background: rgba(239, 68, 68, 0.12); color: #dc2626; }
.landing-page .icon-wrap.orange { background: rgba(249, 115, 22, 0.12); color: #ea580c; }
.landing-page .icon-wrap.yellow { background: rgba(245, 158, 11, 0.14); color: #d97706; }
.landing-page .icon-wrap.gray { background: rgba(71, 85, 105, 0.12); color: #475569; }
.landing-page .icon-wrap.blue { background: rgba(37, 99, 235, 0.12); color: #1d4ed8; }
.landing-page .icon-wrap.purple { background: rgba(124, 58, 237, 0.12); color: #7c3aed; }

.landing-page .lp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.landing-page .lp-icon svg {
    width: 22px;
    height: 22px;
}

.landing-page .lp-icon-primary {
    background: rgba(31, 122, 229, 0.12);
    color: #1d4ed8;
}

.landing-page .lp-icon-soft {
    background: rgba(71, 85, 105, 0.09);
    color: #475569;
}

.landing-page .lp-icon-success {
    background: rgba(15, 157, 118, 0.12);
    color: #0f9d76;
}

.landing-page .lp-icon-warning {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.landing-page .lp-icon-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.landing-page .compare-card {
    padding: 28px;
}

.landing-page .compare-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-page .compare-before .compare-label {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.landing-page .compare-after .compare-label {
    background: rgba(16, 185, 129, 0.12);
    color: var(--lp-success);
}

.landing-page .lp-audience-grid,
.landing-page .lp-budget-grid,
.landing-page .lp-steps {
    display: grid;
    gap: 20px;
}

.landing-page .lp-audience-card,
.landing-page .lp-budget-card,
.landing-page .lp-step-card,
.landing-page .lp-feature-card {
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 36px rgba(8, 17, 32, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-page .lp-audience-card h3,
.landing-page .lp-budget-card h3,
.landing-page .lp-step-card h3,
.landing-page .lp-feature-card h3 {
    margin-bottom: 12px;
}

.landing-page .lp-check-list {
    display: grid;
    gap: 10px;
}

.landing-page .lp-check-list li,
.landing-page .trust-points li,
.landing-page .benefits-list li {
    position: relative;
    padding-left: 28px;
}

.landing-page .lp-check-list li::before,
.landing-page .trust-points li::before,
.landing-page .benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lp-blue), #5db4f5);
}

.landing-page .lp-showcase {
    display: grid;
    gap: 24px;
}

.landing-page .lp-schedule-board {
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, #0d1728 0%, #16253d 100%);
    color: #fff;
    box-shadow: 0 32px 60px rgba(8, 17, 32, 0.24);
}

.landing-page .lp-board-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .lp-board-head span {
    color: rgba(226, 232, 240, 0.72);
}

.landing-page .lp-board-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .lp-board-item:last-child {
    border-bottom: none;
}

.landing-page .lp-board-item span {
    color: #93c5fd;
    font-weight: 700;
}

.landing-page .lp-board-item strong {
    display: block;
    margin-bottom: 4px;
}

.landing-page .lp-board-item p {
    color: rgba(226, 232, 240, 0.72);
}

.landing-page .lp-invoice-alert {
    margin-top: 28px;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.24);
    color: #92400e;
    line-height: 1.7;
}

.landing-page .lp-feature-grid {
    display: grid;
    gap: 18px;
}

.landing-page .lp-feature-card {
    position: relative;
}

.landing-page .lp-feature-card::before {
    display: none;
}

.landing-page .lp-step-number {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--lp-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.landing-page .lp-plan-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.landing-page .lp-plan-trust span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: var(--lp-text-soft);
    font-weight: 600;
    font-size: 0.88rem;
}

.landing-page .plans-grid {
    gap: 20px;
}

.landing-page .plan-card {
    padding: 28px;
}

.landing-page .plan-card.featured {
    border-color: rgba(31, 122, 229, 0.24);
    box-shadow: 0 24px 44px rgba(31, 122, 229, 0.1);
}

.landing-page .faq-grid {
    gap: 16px;
}

.landing-page .faq-item {
    overflow: hidden;
}

.landing-page .faq-question {
    padding: 24px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.45;
}

.landing-page .faq-answer {
    padding: 0 24px 0;
}

.landing-page .faq-item.open .faq-answer {
    padding-bottom: 24px;
}

.landing-page .trust-content,
.landing-page .final-cta .container {
    max-width: 960px;
}

.landing-page .final-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(93, 180, 245, 0.18), transparent 24%),
        linear-gradient(135deg, #081120 0%, #122038 56%, #193157 100%);
}

.landing-page .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
    pointer-events: none;
}

.landing-page .final-cta h2,
.landing-page .final-cta p,
.landing-page .final-cta .cta-small {
    position: relative;
    color: #fff;
}

.landing-page .final-cta p {
    color: rgba(226, 232, 240, 0.82);
}

.landing-page .final-cta h2 {
    font-size: clamp(1.95rem, 3.5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
    max-width: 15ch;
    margin-left: auto;
    margin-right: auto;
}

.landing-page .footer {
    background: linear-gradient(180deg, #081120 0%, #0e1728 100%);
}

.landing-page .footer .container {
    gap: 30px;
}

.landing-page .footer-legal-note {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-page .footer-col a:hover {
    color: #fff;
}

@media (min-width: 768px) {
    .landing-page .container {
        padding: 0 28px;
    }

    .landing-page .lp-audience-grid,
    .landing-page .lp-budget-grid,
    .landing-page .lp-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-page .lp-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .landing-page .header-nav {
        display: flex;
    }

    .landing-page .lp-header-cta,
    .landing-page .header-actions .btn {
        display: inline-flex;
    }

    .landing-page .mobile-toggle {
        display: none;
    }

    .landing-page .lp-hero-grid,
    .landing-page .lp-showcase {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    }

    .landing-page .lp-hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-page .lp-audience-grid,
    .landing-page .lp-budget-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-page .lp-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-page .lp-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .landing-page .header-nav {
        display: none;
    }

    .landing-page .header-actions .btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .landing-page .hero {
        padding: 116px 0 68px;
    }

    .landing-page .container {
        padding: 0 16px;
    }

    .landing-page .section {
        padding: 72px 0;
    }

    .landing-page .hero h1 {
        font-size: 2.1rem;
        line-height: 1.08;
        max-width: 12.5ch;
    }

    .landing-page .section-title {
        max-width: none;
        font-size: 1.72rem;
        line-height: 1.16;
    }

    .landing-page .section-subtitle,
    .landing-page .lp-hero-lead,
    .landing-page .hero-support {
        font-size: 0.98rem;
    }

    .landing-page .mockup-body,
    .landing-page .problem-card,
    .landing-page .solution-card,
    .landing-page .compare-card,
    .landing-page .lp-audience-card,
    .landing-page .lp-budget-card,
    .landing-page .lp-feature-card,
    .landing-page .lp-step-card {
        padding: 20px;
    }

    .landing-page .lp-mockup-top {
        grid-template-columns: 1fr;
    }

    .landing-page .lp-board-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-page .lp-board-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .landing-page .hero-actions .btn,
    .landing-page .cta-actions .btn {
        width: 100%;
    }

    .landing-page .lp-trust-inline span,
    .landing-page .lp-plan-trust span {
        width: 100%;
        justify-content: center;
    }

    .landing-page .faq-question {
        font-size: 0.94rem;
    }
}
