/* ========================================
   ERROR PAGES (404, 500, 503)
   ======================================== */
.error-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

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

.error-illustration {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

.error-number {
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.error-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

.error-glow-red {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
}

.error-glow-yellow {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.error-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.error-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.error-suggestions {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
}

.error-suggestions h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    padding: 8px 0;
    color: #475569;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-suggestions li i {
    color: #4F46E5;
    font-size: 16px;
}

.error-suggestions p {
    color: #475569;
    font-size: 14px;
    margin: 0;
}

.error-debug {
    margin-top: 24px;
    padding: 12px;
    background: #fef3c7;
    border-radius: 8px;
    color: #92400e;
}

@media (max-width: 576px) {
    .error-section { padding: 40px 0; }
    .error-actions { flex-direction: column; align-items: stretch; }
    .error-actions .btn-lp-lg { justify-content: center; }
}

/* Landing page stylesheet */

:root {
    --lp-bg: #f8fafc;
    --lp-surface: rgba(255, 255, 255, 0.78);
    --lp-surface-strong: #ffffff;
    --lp-text: #0f172a;
    --lp-text-soft: #475569;
    --lp-border: rgba(148, 163, 184, 0.22);
    --lp-primary: #2563eb;
    --lp-primary-dark: #1d4ed8;
    --lp-secondary: #7c3aed;
    --lp-success: #10b981;
    --lp-warning: #f59e0b;
    --lp-danger: #ef4444;
    --lp-dark: #0f172a;
    --lp-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    --lp-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --lp-radius-xl: 28px;
    --lp-radius-lg: 22px;
    --lp-radius-md: 16px;
    --lp-radius-sm: 12px;
    --lp-container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--lp-text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 34%),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.10), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 26%, #f8fafc 100%);
    line-height: 1.65;
}

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

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

main {
    overflow: hidden;
}

.container {
    width: min(100% - 32px, var(--lp-container));
}

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

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--lp-primary-dark);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.lp-eyebrow-light {
    background: rgba(255, 255, 255, 0.1);
    color: #dbeafe;
}

.lp-section {
    padding: 110px 0;
    position: relative;
}

.lp-section-alt {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
}

.lp-section-dark {
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.18), transparent 25%),
        linear-gradient(135deg, #0f172a 0%, #111827 50%, #1e293b 100%);
}

.lp-title-light,
.lp-subtitle-light {
    color: #fff;
}

.lp-subtitle-light {
    opacity: 0.82;
}

.lp-section-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.lp-section-title {
    margin: 18px 0 14px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lp-section-subtitle {
    margin: 0;
    font-size: 1.06rem;
    color: var(--lp-text-soft);
}

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 2000;
    isolation: isolate;
    pointer-events: auto;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.lp-nav-inner {
    position: relative;
    z-index: 2;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lp-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--lp-text);
}

.lp-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.28);
}

.lp-logo-light {
    color: #fff;
}

.lp-nav-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    background: #fff;
    color: var(--lp-text);
}

.lp-nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-nav-links a {
    color: var(--lp-text-soft);
    font-weight: 600;
    transition: color 0.2s ease;
}

.lp-nav-links a:hover {
    color: var(--lp-primary);
}

.lp-nav-cta {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-lp-primary,
.btn-lp-outline,
.btn-lp-outline-light,
.btn-lp-ghost {
    position: relative;
    z-index: 4;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-lp-primary,
.btn-lp-outline,
.btn-lp-outline-light {
    padding: 14px 24px;
}

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

.btn-lp-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    box-shadow: 0 16px 30px rgba(59, 130, 246, 0.24);
}

.btn-lp-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 22px 34px rgba(59, 130, 246, 0.30);
}

.btn-lp-outline {
    color: var(--lp-primary-dark);
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.20);
}

.btn-lp-outline:hover {
    color: var(--lp-primary-dark);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.38);
    box-shadow: var(--lp-shadow-soft);
}

.btn-lp-outline-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.btn-lp-outline-light:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.btn-lp-ghost {
    padding: 11px 16px;
    color: var(--lp-primary-dark);
    background: rgba(37, 99, 235, 0.08);
}

.btn-lp-ghost:hover {
    color: var(--lp-primary-dark);
    background: rgba(37, 99, 235, 0.12);
}

.lp-hero {
    position: relative;
    padding: 88px 0 100px;
}

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

.lp-hero-blob {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.26;
}

