/* ============================================
   MUHASEBEM — Landing Page Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
    --l-primary: #2F6FED;
    --l-primary-dark: #1B4FBF;
    --l-primary-light: #EBF1FE;
    --l-primary-glow: rgba(47, 111, 237, 0.15);
    --l-accent: #10B981;
    --l-accent-light: #ECFDF5;
    --l-warning: #F59E0B;
    --l-warning-light: #FFFBEB;
    --l-dark: #0F172A;
    --l-dark-soft: #1E293B;
    --l-text: #334155;
    --l-text-light: #64748B;
    --l-text-lighter: #94A3B8;
    --l-bg: #FFFFFF;
    --l-bg-soft: #F8FAFC;
    --l-bg-alt: #F1F5F9;
    --l-border: #E2E8F0;
    --l-border-light: #F1F5F9;
    --l-radius: 16px;
    --l-radius-sm: 10px;
    --l-radius-lg: 24px;
    --l-radius-xl: 32px;
    --l-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --l-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    --l-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
    --l-shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.16);
    --l-shadow-primary: 0 8px 30px rgba(47, 111, 237, 0.25);
    --l-max-w: 1200px;
    --l-header-h: 72px;
    --l-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
.landing-page {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--l-text);
    background: var(--l-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.landing-page * {
    box-sizing: border-box;
}

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

/* --- Container --- */
.l-container {
    max-width: var(--l-max-w);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .l-container {
        padding: 0 40px;
    }
}

/* --- Section Spacing --- */
.l-section {
    padding: 80px 0;
}

.l-section--alt {
    background: var(--l-bg-soft);
}

.l-section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--l-dark);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.l-section-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--l-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* ============================================
   HEADER (Sticky)
   ============================================ */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--l-header-h);
    z-index: 1000;
    transition: var(--l-transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.l-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--l-border);
    box-shadow: var(--l-shadow-sm);
}

.l-header-inner {
    max-width: var(--l-max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.l-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    color: var(--l-dark);
    letter-spacing: -0.02em;
}

.l-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--l-primary), #5B8DEF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(47, 111, 237, 0.3);
}

.l-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(47, 111, 237, 0.3);
}

/* Desktop Nav */
.l-nav {
    display: none;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.l-nav a {
    text-decoration: none;
    color: var(--l-text-light);
    font-size: 14px;
    font-weight: 500;
    transition: var(--l-transition);
    position: relative;
}

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

.l-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--l-primary);
    transition: var(--l-transition);
    border-radius: 1px;
}

.l-nav a:hover::after {
    width: 100%;
}

/* Header CTA */
.l-header-actions {
    display: none;
}

@media (min-width: 1024px) {
    .l-header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
}

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

.l-btn--primary {
    background: var(--l-primary);
    color: #fff;
    box-shadow: var(--l-shadow-primary);
}

.l-btn--primary:hover {
    background: var(--l-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(47, 111, 237, 0.35);
}

.l-btn--outline {
    background: transparent;
    color: var(--l-primary);
    border: 1.5px solid var(--l-border);
}

.l-btn--outline:hover {
    border-color: var(--l-primary);
    background: var(--l-primary-light);
}

.l-btn--ghost {
    background: transparent;
    color: var(--l-text);
    padding: 12px 16px;
}

.l-btn--ghost:hover {
    background: var(--l-bg-alt);
}

.l-btn--lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--l-radius);
}

.l-btn--white {
    background: #fff;
    color: var(--l-primary);
    box-shadow: var(--l-shadow);
}

.l-btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--l-shadow-lg);
}

/* Mobile Hamburger */
.l-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

@media (min-width: 1024px) {
    .l-hamburger {
        display: none;
    }
}

.l-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--l-dark);
    border-radius: 2px;
    transition: var(--l-transition);
}

.l-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.l-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.l-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.l-mobile-nav {
    position: fixed;
    top: var(--l-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.l-mobile-nav.active {
    transform: translateX(0);
}

@media (min-width: 1024px) {
    .l-mobile-nav {
        display: none !important;
    }
}

.l-mobile-nav a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--l-text);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--l-radius-sm);
    transition: var(--l-transition);
}

.l-mobile-nav a:hover {
    background: var(--l-bg-alt);
    color: var(--l-primary);
}

.l-mobile-nav-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 32px;
}

