/* ===== CSS Variables ===== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;

    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;

    --border: #e2e8f0;
    --border-light: #f1f5f9;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: 1.25rem; }

.section-header {
    margin-bottom: 64px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.section-title {
    margin-bottom: 16px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.light {
    color: white;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.section-header.centered .section-desc {
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    }
    to {
        box-shadow: 0 4px 30px rgba(99, 102, 241, 0.6);
    }
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border-light);
    border-color: var(--text-muted);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.nav.scrolled .logo span {
    color: var(--text-primary);
}

.nav.scrolled .nav-cta {
    background: var(--primary);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo span {
    color: white;
    transition: var(--transition);
}

.logo span small {
    font-size: 0.7em;
    font-weight: 400;
    opacity: 0.7;
    margin-left: 4px;
}

.nav-cta {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(99, 102, 241, 0.7) 100%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    filter: blur(60px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 200px;
    left: -150px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 30%;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 140px 24px 100px;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    margin-bottom: 24px;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: white;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 45%;
    left: 10%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 1.5rem;
    font-weight: 700;
}

.card-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.card-icon.purple {
    background: #f3e8ff;
    color: var(--secondary);
}

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

.card-text {
    display: flex;
    flex-direction: column;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero Stats Bar */
.hero-stats-bar {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 32px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ===== Problem Section ===== */
.problem {
    padding: 120px 0;
    background: var(--bg-primary);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.problem-card {
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.problem-card.featured {
    grid-row: span 2;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.problem-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.problem-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    color: white;
    margin-bottom: 20px;
}

.problem-icon-small {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    color: white;
    margin-bottom: 20px;
}

.problem-card h3 {
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-secondary);
    flex: 1;
}

.problem-stat {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-big {
    font-size: 2rem;
    font-weight: 800;
    color: var(--danger);
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== Solution Section ===== */
.solution {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.solution-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-content {
    color: white;
}

.solution-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--primary-light);
    flex-shrink: 0;
}

.feature-text h4 {
    color: white;
    margin-bottom: 4px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* Solution Visual */
.solution-visual {
    position: relative;
}

.preview-window {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.window-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-dark);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ef4444; }
.window-dots span:nth-child(2) { background: #f59e0b; }
.window-dots span:nth-child(3) { background: #10b981; }

.window-title {
    color: white;
    font-size: 0.875rem;
}

.window-content {
    padding: 24px;
}

.preview-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius);
}

.preview-item.premium {
    background: #fef2f2;
}

.preview-item.opportunity {
    background: #f0fdf4;
}

.preview-item.competitive {
    background: #eef2ff;
}

.preview-icon {
    font-size: 1.25rem;
}

.preview-item.premium .preview-icon { color: #dc2626; }
.preview-item.opportunity .preview-icon { color: #16a34a; }
.preview-item.competitive .preview-icon { color: #4f46e5; }

.preview-item strong {
    display: block;
    color: var(--text-primary);
}

.preview-item small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.visual-decoration {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.decoration-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Sample Report Section ===== */
.sample-report {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.report-mockup {
    max-width: 900px;
    margin: 48px auto 0;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-dark);
}

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

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #374151;
}

.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-title {
    color: white;
    font-size: 0.875rem;
}

.mockup-content {
    padding: 32px;
}

/* ===== Report Preview Styles ===== */
.mockup-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 24px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.mockup-section-label:first-child {
    margin-top: 0;
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.insight-card {
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.premium-card { background: #fef2f2; }
.premium-card::before { background: linear-gradient(90deg, #ef4444, #f97316); }

.opportunity-card { background: #f0fdf4; }
.opportunity-card::before { background: linear-gradient(90deg, #22c55e, #10b981); }

.aligned-card { background: #eef2ff; }
.aligned-card::before { background: linear-gradient(90deg, #6366f1, #8b5cf6); }

.total-card { background: #f8fafc; }
.total-card::before { background: linear-gradient(90deg, #64748b, #94a3b8); }

.insight-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.premium-card .insight-number { color: #dc2626; }
.opportunity-card .insight-number { color: #16a34a; }
.aligned-card .insight-number { color: #4f46e5; }
.total-card .insight-number { color: #475569; }

.insight-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
}

.insight-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Methodology Box */
.methodology-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0369a1;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.method-header svg {
    stroke: #0369a1;
}

.methodology-box p {
    font-size: 0.875rem;
    color: #0c4a6e;
    line-height: 1.6;
}

.methodology-box strong {
    color: #0369a1;
}

/* Summary Blocks */
.summary-block {
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.summary-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-weight: 600;
}

.premium-block .summary-block-header {
    background: #fef2f2;
    color: #dc2626;
}

.opportunity-block .summary-block-header {
    background: #f0fdf4;
    color: #16a34a;
}

.aligned-block .summary-block-header {
    background: #eef2ff;
    color: #4f46e5;
}

.block-icon {
    font-size: 1rem;
}

.block-title {
    flex: 1;
}

.block-count {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Summary Tables */
.summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.summary-table th {
    text-align: left;
    padding: 10px 16px;
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-table th:nth-child(2),
.summary-table th:nth-child(3),
.summary-table th:nth-child(4) {
    text-align: right;
}

.summary-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-light);
}

.summary-table td:nth-child(2),
.summary-table td:nth-child(3),
.summary-table td:nth-child(4) {
    text-align: right;
}

.summary-table tbody tr:last-child td {
    border-bottom: none;
}

.summary-table .muted {
    color: var(--text-muted);
}

.diff-premium {
    color: #dc2626;
    font-weight: 600;
}

.diff-opportunity {
    color: #16a34a;
    font-weight: 600;
}

.diff-aligned {
    color: #4f46e5;
    font-weight: 600;
}

/* ===== Trust Section ===== */
.trust {
    padding: 120px 0;
    background: var(--bg-primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.trust-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.trust-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 16px 24px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.trust-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.trust-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== Value Section ===== */
.value {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.value-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.value h2 {
    color: white;
    margin-bottom: 40px;
}

.value-comparison {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.value-item.crossed {
    opacity: 0.6;
}

.value-item.crossed .value-label,
.value-item.crossed .value-price {
    text-decoration: line-through;
}

.value-item.highlight {
    background: white;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.value-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.value-item.highlight .value-price {
    color: var(--primary);
}

.value-note {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 120px 0;
    background: var(--bg-primary);
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    margin-top: 48px;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid var(--primary);
}

.pricing-header {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.price .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pricing-header .period {
    font-size: 1rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.pricing-tagline {
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 32px 40px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
}

.pricing-features svg {
    flex-shrink: 0;
}

.payment-section {
    padding: 40px;
    background: var(--bg-secondary);
}

.payment-section h3 {
    text-align: center;
    margin-bottom: 32px;
}

.payment-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step p {
    padding-top: 4px;
    color: var(--text-secondary);
}

.step strong {
    color: var(--text-primary);
}

.step .example {
    display: block;
    margin-top: 4px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.qr-container {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
}

.qr-label {
    margin-top: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Pricing Testimonial */
.pricing-testimonial {
    display: flex;
    align-items: flex-start;
}

.pricing-testimonial .testimonial-card {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.pricing-testimonial .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.pricing-testimonial .testimonial-quote {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.pricing-testimonial .testimonial-quote svg {
    width: 56px;
    height: 56px;
    color: var(--primary);
    opacity: 0.6;
}

.pricing-testimonial .testimonial-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.pricing-testimonial .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.pricing-testimonial .author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.pricing-testimonial .author-avatar svg {
    width: 28px;
    height: 28px;
}

.pricing-testimonial .author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.pricing-testimonial .author-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    letter-spacing: 0.01em;
}

.pricing-testimonial .author-link {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.pricing-testimonial .author-link:hover {
    color: #38bdf8;
}

.pricing-testimonial .testimonial-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ===== FAQ Section ===== */
.faq {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.faq-item {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-item h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ===== Final CTA ===== */
.final-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(99, 102, 241, 0.9) 100%);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: white;
    margin-bottom: 16px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

/* ===== Footer ===== */
.footer {
    padding: 48px 0 24px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand .logo span {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }

    .solution-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .solution-visual {
        order: -1;
    }

    .visual-decoration {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
    }

    .pricing-testimonial {
        order: -1;
    }

    .pricing-testimonial .testimonial-badge {
        margin-left: 0;
        margin-top: 8px;
    }
}

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

    .problem-card.featured {
        grid-row: span 1;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-number {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-features,
    .payment-section {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .insights-grid {
        gap: 12px;
    }

    .insight-card {
        padding: 16px 12px;
    }

    .insight-number {
        font-size: 1.75rem;
    }

    .price .amount {
        font-size: 3rem;
    }

    .summary-table {
        font-size: 0.8rem;
    }

    .summary-table th,
    .summary-table td {
        padding: 8px 12px;
    }
}

/* ===== Legality Section ===== */
.legality {
    padding: 100px 0;
    background: #0f172a;
}

.legality .section-tag {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
}

.legality .section-title {
    color: #fff;
}

.legality .section-desc {
    color: #94a3b8;
}

.legality-content {
    max-width: 900px;
    margin: 0 auto;
}

.legality-main {
    margin-bottom: 40px;
}

.legal-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.legal-card.primary {
    padding: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
    margin-bottom: 24px;
    text-align: center;
}

.legal-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: #6366f1;
    border-radius: 12px;
    color: #fff;
}

.legal-card h3 {
    color: #fff;
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.legal-card.primary p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.legal-card.primary strong {
    color: #fff;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.legal-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.legal-badge.eu {
    background: #1e40af;
    color: #fbbf24;
}

.legal-badge.ro {
    background: #1e3a8a;
    color: #fcd34d;
}

.legal-badge.gdpr {
    background: #047857;
    color: #fff;
}

.legal-badge.jurisprudenta {
    background: #7c3aed;
    color: #fff;
}

.legal-card h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.legal-card p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

.legality-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.summary-box {
    padding: 24px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
}

.summary-box.negative {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.summary-box h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.875rem;
    padding: 6px 0;
}

.legal-list li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.legal-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 10px;
}

.legal-note svg {
    flex-shrink: 0;
    color: #818cf8;
    margin-top: 2px;
}

.legal-note p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== Testimonial Section ===== */
.testimonial-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.testimonial-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 36px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 28px;
    color: #6366f1;
    opacity: 0.15;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #1e293b;
    margin-bottom: 24px;
    padding-top: 12px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6366f1;
    border-radius: 50%;
    color: #fff;
}

.author-info {
    flex: 1;
    min-width: 120px;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9375rem;
}

.author-link {
    font-size: 0.8125rem;
    color: #6366f1;
}

.author-link:hover {
    text-decoration: underline;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== Matching Visualization ===== */
.matching-visualization {
    max-width: 800px;
    margin: 48px auto 0;
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.matching-header {
    text-align: center;
    margin-bottom: 32px;
}

.matching-header h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.matching-header p {
    color: #64748b;
    font-size: 0.9375rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Row-based matching layout */
.matching-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.match-row {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 0;
    align-items: center;
}

.match-source,
.match-target {
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.match-source {
    border-left: 3px solid #818cf8;
    text-align: right;
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.match-target {
    border-right: 3px solid #10b981;
    text-align: left;
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.match-row.low-confidence .match-source {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.match-row.low-confidence .match-target {
    border-right-color: #f59e0b;
    background: #fffbeb;
}

.match-text {
    font-size: 0.875rem;
    color: #1e293b;
    line-height: 1.4;
}

.match-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #f59e0b;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 700;
    margin-left: 6px;
}

/* Connector */
.match-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: #10b981;
}

.connector-line.dashed {
    background: none;
    border-top: 2px dashed #f59e0b;
    height: 0;
}

.match-connector.high .connector-line {
    background: #10b981;
}

.match-connector.medium .connector-line {
    background: #6366f1;
}

.match-connector.low .connector-line {
    background: none;
    border-top: 2px dashed #f59e0b;
    height: 0;
}

.connector-score {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 26px;
    padding: 0 8px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.match-connector.high .connector-score {
    background: #10b981;
}

.match-connector.medium .connector-score {
    background: #6366f1;
}

.match-connector.low .connector-score {
    background: #f59e0b;
}

/* Labels */
.matching-labels {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 0;
    margin-bottom: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-left {
    text-align: right;
    padding-right: 16px;
}

.label-center {
    text-align: center;
}

.label-right {
    text-align: left;
    padding-left: 16px;
}

.label-icon-text {
    font-size: 0.875rem;
}

/* Matching Legend */
.matching-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.legend-dot.high {
    background: #10b981;
}

.legend-dot.medium {
    background: #6366f1;
}

.legend-dot.low {
    background: #f59e0b;
}

.legend-label {
    font-size: 0.8125rem;
    color: #1e293b;
}

.legend-label strong {
    font-weight: 600;
}

.legend-desc {
    font-size: 0.6875rem;
    color: #94a3b8;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .legality {
        padding: 60px 0;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legality-summary {
        grid-template-columns: 1fr;
    }

    .legal-card.primary {
        padding: 28px 20px;
    }

    .match-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .match-source,
    .match-target {
        text-align: left;
        border-radius: 0;
        border: 1px solid #e2e8f0;
    }

    .match-source {
        border-left: 3px solid #818cf8;
        border-radius: 8px 8px 0 0;
        border-bottom: none;
    }

    .match-target {
        border-left: 3px solid #10b981;
        border-right: 1px solid #e2e8f0;
        border-radius: 0 0 8px 8px;
    }

    .match-row.low-confidence .match-target {
        border-left-color: #f59e0b;
    }

    .match-connector {
        padding: 6px 0;
        background: #fff;
        border-left: 1px solid #e2e8f0;
        border-right: 1px solid #e2e8f0;
        margin-left: 3px;
    }

    .connector-line {
        display: none;
    }

    .matching-labels {
        display: none;
    }

    .matching-legend {
        gap: 12px;
    }

    .legend-item {
        flex: 1;
        min-width: 90px;
    }

    .testimonial-section {
        margin-top: 32px;
        padding-top: 32px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .matching-visualization {
        padding: 20px 16px;
        margin: 32px auto 0;
    }

    .match-source,
    .match-target {
        padding: 12px 14px;
    }

    .match-text {
        font-size: 0.8125rem;
    }

    .matching-legend {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .legend-item {
        flex-direction: row;
        gap: 10px;
        text-align: left;
    }

    .legend-desc {
        display: none;
    }
}