.lp-hero-blob-1 {
    top: -90px;
    left: -90px;
    background: rgba(59, 130, 246, 0.45);
}

.lp-hero-blob-2 {
    right: -120px;
    top: 20px;
    background: rgba(168, 85, 247, 0.34);
}

.lp-hero-title {
    margin: 18px 0 22px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.lp-hero-subtitle {
    max-width: 620px;
    margin: 0 0 32px;
    color: var(--lp-text-soft);
    font-size: 1.16rem;
}

.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.lp-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.lp-hero-stat {
    min-width: 150px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--lp-shadow-soft);
}

.lp-hero-stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.lp-hero-stat span {
    color: var(--lp-text-soft);
    font-weight: 600;
    font-size: 0.95rem;
}

.lp-hero-mockup {
    position: relative;
    max-width: 560px;
    margin-left: auto;
}

.lp-mockup-window {
    position: relative;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(244,247,255,0.96) 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
}

.lp-mockup-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.lp-mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.lp-mockup-bar span:nth-child(1) { background: #f87171; }
.lp-mockup-bar span:nth-child(2) { background: #fbbf24; }
.lp-mockup-bar span:nth-child(3) { background: #34d399; }

.lp-mockup-body {
    display: flex;
    gap: 18px;
}

.lp-mockup-side {
    width: 78px;
    padding: 18px 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.lp-mockup-logo,
.lp-mockup-nav-item {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-mockup-logo {
    color: #fff;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
}

.lp-mockup-nav-item {
    color: #cbd5e1;
    background: rgba(255,255,255,0.06);
}

.lp-mockup-nav-item.active {
    color: #fff;
    background: rgba(59,130,246,0.34);
}

.lp-mockup-content {
    flex: 1;
}

.lp-mockup-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.lp-mockup-card {
    padding: 18px;
    border-radius: 22px;
    color: #fff;
    box-shadow: var(--lp-shadow-soft);
}

.lp-mockup-card-blue { background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%); }
.lp-mockup-card-green { background: linear-gradient(135deg, #059669 0%, #34d399 100%); }
.lp-mockup-card-purple { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); }
.lp-mockup-card-orange { background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%); }

.lp-mockup-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
}

.lp-mockup-card-value {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.lp-mockup-card-label {
    font-size: 0.92rem;
    opacity: 0.92;
}

.lp-mockup-chart {
    display: flex;
    align-items: end;
    gap: 10px;
    min-height: 170px;
    padding: 24px 18px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(241,245,249,0.95) 0%, rgba(255,255,255,0.95) 100%);
}

.lp-mockup-chart .lp-mockup-bar {
    flex: 1;
    margin: 0;
    min-height: 30px;
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    box-shadow: inset 0 -6px 12px rgba(15, 23, 42, 0.12);
}

.lp-mockup-floating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow: var(--lp-shadow-soft);
}

.lp-mockup-floating strong {
    display: block;
    line-height: 1.2;
    font-size: 0.95rem;
}

.lp-mockup-floating small {
    color: var(--lp-text-soft);
}

.lp-mockup-floating-1 {
    left: -28px;
    bottom: 86px;
}

.lp-mockup-floating-2 {
    right: -24px;
    top: 110px;
}

.lp-trust {
    padding: 26px 0 12px;
}

.lp-trust-text {
    margin: 0 0 18px;
    text-align: center;
    color: var(--lp-text-soft);
    font-weight: 600;
}

.lp-trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.lp-trust-logos span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.95);
    color: var(--lp-text-soft);
    font-weight: 700;
}

.lp-feature-card,
.lp-category-card {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255,255,255,0.94);
    box-shadow: var(--lp-shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-feature-card:hover,
.lp-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
}

.lp-feature-card h3,
.lp-category-card h3 {
    margin: 0 0 12px;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.lp-feature-card p,
.lp-category-card p {
    margin: 0;
    color: var(--lp-text-soft);
}

.lp-feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #fff;
    box-shadow: var(--lp-shadow-soft);
}