.l-mobile-nav-actions .l-btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.l-hero {
    padding-top: calc(var(--l-header-h) + 60px);
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--l-bg) 0%, var(--l-bg-soft) 100%);
    position: relative;
    overflow: hidden;
}

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

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

.l-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

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

.l-hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .l-hero-content {
        text-align: left;
    }
}

.l-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--l-primary-light);
    color: var(--l-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.l-hero-badge i {
    font-size: 12px;
}

.l-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--l-dark);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}

.l-hero h1 span {
    background: linear-gradient(135deg, var(--l-primary), #5B8DEF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.l-hero-desc {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--l-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

@media (max-width: 1023px) {
    .l-hero-desc {
        margin: 0 auto 32px;
    }
}

.l-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 1023px) {
    .l-hero-ctas {
        justify-content: center;
    }
}

.l-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

@media (max-width: 1023px) {
    .l-hero-stats {
        justify-content: center;
    }
}

.l-hero-stat {
    text-align: center;
}

@media (min-width: 1024px) {
    .l-hero-stat {
        text-align: left;
    }
}

.l-hero-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--l-dark);
}

.l-hero-stat span {
    font-size: 13px;
    color: var(--l-text-lighter);
}

/* Hero Visual / Dashboard Mockup */
.l-hero-visual {
    position: relative;
}

.l-hero-mockup {
    width: 100%;
    border-radius: var(--l-radius-lg);
    box-shadow: var(--l-shadow-xl);
    border: 1px solid var(--l-border-light);
    background: var(--l-dark);
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.l-hero-mockup-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
}

.l-mockup-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.l-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.l-mockup-dot:nth-child(1) {
    background: #EF4444;
}

.l-mockup-dot:nth-child(2) {
    background: #F59E0B;
}

.l-mockup-dot:nth-child(3) {
    background: #10B981;
}

.l-mockup-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-left: 8px;
}

.l-mockup-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.l-mockup-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.l-mockup-card-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.l-mockup-card-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.l-mockup-card--income .l-mockup-card-value {
    color: #10B981;
}

.l-mockup-card--expense .l-mockup-card-value {
    color: #EF4444;
}

.l-mockup-card--balance .l-mockup-card-value {
    color: #60A5FA;
}

.l-mockup-chart {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 120px;
}

.l-mockup-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    min-height: 8px;
    animation: barGrow 1.5s ease-out forwards;
}

@keyframes barGrow {
    from {
        height: 8px;
    }
}

.l-mockup-bar:nth-child(1) {
    background: var(--l-primary);
    height: 40%;
}

.l-mockup-bar:nth-child(2) {
    background: var(--l-accent);
    height: 65%;
}

.l-mockup-bar:nth-child(3) {
    background: var(--l-primary);
    height: 35%;
}

.l-mockup-bar:nth-child(4) {
    background: var(--l-accent);
    height: 80%;
}

.l-mockup-bar:nth-child(5) {
    background: var(--l-primary);
    height: 50%;
}

.l-mockup-bar:nth-child(6) {
    background: var(--l-accent);
    height: 90%;
}

.l-mockup-bar:nth-child(7) {
    background: var(--l-primary);
    height: 45%;
}

.l-mockup-bar:nth-child(8) {
    background: var(--l-accent);
    height: 70%;
}

.l-mockup-bar:nth-child(9) {
    background: var(--l-primary);
    height: 55%;
}

.l-mockup-bar:nth-child(10) {
    background: var(--l-accent);
    height: 95%;
}

/* Floating Highlight Tags */
.l-hero-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--l-dark);
    box-shadow: var(--l-shadow-lg);
    animation: floatTag 3s ease-in-out infinite;
    white-space: nowrap;
}

.l-hero-tag i {
    font-size: 14px;
}

.l-hero-tag:nth-child(2) {
    top: 20%;
    right: -12px;
    animation-delay: 0.5s;
}

.l-hero-tag:nth-child(3) {
    bottom: 30%;
    left: -12px;
    animation-delay: 1s;
}

.l-hero-tag:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes floatTag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ============================================
   TRUST BAR
   ============================================ */
.l-trust {
    padding: 40px 0;
    border-top: 1px solid var(--l-border-light);
    border-bottom: 1px solid var(--l-border-light);
    background: var(--l-bg);
}

.l-trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.l-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--l-bg-soft);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--l-text);
    border: 1px solid var(--l-border-light);
    transition: var(--l-transition);
}

.l-trust-item:hover {
    border-color: var(--l-primary);
    background: var(--l-primary-light);
    color: var(--l-primary);
}

.l-trust-item i {
    font-size: 16px;
    color: var(--l-accent);
}

.l-trust-item:hover i {
    color: var(--l-primary);
}

/* ============================================
   HOW IT WORKS (3 Steps)
   ============================================ */
.l-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
}

@media (min-width: 768px) {
    .l-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.l-step-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--l-bg);
    border-radius: var(--l-radius);
    border: 1px solid var(--l-border-light);
    transition: var(--l-transition);
    position: relative;
}

.l-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--l-shadow-lg);
    border-color: var(--l-primary);
}

.l-step-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--l-primary), #5B8DEF);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(47, 111, 237, 0.25);
}

.l-step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--l-dark);
    margin-bottom: 10px;
}

.l-step-card p {
    font-size: 14px;
    color: var(--l-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Arrow between steps (desktop) */
@media (min-width: 768px) {
    .l-step-card:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -28px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: var(--l-text-lighter);
        font-weight: 300;
    }
}

/* ============================================
   FEATURES (6 Cards)
   ============================================ */
.l-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .l-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.l-feature-card {
    padding: 32px 28px;
    background: var(--l-bg);
    border-radius: var(--l-radius);
    border: 1px solid var(--l-border-light);
    transition: var(--l-transition);
    position: relative;
    overflow: hidden;
}

.l-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--l-primary), var(--l-accent));
    opacity: 0;
    transition: var(--l-transition);
}

.l-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--l-shadow-lg);
    border-color: transparent;
}

.l-feature-card:hover::before {
    opacity: 1;
}

.l-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 22px;
    margin-bottom: 20px;
}

.l-feature-icon--blue {
    background: var(--l-primary-light);
    color: var(--l-primary);
}

.l-feature-icon--green {
    background: var(--l-accent-light);
    color: var(--l-accent);
}

.l-feature-icon--amber {
    background: var(--l-warning-light);
    color: var(--l-warning);
}

.l-feature-icon--purple {
    background: #F3E8FF;
    color: #9333EA;
}

.l-feature-icon--rose {
    background: #FFE4E6;
    color: #E11D48;
}

.l-feature-icon--teal {
    background: #CCFBF1;
    color: #0D9488;
}

.l-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--l-dark);
    margin-bottom: 8px;
}

.l-feature-card p {
    font-size: 14px;
    color: var(--l-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PRICING PREVIEW
   ============================================ */
.l-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .l-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.l-price-card {
    padding: 32px 28px;
    background: var(--l-bg);
    border-radius: var(--l-radius);
    border: 1px solid var(--l-border);
    text-align: center;
    transition: var(--l-transition);
    position: relative;
}

.l-price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--l-shadow-lg);
}

.l-price-card--popular {
    border: 2px solid var(--l-primary);
    box-shadow: var(--l-shadow);
}

.l-price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--l-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(47, 111, 237, 0.3);
}

.l-price-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
}

.l-price-card--free .l-price-card-icon {
    background: var(--l-bg-alt);
    color: var(--l-text);
}

.l-price-card--popular .l-price-card-icon {
    background: var(--l-primary-light);
    color: var(--l-primary);
}

.l-price-card--pro .l-price-card-icon {
    background: var(--l-warning-light);
    color: var(--l-warning);
}

.l-price-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--l-dark);
    margin-bottom: 4px;
}

.l-price-card .l-price-who {
    font-size: 13px;
    color: var(--l-text-lighter);
    margin-bottom: 20px;
}

.l-price-card .l-price-diff {
    font-size: 14px;
    font-weight: 600;
    color: var(--l-text);
    padding: 12px 0;
    border-top: 1px solid var(--l-border-light);
    margin-bottom: 20px;
}

.l-price-card .l-btn {
    width: 100%;
}

/* ============================================
   SECURITY BLOCK
   ============================================ */
.l-security {
    position: relative;
    overflow: hidden;
}

.l-security-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

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

.l-security-content h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--l-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.l-security-content>p {
    font-size: 15px;
    color: var(--l-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.l-security-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.l-security-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--l-bg);
    border-radius: var(--l-radius-sm);
    border: 1px solid var(--l-border-light);
    transition: var(--l-transition);
}

.l-security-item:hover {
    border-color: var(--l-accent);
    box-shadow: var(--l-shadow-sm);
}