.lp-feature-icon-blue { background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%); }
.lp-feature-icon-purple { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); }
.lp-feature-icon-green { background: linear-gradient(135deg, #059669 0%, #34d399 100%); }
.lp-feature-icon-orange { background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%); }
.lp-feature-icon-red { background: linear-gradient(135deg, #dc2626 0%, #fb7185 100%); }
.lp-feature-icon-indigo { background: linear-gradient(135deg, #4338ca 0%, #818cf8 100%); }

.lp-category-card {
    position: relative;
}

.lp-category-card-featured {
    border-color: rgba(37, 99, 235, 0.26);
    box-shadow: 0 22px 48px rgba(37, 99, 235, 0.14);
}

.lp-category-head {
    margin-bottom: 16px;
}

.lp-category-badge,
.lp-category-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lp-category-badge {
    margin-bottom: 14px;
}

.lp-category-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.lp-badge-blue { color: #1d4ed8; background: rgba(37, 99, 235, 0.10); }
.lp-badge-green { color: #059669; background: rgba(16, 185, 129, 0.12); }
.lp-badge-purple { color: #7c3aed; background: rgba(124, 58, 237, 0.12); }

.lp-category-list,
.lp-checklist,
.lp-footer-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.lp-category-list li,
.lp-checklist li,
.lp-footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.lp-category-list i,
.lp-checklist i {
    margin-top: 3px;
    color: var(--lp-primary);
}

.lp-timeline {
    display: grid;
    gap: 18px;
}

.lp-timeline-item {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--lp-shadow-soft);
}

.lp-timeline-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.lp-timeline-content h4 {
    margin: 0 0 8px;
    font-weight: 800;
    font-size: 1.1rem;
}

.lp-timeline-content h4 i {
    margin-right: 8px;
    color: var(--lp-primary);
}

.lp-timeline-content p {
    margin: 0;
    color: var(--lp-text-soft);
}

.lp-timeline-blue { background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%); }
.lp-timeline-indigo { background: linear-gradient(135deg, #4338ca 0%, #818cf8 100%); }
.lp-timeline-purple { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); }
.lp-timeline-green { background: linear-gradient(135deg, #059669 0%, #34d399 100%); }
.lp-timeline-teal { background: linear-gradient(135deg, #0f766e 0%, #2dd4bf 100%); }
.lp-timeline-orange { background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%); }
.lp-timeline-red { background: linear-gradient(135deg, #dc2626 0%, #fb7185 100%); }
.lp-timeline-pink { background: linear-gradient(135deg, #db2777 0%, #f472b6 100%); }

.lp-perf-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
}

.lp-perf-row + .lp-perf-row {
    margin-top: 24px;
}

.lp-perf-label {
    color: rgba(255,255,255,0.72);
    margin-bottom: 6px;
}

.lp-perf-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
}

.lp-perf-bar {
    margin-top: 12px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
}

.lp-perf-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%);
}

.lp-cta {
    padding: 0 0 110px;
}

.lp-cta-inner {
    text-align: center;
    padding: 56px 26px;
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 22%),
        linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    box-shadow: 0 28px 60px rgba(59, 130, 246, 0.24);
}

.lp-cta-inner h2 {
    margin: 0 0 14px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 800;
}

.lp-cta-inner p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,0.88);
    font-size: 1.08rem;
}

.lp-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.lp-footer {
    color: #e2e8f0;
    padding: 90px 0 34px;
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.12), transparent 26%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.lp-footer-tagline {
    margin: 20px 0 0;
    color: rgba(226, 232, 240, 0.76);
    max-width: 480px;
}

.lp-footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.lp-footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255,255,255,0.08);
    transition: all 0.25s ease;
}

.lp-footer-socials a:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-2px);
}

.lp-footer-title {
    margin: 8px 0 18px;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.lp-footer-list a,
.lp-footer-contact li {
    color: rgba(226, 232, 240, 0.76);
}

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

.lp-footer-divider {
    margin: 34px 0 20px;
    border-color: rgba(255,255,255,0.10);
}

.lp-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(226, 232, 240, 0.66);
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .lp-nav-menu {
        margin-top: 18px;
        padding: 16px;
        border-radius: 18px;
        border: 1px solid rgba(226, 232, 240, 0.9);
        background: rgba(255,255,255,0.96);
        box-shadow: var(--lp-shadow-soft);
    }

    .lp-nav-links,
    .lp-nav-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-nav-links {
        gap: 14px;
        margin-bottom: 16px;
    }

    .lp-hero {
        padding-top: 52px;
    }

    .lp-hero-title {
        font-size: clamp(2.2rem, 8vw, 3.6rem);
    }

    .lp-hero-mockup {
        margin: 30px auto 0;
    }

    .lp-mockup-floating-1,
    .lp-mockup-floating-2 {
        position: static;
        margin-top: 14px;
    }

    .lp-section {
        padding: 84px 0;
    }
}

@media (max-width: 767.98px) {
    .lp-nav-inner {
        min-height: 74px;
    }

    .lp-hero-cta,
    .lp-cta-buttons,
    .lp-hero-stats {
        flex-direction: column;
    }

    .btn-lp-primary,
    .btn-lp-outline,
    .btn-lp-outline-light {
        width: 100%;
    }

    .lp-mockup-body {
        flex-direction: column;
    }

    .lp-mockup-side {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

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

    .lp-timeline-item {
        grid-template-columns: 1fr;
    }

    .lp-perf-card,
    .lp-feature-card,
    .lp-category-card,
    .lp-timeline-item,
    .lp-hero-stat,
    .lp-cta-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .lp-footer-bottom {
        flex-direction: column;
    }
}

/* ========================================================================
   PAGE HEADER & BREADCRUMB
   ======================================================================== */

.lp-page-header {
    padding: 120px 0 50px;
    text-align: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(37,99,235,0.06), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(124,58,237,0.06), transparent 50%);
}

.lp-page-header-sm {
    padding-bottom: 30px;
}

.lp-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--lp-text-soft);
}

.lp-breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    opacity: 0.5;
}