.l-security-item i {
    color: var(--l-accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.l-security-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--l-dark);
    margin-bottom: 2px;
}

.l-security-item span {
    font-size: 13px;
    color: var(--l-text-light);
}

/* Shield visual */
.l-security-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-shield {
    width: 240px;
    height: 280px;
    background: linear-gradient(135deg, var(--l-primary-light), #fff);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--l-border);
}

.l-shield i {
    font-size: 72px;
    color: var(--l-primary);
    opacity: 0.3;
}

.l-shield::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px dashed var(--l-border);
    border-radius: inherit;
}

/* ============================================
   FAQ
   ============================================ */
.l-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.l-faq-item {
    background: var(--l-bg);
    border: 1px solid var(--l-border-light);
    border-radius: var(--l-radius-sm);
    overflow: hidden;
    transition: var(--l-transition);
}

.l-faq-item:hover {
    border-color: var(--l-border);
}

.l-faq-item.active {
    border-color: var(--l-primary);
    box-shadow: var(--l-shadow-sm);
}

.l-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--l-dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    gap: 16px;
}

.l-faq-q i {
    font-size: 14px;
    color: var(--l-text-lighter);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.l-faq-item.active .l-faq-q i {
    transform: rotate(180deg);
    color: var(--l-primary);
}

.l-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.l-faq-item.active .l-faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

.l-faq-a p {
    font-size: 14px;
    color: var(--l-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FINAL CTA
   ============================================ */
.l-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--l-dark), #1a2744);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.l-cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.l-cta-final h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    line-height: 1.2;
}

.l-cta-final p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.l-cta-final-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.l-footer {
    background: var(--l-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 0 32px;
}

.l-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

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

.l-footer-brand {
    max-width: 280px;
}

.l-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.l-footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}

.l-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.l-footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    padding: 6px 0;
    transition: var(--l-transition);
}

.l-footer-col a:hover {
    color: #fff;
    padding-left: 4px;
}

.l-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.l-footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.l-footer-socials {
    display: flex;
    gap: 16px;
}

.l-footer-socials a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    transition: var(--l-transition);
    text-decoration: none;
}

.l-footer-socials a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   MOBILE BOTTOM CTA BAR
   ============================================ */
.l-mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--l-border);
    z-index: 999;
    gap: 12px;
}

@media (min-width: 1024px) {
    .l-mobile-cta-bar {
        display: none;
    }
}

.l-mobile-cta-bar .l-btn {
    flex: 1;
    justify-content: center;
    padding: 14px 16px;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.l-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.l-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.l-reveal.delay-1 {
    transition-delay: 0.1s;
}

.l-reveal.delay-2 {
    transition-delay: 0.2s;
}

.l-reveal.delay-3 {
    transition-delay: 0.3s;
}

.l-reveal.delay-4 {
    transition-delay: 0.4s;
}

.l-reveal.delay-5 {
    transition-delay: 0.5s;
}

/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */
@media (max-width: 767px) {
    .l-section {
        padding: 60px 0;
    }

    .l-container {
        padding: 0 16px;
    }

    .l-hero {
        padding-top: calc(var(--l-header-h) + 32px);
        padding-bottom: 48px;
    }

    .l-hero h1 {
        font-size: 28px;
        line-height: 1.15;
    }

    .l-hero-desc {
        font-size: 15px;
        margin: 0 auto 24px;
    }

    /* Hero CTA butonları tam genişlikte altalta */
    .l-hero-ctas {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }

    .l-hero-ctas .l-btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero istatistikler */
    .l-hero-stats {
        gap: 20px;
        justify-content: center;
    }

    /* Floating tagleri gizle — mobilde taşıyor */
    .l-hero-tag {
        display: none;
    }

    /* Mockup kartlar mobilde 1 sütun */
    .l-mockup-body {
        grid-template-columns: 1fr 1fr;
    }

    .l-mockup-card-value {
        font-size: 16px;
    }

    .l-mockup-card-label {
        font-size: 10px;
    }

    .l-mockup-chart {
        height: 80px;
    }

    /* Trust bar — yatay scroll */
    .l-trust-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 8px;
        justify-content: flex-start;
    }

    .l-trust-item {
        flex-shrink: 0;
        font-size: 12px;
        padding: 10px 16px;
    }

    /* Steps grid — her kart ikonu büyük padding küçülsün */
    .l-step-card {
        padding: 28px 20px;
    }

    /* Features grid — tek sütun, küçük padding */
    .l-features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .l-feature-card {
        padding: 24px 20px;
    }

    /* Pricing grid — tek sütun, doğru gap */
    .l-pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .l-price-card {
        padding: 28px 20px;
    }

    .l-price-value {
        font-size: 40px;
    }

    /* Security grid  */
    .l-security-inner {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .l-shield {
        width: 180px;
        height: 210px;
    }

    .l-shield i {
        font-size: 56px;
    }

    /* FAQ */
    .l-faq-q {
        padding: 16px 18px;
        font-size: 14px;
    }

    /* CTA Final — mobil CTA bar ile çakışmaması için alt padding */
    .l-cta-final {
        padding: 48px 0 100px;
    }

    .l-cta-final h2 {
        font-size: 24px;
    }

    .l-cta-final-actions {
        flex-direction: column;
        gap: 12px;
    }

    .l-cta-final-actions .l-btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer grid */
    .l-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .l-footer-brand {
        max-width: 100%;
    }

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

    /* Benefits  */
    .l-benefit-item {
        padding: 20px 16px;
        gap: 14px;
    }

    /* Section titles */
    .l-section-title {
        font-size: 24px;
    }

    .l-section-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    /* Modül blokları vb. aynı kalsın (padding ayarları kaldırıldı) */

    /* Limit notice */
    .l-limit-notice {
        flex-direction: column;
        padding: 16px 18px;
        gap: 10px;
    }

    /* Module blocks */
    .l-module-block {
        padding: 24px 20px;
    }

    /* Comparison table scroll indicator */
    .l-compare-table-wrap {
        margin: 0 -16px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    /* Security details grid */
    .l-security-details-grid {
        grid-template-columns: 1fr !important;
    }

    .l-sec-detail-card {
        padding: 24px 20px;
    }

    /* Trust summary */
    .l-trust-summary {
        gap: 24px;
    }

    .l-trust-summary-num {
        font-size: 36px;
    }

    /* Mobile CTA bar buttons */
    .l-mobile-cta-bar {
        padding: 10px 12px;
        gap: 8px;
    }

    .l-mobile-cta-bar .l-btn {
        padding: 12px 12px;
        font-size: 13px;
    }
}

/* Extra bottom padding for mobile CTA bar */
@media (max-width: 1023px) {
    .l-footer {
        padding-bottom: 100px;
    }
}

/* ============================================
   VALUE PROPOSITION (Benefits)
   ============================================ */
.l-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}

.l-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: var(--l-bg);
    border-radius: var(--l-radius);
    border: 1px solid var(--l-border-light);
    transition: var(--l-transition);
}

.l-benefit-item:hover {
    transform: translateX(6px);
    border-color: var(--l-primary);
    box-shadow: var(--l-shadow);
}

.l-benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    background: var(--l-primary-light);
    color: var(--l-primary);
}

.l-benefit-icon--green {
    background: var(--l-accent-light);
    color: var(--l-accent);
}

.l-benefit-icon--amber {
    background: var(--l-warning-light);
    color: var(--l-warning);
}

.l-benefit-icon--purple {
    background: #F3E8FF;
    color: #9333EA;
}

.l-benefit-icon--rose {
    background: #FFE4E6;
    color: #E11D48;
}

.l-benefit-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--l-dark);
    margin-bottom: 4px;
}

.l-benefit-body p {
    font-size: 14px;
    color: var(--l-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FEATURE SCENARIO TEXT
   ============================================ */
.l-feature-scenario {
    display: block;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--l-border-light);
    font-size: 13px;
    font-style: italic;
    color: var(--l-text-lighter);
    line-height: 1.6;
}

.l-feature-scenario i {
    font-size: 10px;
    color: var(--l-primary);
    margin-right: 4px;
    font-style: normal;
}

/* ============================================
   STEP ICON (inside step cards)
   ============================================ */
.l-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 28px;
    color: var(--l-text-lighter);
}

/* ============================================
   PRICING ENHANCEMENTS
   ============================================ */
.l-price-amount {
    padding: 16px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.l-price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--l-dark);
}

.l-price-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--l-dark);
    line-height: 1;
}

.l-price-period {
    font-size: 14px;
    color: var(--l-text-lighter);
    font-weight: 500;
}

.l-price-soon {
    font-size: 20px;
    font-weight: 700;
    color: var(--l-primary);
    padding: 12px 0;
}