.lp-breadcrumb a {
    color: var(--lp-primary);
    font-weight: 600;
}

.lp-breadcrumb a:hover {
    text-decoration: underline;
}

.lp-breadcrumb .active {
    font-weight: 600;
    color: var(--lp-text);
}

.lp-page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.15;
}

.lp-page-subtitle {
    font-size: 1.1rem;
    color: var(--lp-text-soft);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================================================
   CATEGORIES DETAIL PAGE
   ======================================================================== */

.lp-cat-detail-card {
    background: var(--lp-surface-strong);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lp-cat-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
}

.lp-cat-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.lp-cat-detail-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.lp-cat-detail-desc {
    color: var(--lp-text-soft);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.65;
}

.lp-cat-detail-section {
    margin-bottom: 20px;
}

.lp-cat-detail-section h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-cat-subtest-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-cat-subtest-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--lp-text-soft);
    padding: 6px 10px;
    background: rgba(37,99,235,0.04);
    border-radius: var(--lp-radius-sm);
}

.lp-cat-subtest-list li i {
    color: var(--lp-success);
    font-size: 1rem;
}

.lp-cat-detail-meta {
    border-top: 1px solid var(--lp-border);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-cat-meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.lp-cat-meta-label {
    font-weight: 600;
    color: var(--lp-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-cat-meta-item > span:last-child {
    color: var(--lp-text-soft);
    text-align: right;
    max-width: 60%;
}

.lp-category-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.lp-badge-blue {
    background: rgba(37,99,235,0.1);
    color: var(--lp-primary);
}

.lp-badge-green {
    background: rgba(16,185,129,0.1);
    color: var(--lp-success);
}

.lp-badge-purple {
    background: rgba(124,58,237,0.1);
    color: var(--lp-secondary);
}

/* ========================================================================
   BLOG INDEX PAGE
   ======================================================================== */

.lp-blog-search {
    margin-bottom: 20px;
}

.lp-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-surface-strong);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    padding: 8px 12px;
}

.lp-search-form i {
    color: var(--lp-text-soft);
    font-size: 1.1rem;
}

.lp-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--lp-text);
}

.btn-lp-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: var(--lp-radius-sm);
}

.lp-blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.lp-cat-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(37,99,235,0.06);
    color: var(--lp-text-soft);
    transition: all 0.2s;
    border: 1px solid transparent;
}

.lp-cat-pill:hover,
.lp-cat-pill.active {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

.lp-blog-card {
    background: var(--lp-surface-strong);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lp-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
}

.lp-blog-card-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    height: 200px;
}

.lp-blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.lp-blog-card:hover .lp-blog-card-thumb img {
    transform: scale(1.06);
}

.lp-blog-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--lp-primary);
    color: #fff;
}

.lp-blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-blog-card-meta {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--lp-text-soft);
    margin-bottom: 10px;
}

.lp-blog-card-meta i {
    margin-right: 4px;
}

.lp-blog-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.35;
}

.lp-blog-card-title a:hover {
    color: var(--lp-primary);
}

.lp-blog-card-excerpt {
    color: var(--lp-text-soft);
    font-size: 0.88rem;
    flex: 1;
    margin-bottom: 12px;
}