.l-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.l-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--l-text);
    border-bottom: 1px solid var(--l-border-light);
}

.l-price-features li:last-child {
    border-bottom: none;
}

.l-price-features li i.fa-check {
    color: var(--l-accent);
    font-size: 12px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.l-price-features li i.fa-times {
    color: var(--l-text-lighter);
    font-size: 12px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.l-price-features--disabled {
    opacity: 0.5;
}

/* Limit Notice */
.l-limit-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 680px;
    margin: 40px auto 0;
    padding: 20px 24px;
    background: var(--l-primary-light);
    border: 1px solid rgba(47, 111, 237, 0.15);
    border-radius: var(--l-radius-sm);
}

.l-limit-notice>i {
    color: var(--l-primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.l-limit-notice strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--l-dark);
    margin-bottom: 4px;
}

.l-limit-notice p {
    font-size: 13px;
    color: var(--l-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ADDITIONAL UTILITY
   ============================================ */
.l-text-gradient {
    background: linear-gradient(135deg, var(--l-primary), #5B8DEF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.l-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--l-primary), var(--l-accent));
    border-radius: 2px;
    margin: 0 auto 24px;
}

/* ============================================
   NAV ACTIVE STATE
   ============================================ */
.l-nav a.active {
    color: var(--l-primary);
    font-weight: 600;
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.l-page-hero {
    padding: calc(var(--l-header-h) + 60px) 0 60px;
    text-align: center;
    background: var(--l-bg-alt);
    border-bottom: 1px solid var(--l-border-light);
}

.l-page-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--l-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.l-page-hero p {
    font-size: 16px;
    color: var(--l-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.l-page-hero--compact {
    padding-bottom: 40px;
}

.l-page-hero--compact h1 {
    font-size: clamp(24px, 3.5vw, 36px);
}

.l-page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--l-primary-light);
    color: var(--l-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

/* ============================================
   MODULE BLOCKS (Features page)
   ============================================ */
.l-module-block {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--l-bg);
    border-radius: var(--l-radius);
    border: 1px solid var(--l-border-light);
}

.l-module-block--highlight {
    border: 2px solid var(--l-primary);
    box-shadow: var(--l-shadow);
}

.l-module-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.l-module-tag--blue {
    background: var(--l-primary-light);
    color: var(--l-primary);
}

.l-module-tag--green {
    background: var(--l-accent-light);
    color: var(--l-accent);
}

.l-module-tag--amber {
    background: var(--l-warning-light);
    color: var(--l-warning);
}

.l-module-tag--purple {
    background: #F3E8FF;
    color: #9333EA;
}

.l-module-tag--teal {
    background: #CCFBF1;
    color: #0D9488;
}

.l-module-tag--rose {
    background: #FFE4E6;
    color: #E11D48;
}

.l-module-content h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--l-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.l-module-problem,
.l-module-solution {
    padding: 16px 20px;
    border-radius: var(--l-radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--l-text);
}

.l-module-problem {
    background: #FEF3C7;
    border-left: 4px solid var(--l-warning);
}

.l-module-solution {
    background: var(--l-accent-light);
    border-left: 4px solid var(--l-accent);
}

.l-module-problem strong,
.l-module-solution strong {
    color: var(--l-dark);
}

.l-module-usecases {
    margin: 24px 0;
}

.l-module-usecases h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--l-dark);
    margin-bottom: 12px;
}

.l-module-usecases ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.l-module-usecases li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--l-text);
    line-height: 1.5;
}

.l-module-usecases li i {
    color: var(--l-accent);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.l-module-impact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--l-primary-light);
    border-radius: var(--l-radius-sm);
    font-size: 14px;
    color: var(--l-text);
    line-height: 1.5;
}

.l-module-impact>i {
    font-size: 20px;
    color: var(--l-primary);
    flex-shrink: 0;
}

.l-module-impact strong {
    color: var(--l-primary);
}

/* Module Quick Nav */
.l-module-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.l-module-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--l-bg);
    border: 1px solid var(--l-border-light);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--l-text);
    text-decoration: none;
    transition: var(--l-transition);
}

.l-module-nav-item:hover {
    border-color: var(--l-primary);
    color: var(--l-primary);
    box-shadow: var(--l-shadow-sm);
}

/* ============================================
   COMPARISON TABLE (Pricing page)
   ============================================ */
.l-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--l-radius);
    border: 1px solid var(--l-border-light);
    background: var(--l-bg);
}