.lp-blog-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lp-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.lp-blog-read-more:hover {
    gap: 10px;
    color: var(--lp-primary-dark);
}

/* Empty State */
.lp-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--lp-text-soft);
}

.lp-empty-state i {
    font-size: 3rem;
    margin-bottom: 14px;
    opacity: 0.4;
}

.lp-empty-state h4 {
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--lp-text);
}

/* ========================================================================
   BLOG SIDEBAR
   ======================================================================== */

.lp-sidebar-widget {
    background: var(--lp-surface-strong);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.lp-widget-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-text);
}

.lp-widget-post {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--lp-border);
    transition: opacity 0.2s;
}

.lp-widget-post:last-child {
    border-bottom: none;
}

.lp-widget-post:hover {
    opacity: 0.8;
}

.lp-widget-post img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--lp-radius-sm);
    flex-shrink: 0;
}

.lp-widget-post-cat {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--lp-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.lp-widget-post h5 {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 4px 0 0;
    color: var(--lp-text);
}

.lp-widget-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-widget-cat-list li {
    border-bottom: 1px solid var(--lp-border);
}

.lp-widget-cat-list li:last-child {
    border-bottom: none;
}

.lp-widget-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
    font-size: 0.9rem;
    color: var(--lp-text-soft);
    transition: color 0.2s;
}

.lp-widget-cat-list a:hover {
    color: var(--lp-primary);
}

.lp-sidebar-cta {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    border: none;
    color: #fff;
    text-align: center;
}

.lp-sidebar-cta h4 {
    color: #fff;
    font-weight: 800;
}

.lp-sidebar-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.lp-sidebar-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 14px;
}

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

.lp-sidebar-cta .btn-lp-primary:hover {
    background: #f0f4ff;
}

/* ========================================================================
   BLOG ARTICLE (SHOW) PAGE
   ======================================================================== */

.lp-article {
    background: var(--lp-surface-strong);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 40px;
    margin-bottom: 30px;
}

.lp-article-header {
    margin-bottom: 24px;
}

.lp-article-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 12px 0 16px;
}

.lp-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.85rem;
    color: var(--lp-text-soft);
}

.lp-article-meta i {
    margin-right: 5px;
}

.lp-article-cover {
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    margin-bottom: 28px;
}

.lp-article-cover img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.lp-article-body {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--lp-text);
}

.lp-article-body p {
    margin-bottom: 18px;
}

.lp-article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid var(--lp-border);
    margin-top: 28px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lp-text-soft);
}

.lp-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    color: var(--lp-text-soft);
    cursor: pointer;
    transition: all 0.2s;
}

.lp-share-btn:hover {
    transform: translateY(-2px);
}

.lp-share-wa:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.lp-share-tw:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

.lp-share-fb:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.lp-share-copy:hover {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

/* Related Posts */
.lp-related-posts {
    margin-top: 10px;
}

.lp-related-posts h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-related-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    background: var(--lp-surface-strong);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    transition: box-shadow 0.3s, transform 0.3s;
}

.lp-related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-soft);
}

.lp-related-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--lp-radius-sm);
    flex-shrink: 0;
}

.lp-related-card h5 {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 4px 0 0;
    line-height: 1.35;
}

/* ========================================================================
   ABOUT PAGE
   ======================================================================== */

.lp-about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-about-img-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: var(--lp-radius-xl);
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 3rem;
    color: var(--lp-primary);
}

.lp-about-img-placeholder span {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-about-card {
    background: var(--lp-surface-strong);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    height: 100%;
}

.lp-about-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.lp-about-card p {
    color: var(--lp-text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.lp-about-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.lp-about-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-about-mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--lp-text-soft);
    line-height: 1.6;
}

.lp-about-mission-list li i {
    color: var(--lp-success);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ========================================================================
   CONTACT SECTION
   ======================================================================== */

.lp-contact-info-card {
    background: var(--lp-surface-strong);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    height: 100%;
}

.lp-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--lp-border);
}

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

.lp-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lp-contact-item h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--lp-text);
}

.lp-contact-item p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--lp-text-soft);
    line-height: 1.55;
}

.lp-contact-form-card {
    background: var(--lp-surface-strong);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
}

.lp-contact-form-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-contact-form .form-control {
    border-radius: var(--lp-radius-sm);
    border: 1px solid var(--lp-border);
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-contact-form .form-control:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    outline: none;
}

.lp-contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lp-text);
}

.lp-map-wrapper {
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lp-border);
}