.l-compare-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 14px;
}

.l-compare-table thead th {
    padding: 16px 20px;
    background: var(--l-dark);
    color: #fff;
    font-weight: 700;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 2;
}

.l-compare-table thead th:first-child {
    text-align: left;
    min-width: 200px;
}

.l-compare-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--l-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
}

.l-compare-table td {
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid var(--l-border-light);
    color: var(--l-text);
}

.l-compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--l-dark);
}

.l-compare-highlight {
    background: rgba(47, 111, 237, 0.04);
}

.l-compare-category td {
    background: var(--l-bg-alt);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--l-text-lighter);
    padding: 10px 20px;
}

.l-c-yes {
    color: var(--l-accent);
}

.l-c-no {
    color: var(--l-text-lighter);
    opacity: 0.4;
}

/* Limit Notice Large Variant */
.l-limit-notice--large {
    max-width: 800px;
    padding: 32px;
    gap: 20px;
}

.l-limit-notice--large h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--l-dark);
    margin-bottom: 8px;
}

.l-limit-notice--large ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.l-limit-notice--large li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--l-text);
}

.l-limit-notice-icon {
    flex-shrink: 0;
}

.l-limit-notice-icon i {
    font-size: 32px;
    color: var(--l-primary);
}

/* Price description text */
.l-price-desc {
    font-size: 13px;
    color: var(--l-text-lighter);
    margin-bottom: 20px;
    text-align: center;
}

/* ============================================
   SECURITY DETAILS (Security page)
   ============================================ */
.l-security-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .l-security-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.l-sec-detail-card {
    padding: 32px;
    background: var(--l-bg);
    border-radius: var(--l-radius);
    border: 1px solid var(--l-border-light);
    transition: var(--l-transition);
}

.l-sec-detail-card:hover {
    box-shadow: var(--l-shadow);
    border-color: var(--l-border);
}

.l-sec-detail-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    margin-bottom: 20px;
}

.l-sec-detail-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--l-dark);
    margin-bottom: 20px;
}

.l-sec-detail-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.l-sec-detail-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--l-border-light);
}

.l-sec-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.l-sec-detail-row strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--l-dark);
    margin-bottom: 4px;
}

.l-sec-detail-row p {
    font-size: 13px;
    color: var(--l-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Trust Summary */
.l-trust-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.l-trust-summary-item {
    text-align: center;
}

.l-trust-summary-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--l-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.l-trust-summary-item p {
    font-size: 13px;
    color: var(--l-text-light);
    font-weight: 500;
    margin: 0;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.l-legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.l-legal-content h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--l-dark);
    margin: 32px 0 12px;
    padding-top: 16px;
    border-top: 1px solid var(--l-border-light);
}

.l-legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.l-legal-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--l-dark);
    margin: 20px 0 8px;
}

.l-legal-content p {
    font-size: 14px;
    color: var(--l-text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.l-legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.l-legal-content li {
    font-size: 14px;
    color: var(--l-text);
    line-height: 1.8;
    margin-bottom: 4px;
}

.l-legal-content a {
    color: var(--l-primary);
    text-decoration: underline;
}

.l-legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 16px 0;
    border: 1px solid var(--l-border-light);
    border-radius: var(--l-radius-sm);
    overflow: hidden;
}

.l-legal-table th {
    background: var(--l-bg-alt);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    color: var(--l-dark);
    border-bottom: 1px solid var(--l-border-light);
}

.l-legal-table td {
    padding: 10px 14px;
    color: var(--l-text);
    border-bottom: 1px solid var(--l-border-light);
}

.l-legal-table tr:last-child td {
    border-bottom: none;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.l-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--l-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 16px 24px;
}

.l-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.l-cookie-inner p {
    font-size: 13px;
    color: var(--l-text);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.l-cookie-inner p i {
    color: var(--l-warning);
    margin-right: 6px;
}

.l-cookie-inner p a {
    color: var(--l-primary);
    text-decoration: underline;
}

.l-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.l-btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}

@media (max-width: 767px) {
    .l-cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .l-cookie-actions {
        width: 100%;
    }

    .l-cookie-actions .l-btn {
        flex: 1;
    }

    .l-module-block {
        padding: 24px 20px;
    }
}

/* Pricing detailed grid */
.l-pricing-grid--detailed .l-price-card {
    padding: 36px 28px;
}