.lp-map-placeholder {
    background: rgba(37,99,235,0.04);
    padding: 60px 20px;
    text-align: center;
    color: var(--lp-text-soft);
}

.lp-map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.4;
}

.lp-map-placeholder p {
    margin: 0;
    font-size: 0.92rem;
}

/* ========================================================================
   RESPONSIVE - NEW PAGES
   ======================================================================== */

@media (max-width: 991.98px) {
    .lp-page-header {
        padding: 100px 0 40px;
    }

    .lp-article {
        padding: 24px;
    }

    .lp-cat-detail-card {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .lp-page-header {
        padding: 90px 0 30px;
    }

    .lp-page-title {
        font-size: 1.8rem;
    }

    .lp-article {
        padding: 18px;
    }

    .lp-article-meta {
        flex-direction: column;
        gap: 6px;
    }

    .lp-blog-card-thumb {
        height: 160px;
    }

    .lp-contact-form-card,
    .lp-contact-info-card {
        padding: 20px;
    }

    .lp-cat-meta-item {
        flex-direction: column;
        gap: 2px;
    }

    .lp-cat-meta-item > span:last-child {
        text-align: left;
        max-width: 100%;
    }
}

/* ========================================================================
   ACCESSIBILITY: SKIP TO CONTENT
   ======================================================================== */

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 8px;
    z-index: 9999;
    padding: 12px 18px;
    background: var(--lp-primary);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-to-content:focus {
    top: 8px;
    color: #fff;
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--lp-primary);
}

/* ========================================================================
   NAVBAR SCROLLED STATE
   ======================================================================== */

.lp-nav.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    border-bottom-color: rgba(226, 232, 240, 0.6);
}

.lp-nav-links a.active {
    color: var(--lp-primary);
    position: relative;
}

.lp-nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-secondary));
    border-radius: 2px;
}

/* ========================================================================
   BACK TO TOP BUTTON
   ======================================================================== */

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.40);
}

.back-to-top:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 575.98px) {
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

/* ========================================================================
   COOKIE CONSENT BANNER
   ======================================================================== */

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9998;
    max-width: 920px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner[hidden] {
    display: block !important;
    visibility: hidden;
    pointer-events: none;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-inner {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
}

.cookie-banner-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.32);
}

.cookie-banner-content {
    min-width: 0;
}

.cookie-banner-title {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--lp-text);
}

.cookie-banner-desc {
    margin: 0;
    font-size: 0.88rem;
    color: var(--lp-text-soft);
    line-height: 1.5;
}

.cookie-banner-desc a {
    color: var(--lp-primary);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 9px 14px !important;
    font-size: 0.85rem !important;
    border-radius: 999px !important;
    white-space: nowrap;
}

.cookie-option {
    padding: 14px;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    margin-bottom: 12px;
    transition: background 0.2s ease;
}

.cookie-option:hover {
    background: rgba(37, 99, 235, 0.04);
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option h6 {
    font-weight: 700;
    margin: 0;
}

.cookie-option small {
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .cookie-banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 14px;
        padding: 18px;
    }

    .cookie-banner-icon {
        margin: 0 auto;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================================================
   FORM VALIDATION STYLES
   ======================================================================== */

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--lp-danger);
    padding-right: 2.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='%23ef4444'%3E%3Cpath d='M6 0a6 6 0 1 0 0 12A6 6 0 0 0 6 0zm.75 9.5a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0zM7.5 7.5a.75.75 0 1 1-1.5 0V4a.75.75 0 1 1 1.5 0v3.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 0.95rem;
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: var(--lp-success);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='%2310b981'%3E%3Cpath d='M10.28 3.28a.75.75 0 0 0-1.06 0L4.5 8 2.78 6.28a.75.75 0 1 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.06 0l5.25-5.25a.75.75 0 0 0 0-1.06z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 0.95rem;
}

.invalid-feedback {
    font-size: 0.82rem;
    margin-top: 4px;
    color: var(--lp-danger);
    font-weight: 600;
}

/* ========================================================================
   PRINT STYLES
   ======================================================================== */

@media print {
    .lp-nav,
    .lp-footer,
    .cookie-banner,
    .back-to-top,
    .lp-cta,
    .btn-lp-primary,
    .btn-lp-outline,
    .lp-trust,
    .lp-nav-cta {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }

    .lp-section {
        padding: 24px 0 !important;
    }

    a {
        text-decoration: underline;
        color: #000 !important;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }
}
