:root {
    --rd-primary: #5c94eb;
    --rd-primary-dark: #4a7fd4;
    --rd-primary-light: #8bb4f0;
    --rd-accent: #fa943d;
    --rd-bg: #f8fafc;
    --rd-surface: #ffffff;
    --rd-text: #1e293b;
    --rd-text-muted: #64748b;
    --rd-border: #e2e8f0;
    --rd-gradient: linear-gradient(135deg, #4a7fd4 0%, #6b9fef 30%, #8b7ce0 60%, #c48550 85%, #e09045 100%);
    --rd-radius: 16px;
    --rd-shadow: 0 4px 24px rgba(0,0,0,.06);
    --rd-shadow-lg: 0 8px 40px rgba(0,0,0,.10);
}

*, *::before, *::after { box-sizing: border-box; }

body.landing-body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--rd-text);
    background: var(--rd-bg);
    -webkit-font-smoothing: antialiased;
}

.ln-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rd-border);
    transition: box-shadow .3s;
}
.ln-navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.ln-navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ln-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--rd-primary);
    text-decoration: none;
    letter-spacing: -.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ln-logo-text { letter-spacing: -.5px; }
.ln-logo-dot { color: var(--rd-accent); }
.ln-logo-orbit {
    position: relative;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ln-logo-core {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--rd-primary);
    box-shadow: 0 0 8px rgba(92,148,235,.4);
}
.ln-logo-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(92,148,235,.2);
    animation: orbitSpin 3s linear infinite;
}
.ln-logo-satellite {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rd-accent);
    box-shadow: 0 0 6px rgba(250,148,61,.5);
}
@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.ln-logo-orbit-footer .ln-logo-core {
    background: #8bb4f0;
}
.ln-nav-links { display: flex; gap: 28px; align-items: center; }
.ln-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--rd-text-muted);
    text-decoration: none;
    transition: color .2s;
}
.ln-nav-links a:hover { color: var(--rd-primary); }
.ln-nav-actions { display: flex; gap: 12px; align-items: center; }

.ln-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.ln-burger svg,
.ln-burger i { display: block; }

.btn-rd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
}
.btn-rd-primary {
    background: var(--rd-primary);
    color: #fff;
}
.btn-rd-primary:hover {
    background: var(--rd-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(92,148,235,.3);
    color: #fff;
}
.btn-rd-outline {
    background: transparent;
    color: var(--rd-primary);
    border: 1.5px solid var(--rd-primary);
}
.btn-rd-outline:hover {
    background: var(--rd-primary);
    color: #fff;
}
.btn-rd-white {
    background: #fff;
    color: var(--rd-primary);
}
.btn-rd-white:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}
.btn-rd-lg { padding: 14px 32px; font-size: 16px; border-radius: 12px; }

.ln-hero {
    padding: 150px 24px 160px;
    background: var(--rd-gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ln-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(5%, -5%); }
}
.ln-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.ln-hero-content {
    flex: 1 1 0;
    text-align: left;
}
.ln-hero-badge-col {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ln-hero-badges-group {
    position: relative;
    width: 200px;
    height: 230px;
}
.ln-hero-price-badge {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(92,148,235,.45);
    backdrop-filter: blur(12px);
    border: none;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    padding: 24px;
    box-shadow: 0 0 0 2px rgba(92,148,235,.5), 0 0 40px rgba(92,148,235,.2), inset 0 0 30px rgba(92,148,235,.12);
}
.ln-hero-price-badge::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(92,148,235,.7), rgba(255,255,255,.15), rgba(92,148,235,.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.ln-hero-badge-secondary {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(250,148,61,.45);
    backdrop-filter: blur(12px);
    border: none;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    padding: 16px;
    box-shadow: 0 0 0 2px rgba(250,148,61,.5), 0 0 30px rgba(250,148,61,.2), inset 0 0 20px rgba(250,148,61,.12);
    z-index: 1;
}
.ln-hero-badge-secondary::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(250,148,61,.7), rgba(255,255,255,.15), rgba(250,148,61,.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.ln-hero-badge-secondary .badge-text {
    opacity: 0;
    transition: opacity .8s ease;
}
.ln-hero-badge-secondary .badge-text.visible { opacity: 1; }
.ln-hero-price-badge .badge-text {
    opacity: 0;
    transition: opacity .8s ease;
}
.ln-hero-price-badge .badge-text.visible { opacity: 1; }
.ln-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -.5px;
}
.ln-hero-rotating {
    height: 36px;
    margin: 0 0 36px;
    display: flex;
    align-items: center;
}
.ln-hero-rotating-text {
    font-size: 19px;
    opacity: 0;
    transition: opacity .8s ease;
    color: rgba(255,255,255,.85);
    line-height: 1.4;
}
.ln-hero-rotating-text.visible { opacity: 1; }
.ln-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.ln-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.ln-section-gray { background: #f1f5f9; }
.ln-section-gray .ln-section { padding-left: 24px; padding-right: 24px; }
.ln-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -.3px;
}
.ln-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--rd-text-muted);
    margin: 0 0 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ln-mp-section {
    position: relative;
    z-index: 2;
}
.ln-mp-section .ln-section {
    padding-top: 0;
    padding-bottom: 40px;
}
.ln-mp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: -36px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.ln-mp-card {
    background: var(--rd-surface);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    padding: 48px 32px 52px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    box-shadow: var(--rd-shadow);
}
.ln-mp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rd-shadow-lg);
}
.ln-mp-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    background: #fff;
    padding: 8px;
}
.ln-mp-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.ln-mp-card p { font-size: 14px; color: var(--rd-text-muted); margin: 0; line-height: 1.5; }

.ln-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 36px;
    padding: 28px 0;
    border-radius: var(--rd-radius);
    background: var(--rd-surface);
    border: 1px solid var(--rd-border);
    box-shadow: var(--rd-shadow);
}
.ln-stat {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}
.ln-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--rd-primary);
    line-height: 1.1;
    margin-bottom: 4px;
}
.ln-stat-label {
    font-size: 14px;
    color: var(--rd-text-muted);
    font-weight: 500;
}
.ln-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--rd-border);
    flex-shrink: 0;
}

.ln-highlights-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.ln-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--rd-surface);
    border: 1px solid var(--rd-border);
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rd-text);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.ln-highlight svg,
.ln-highlight i {
    color: var(--rd-accent);
    flex-shrink: 0;
}

.ln-how-section {
    background: var(--rd-surface);
    border-bottom: 1px solid var(--rd-border);
}
.ln-how-section .ln-section {
    padding-top: 64px;
    padding-bottom: 64px;
}
.ln-how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.ln-how-step {
    flex: 0 0 260px;
    text-align: center;
    padding: 0 16px;
    position: relative;
}
.ln-how-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a7fd4, #7b8fe8);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 3px 12px rgba(92,148,235,.25);
}
.ln-how-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--rd-surface);
    border: 2px solid var(--rd-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: border-color .3s, box-shadow .3s;
}
.ln-how-icon svg,
.ln-how-icon i {
    color: var(--rd-primary);
}
.ln-how-step:hover .ln-how-icon {
    border-color: var(--rd-primary);
    box-shadow: 0 0 0 4px rgba(92,148,235,.1);
}
.ln-how-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--rd-text);
}
.ln-how-step p {
    font-size: 14px;
    color: var(--rd-text-muted);
    margin: 0;
    line-height: 1.5;
}
.ln-how-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-top: 68px;
    color: var(--rd-border);
}
.ln-how-arrow svg {
    opacity: .5;
}


.ln-pain-solution {
    background: #f1f5f9;
}
.ln-pain-solution .ln-section {
    padding-top: 24px;
    padding-bottom: 80px;
}
.ln-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.ln-comp-card {
    border-radius: var(--rd-radius);
    padding: 40px;
    border: 1px solid var(--rd-border);
}
.ln-comp-card.pain {
    background: #f8fafc;
    border-color: #e2e8f0;
}
.ln-comp-card.solution {
    background: var(--rd-surface);
}
.ln-comp-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.ln-comp-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 16px; color: #fff;
    flex-shrink: 0;
    line-height: 1;
}
.pain .ln-comp-icon { background: #ef4444; }
.solution .ln-comp-icon { background: var(--rd-primary); }
.ln-comp-header h3 {
    margin: 0; font-size: 20px; font-weight: 700;
}
.ln-comp-list {
    list-style: none; padding: 0; margin: 0;
}
.ln-comp-list li {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--rd-border);
    color: var(--rd-text-muted);
    position: relative;
    padding-left: 24px;
}
.ln-comp-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rd-border);
}
.pain .ln-comp-list li::before { color: #ef4444; }
.solution .ln-comp-list li::before { color: var(--rd-primary); }
.ln-comp-list li:last-child { border-bottom: none; }
.solution .ln-comp-list li { color: var(--rd-text); font-weight: 500; }

.ln-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.ln-feature-card {
    background: var(--rd-surface);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    padding: 32px 28px;
    transition: box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.ln-feature-card::before,
.ln-feature-card::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .4s, transform .4s;
    z-index: 0;
    pointer-events: none;
}
.ln-feature-card:nth-child(odd)::before {
    bottom: -35px;
    left: -35px;
    background: rgba(92,148,235,.13);
    transform: scale(.5);
}
.ln-feature-card:nth-child(odd)::after {
    top: -35px;
    right: -35px;
    background: rgba(250,148,61,.10);
    transform: scale(.5);
}
.ln-feature-card:nth-child(even)::before {
    top: -35px;
    left: -35px;
    background: rgba(250,148,61,.13);
    transform: scale(.5);
}
.ln-feature-card:nth-child(even)::after {
    bottom: -35px;
    right: -35px;
    background: rgba(92,148,235,.10);
    transform: scale(.5);
}
.ln-feature-card:hover::before {
    opacity: 1;
    transform: scale(1) translate(14px, -14px);
}
.ln-feature-card:nth-child(even):hover::before {
    transform: scale(1) translate(14px, 14px);
}
.ln-feature-card:hover::after {
    opacity: 1;
    transform: scale(1) translate(-14px, 14px);
}
.ln-feature-card:nth-child(even):hover::after {
    transform: scale(1) translate(-14px, -14px);
}
.ln-feature-card:hover {
    box-shadow: var(--rd-shadow-lg);
}
.ln-feature-card .ln-feature-icon-circle {
    transition: transform .35s ease;
    position: relative;
    z-index: 1;
}
.ln-feature-card:hover .ln-feature-icon-circle {
    transform: scale(1.03);
}
.ln-feature-card h3, .ln-feature-card p {
    position: relative;
    z-index: 1;
}
.ln-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4a7fd4, #7b8fe8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ln-feature-icon svg { width: 24px; height: 24px; color: #fff; }
.ln-feature-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ln-feature-card:nth-child(odd) .ln-feature-icon-circle {
    background: linear-gradient(135deg, #5d95e8, #417bd8);
    box-shadow: 0 4px 16px rgba(93,149,232,.3);
}
.ln-feature-card:nth-child(even) .ln-feature-icon-circle {
    background: linear-gradient(135deg, #ff973e, #e57c24);
    box-shadow: 0 4px 16px rgba(255,151,62,.3);
}
.ln-feature-icon-circle svg,
.ln-feature-icon-circle i { width: 24px; height: 24px; color: #fff; }
.ln-feature-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.ln-feature-card p { font-size: 14px; color: var(--rd-text-muted); margin: 0; line-height: 1.6; }

.ln-tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.ln-tariffs-grid.ln-tariffs-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ln-tariff-limits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.ln-tariff-limits span {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    background: #fef2f2;
    color: #b91c1c;
    font-weight: 500;
}
.ln-tariff-excluded {
    opacity: .55;
}
.ln-tariff-excluded li {
    text-decoration: line-through;
    color: var(--rd-text-muted);
}
.ln-tariff-card {
    background: var(--rd-surface);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
    position: relative;
}
.ln-tariff-card > a.btn-rd {
    margin-top: auto;
    text-align: center;
    justify-content: center;
    width: 100%;
}
.ln-tariff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rd-shadow-lg);
}
.ln-tariff-card.elevated {
    transform: translateY(-18px);
}
.ln-tariff-card.elevated:hover {
    transform: translateY(-22px);
}
.ln-tariff-card.featured {
    border-color: var(--rd-primary);
    box-shadow: 0 0 0 2px var(--rd-primary-light);
}
.ln-tariff-card.best {
    border-color: var(--rd-accent);
    box-shadow: 0 0 0 2px rgba(250,148,61,.3);
}
.ln-tariff-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rd-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
}
.ln-tariff-badge.best-badge {
    background: var(--rd-accent);
    color: #fff;
}
.ln-tariff-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 4px; }
.ln-tariff-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--rd-primary);
    margin: 12px 0 4px;
}
.ln-tariff-price span { font-size: 16px; font-weight: 500; color: var(--rd-text-muted); }
.ln-tariff-desc { font-size: 14px; color: var(--rd-text-muted); margin: 0 0 20px; }
.ln-tariff-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.ln-tariff-features li {
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}
.ln-tariff-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235c94eb' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
    margin-top: 1px;
}

.ln-tools-section {
    background: var(--rd-surface);
    border-top: 1px solid var(--rd-border);
    border-bottom: 1px solid var(--rd-border);
}
.ln-tools-section .ln-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.ln-tools-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
}
.ln-tools-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ln-tools-left .ln-tool-card {
    flex: 1;
}
.ln-tool-card {
    position: relative;
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--rd-text);
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s;
}
.ln-tool-card::before,
.ln-tool-card::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .4s, transform .4s;
    z-index: 0;
    pointer-events: none;
}
.ln-tool-card::before {
    bottom: -40px;
    left: -40px;
    transform: translate(0, 0) scale(.5);
}
.ln-tool-card::after {
    top: -40px;
    right: -40px;
    transform: translate(0, 0) scale(.5);
}
.ln-tool-card:hover::before {
    opacity: 1;
    transform: translate(16px, -16px) scale(1);
}
.ln-tool-card:hover::after {
    opacity: 1;
    transform: translate(-16px, 16px) scale(1);
}
.ln-tool-map::before { background: rgba(92,148,235,.12); }
.ln-tool-map::after  { background: rgba(250,148,61,.10); }
.ln-tool-calc::before { background: rgba(250,148,61,.12); }
.ln-tool-calc::after  { background: rgba(92,148,235,.10); }
.ln-tool-blog::before { background: rgba(25,135,84,.10); }
.ln-tool-blog::after  { background: rgba(92,148,235,.08); }
.ln-tool-card:hover {
    box-shadow: var(--rd-shadow-lg);
    text-decoration: none;
    color: var(--rd-text);
}
.ln-tool-card-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.ln-tool-card-content {
    position: relative;
    z-index: 1;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}
.ln-tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ln-tool-info { flex: 1; }
.ln-tool-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 5px;
}
.ln-tool-info p {
    font-size: 13.5px;
    color: var(--rd-text-muted);
    margin: 0;
    line-height: 1.5;
}
.ln-tool-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--rd-text-muted);
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    transition: color .2s, transform .2s;
}
.ln-tool-card:hover .ln-tool-arrow {
    color: var(--rd-primary);
    transform: translateX(3px);
}
.ln-tool-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(92,148,235,.1);
    color: var(--rd-primary);
    z-index: 2;
}

.ln-tool-map { background: #f8fbff; }
.ln-tool-calc { background: #fffaf5; }
.ln-tool-blog {
    background: #f6faf8;
    flex: 1;
}
.ln-tool-blog-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    flex: 1;
}
.ln-tool-blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 16px 0 8px;
}
.ln-tool-blog-content p {
    font-size: 14px;
    color: var(--rd-text-muted);
    line-height: 1.6;
    margin: 0 0 16px;
}
.ln-tool-blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.ln-tool-blog-cats span {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 14px;
    background: rgba(25,135,84,.08);
    color: #198754;
}
.ln-tool-blog .ln-tool-arrow {
    margin-top: auto;
}
.ln-tool-blog-bg {
    opacity: .7;
}


.ln-faq-list { max-width: 800px; margin: 0 auto; }
.ln-faq-item {
    border: 1px solid var(--rd-border);
    border-radius: 12px;
    margin-bottom: 12px;
    background: var(--rd-surface);
    overflow: hidden;
}
.ln-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--rd-text);
    font-family: inherit;
}
.ln-faq-q:hover { color: var(--rd-primary); }
.ln-faq-q svg,
.ln-faq-q i {
    width: 20px;
    height: 20px;
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.ln-faq-item.open .ln-faq-q svg,
.ln-faq-item.open .ln-faq-q i { transform: rotate(180deg); }
.ln-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}
.ln-faq-item.open .ln-faq-a { max-height: 400px; }
.ln-faq-a-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--rd-text-muted);
    line-height: 1.6;
}

.ln-cta {
    background: var(--rd-gradient);
    padding: 64px 24px;
    text-align: center;
    color: #fff;
}
.ln-cta h2 { font-size: 32px; font-weight: 800; margin: 0 0 16px; }
.ln-cta p { font-size: 18px; opacity: .9; margin: 0 0 32px; }

.ln-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 48px 24px 32px;
}
.ln-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.ln-footer-brand { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.ln-footer-brand .ln-logo-dot { color: var(--rd-accent); }
.ln-footer p { font-size: 14px; line-height: 1.6; margin: 0; }
.ln-footer h4 { color: #fff; font-size: 14px; font-weight: 600; margin: 0 0 16px; text-transform: uppercase; letter-spacing: .5px; }
.ln-footer ul { list-style: none; padding: 0; margin: 0; }
.ln-footer ul li { margin-bottom: 8px; }
.ln-footer ul a { color: #94a3b8; text-decoration: none; font-size: 14px; transition: color .2s; }
.ln-footer ul a:hover { color: #fff; }
.ln-footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 13px;
}

.ln-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
}
.ln-mobile-menu.open { display: flex; }
.ln-mobile-menu a {
    font-size: 18px;
    font-weight: 600;
    color: var(--rd-text);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--rd-border);
}

@media (max-width: 768px) {

    .ln-nav-links, .ln-nav-actions { display: none; }
    .ln-burger { display: block; }
    .ln-navbar-inner { height: 56px; padding: 0 16px; }
    .ln-logo { font-size: 20px; }

    .ln-mobile-menu { top: 56px; padding: 20px 16px; gap: 0; }
    .ln-mobile-menu a {
        font-size: 16px;
        padding: 16px 0;
        border-bottom: 1px solid var(--rd-border);
    }
    .ln-mobile-menu a:last-child {
        border-bottom: none;
        margin-top: 12px;
        background: var(--rd-primary);
        color: #fff;
        border-radius: 12px;
        text-align: center;
        padding: 14px;
    }

    .ln-hero {
        padding: 100px 20px 60px;
    }
    .ln-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .ln-hero-content { text-align: center; }
    .ln-hero h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .ln-hero h1 br { display: none; }
    .ln-hero-rotating {
        justify-content: center;
        height: 44px;
        margin-bottom: 24px;
    }
    .ln-hero-rotating-text { font-size: 15px; }
    .ln-hero-buttons {
        justify-content: center;
    }
    .ln-hero-buttons .btn-rd-lg {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 14px;
    }
    .ln-hero-badge-col { order: -1; }
    .ln-hero-badges-group {
        width: 180px;
        height: 200px;
    }
    .ln-hero-price-badge {
        width: 140px;
        height: 140px;
        font-size: 14px;
        padding: 18px;
    }
    .ln-hero-badge-secondary {
        width: 100px;
        height: 100px;
        font-size: 12px;
        padding: 12px;
    }

    .ln-section {
        padding: 48px 16px;
    }
    .ln-section-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .ln-section-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.5;
    }

    .ln-mp-section .ln-section { padding-top: 0; padding-bottom: 32px; }
    .ln-mp-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: -24px;
        max-width: none;
    }
    .ln-mp-card {
        padding: 20px 14px 22px;
        border-radius: 12px;
    }
    .ln-mp-logo {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
        padding: 6px;
    }
    .ln-mp-card h3 { font-size: 16px; margin-bottom: 4px; }
    .ln-mp-card p { font-size: 12px; line-height: 1.4; }

    .ln-section-title[style*="margin-top"] { margin-top: 28px !important; }

    .ln-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        border-radius: 14px;
        overflow: hidden;
    }
    .ln-stat {
        padding: 16px 14px;
        text-align: center;
        border-bottom: 1px solid var(--rd-border);
    }
    .ln-stat:nth-child(-n+2) { border-bottom: 1px solid var(--rd-border); }
    .ln-stat:nth-child(2n) { border-left: 1px solid var(--rd-border); }
    .ln-stat:nth-last-child(-n+2) { border-bottom: none; }
    .ln-stat-value {
        font-size: 24px;
        margin-bottom: 2px;
    }
    .ln-stat-label { font-size: 12px; }
    .ln-stat-divider { display: none; }

    .ln-how-steps {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    .ln-how-step {
        flex: none;
        width: 100%;
        max-width: none;
        padding: 16px 12px;
        text-align: center;
    }
    .ln-how-icon { margin: 0 auto 8px; width: 44px; height: 44px; }
    .ln-how-icon svg,
    .ln-how-icon i { width: 22px; height: 22px; font-size: 22px; }
    .ln-how-step h3 { font-size: 13px; margin-bottom: 4px; }
    .ln-how-step p { font-size: 11px; line-height: 1.4; }
    .ln-how-arrow { display: none; }

    .ln-highlights-row {
        gap: 8px;
        margin-bottom: 24px;
    }
    .ln-highlight {
        font-size: 12px;
        padding: 7px 12px;
        border-radius: 24px;
    }
    .ln-highlight svg,
    .ln-highlight i { width: 16px; height: 16px; font-size: 16px; }

    .ln-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .ln-feature-card {
        padding: 18px 14px;
        border-radius: 14px;
    }
    .ln-feature-icon-circle {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    .ln-feature-icon-circle svg,
    .ln-feature-icon-circle i { width: 18px; height: 18px; font-size: 18px; }
    .ln-feature-card h3 { font-size: 14px; margin-bottom: 4px; }
    .ln-feature-card p { font-size: 12px; line-height: 1.5; }

    .ln-comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ln-comp-card { padding: 28px 20px; border-radius: 14px; }
    .ln-comp-header { margin-bottom: 16px; gap: 12px; }
    .ln-comp-header h3 { font-size: 18px; }
    .ln-comp-list li { font-size: 14px; padding: 10px 0 10px 20px; }
    .ln-pain-solution .ln-section { padding-bottom: 48px; }

    .ln-tools-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ln-tools-left { gap: 12px; }
    .ln-tool-card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 16px;
    }
    .ln-tool-info h3 { font-size: 16px; }
    .ln-tool-info p { font-size: 13px; }
    .ln-tool-arrow { align-self: flex-end; }
    .ln-tool-icon { width: 44px; height: 44px; border-radius: 12px; }
    .ln-tool-badge { top: 12px; right: 12px; font-size: 10px; }
    .ln-tool-blog-content { padding: 20px 16px; }
    .ln-tool-blog-content h3 { font-size: 18px; margin-top: 12px; }
    .ln-tool-blog-content p { font-size: 13px; }
    .ln-tool-blog-cats span { font-size: 11px; padding: 3px 10px; }
    .ln-tools-section .ln-section { padding-top: 48px; padding-bottom: 48px; }

    .ln-tariffs-grid,
    .ln-tariffs-grid.ln-tariffs-4 {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-top: 16px;
        padding-bottom: 4px;
    }
    .ln-tariffs-grid::-webkit-scrollbar { display: none; }
    .ln-tariff-card {
        flex: 0 0 78%;
        scroll-snap-align: center;
        padding: 28px 20px;
        border-radius: 14px;
    }
    .ln-tariff-card.elevated { transform: none; }
    .ln-tariff-card.elevated:hover { transform: none; }
    .ln-tariff-card h3 { font-size: 20px; }
    .ln-tariff-price { font-size: 28px; margin: 8px 0 4px; }
    .ln-tariff-price span { font-size: 14px; }
    .ln-tariff-desc { font-size: 13px; margin-bottom: 16px; }
    .ln-tariff-features { margin-bottom: 20px; }
    .ln-tariff-features li { font-size: 13px; padding: 5px 0; }
    .ln-tariff-badge { font-size: 11px; padding: 3px 14px; }

    .ln-faq-item { border-radius: 10px; margin-bottom: 8px; }
    .ln-faq-q { padding: 16px 16px; font-size: 14px; }
    .ln-faq-q svg,
    .ln-faq-q i { width: 18px; height: 18px; font-size: 18px; margin-left: 8px; }
    .ln-faq-a-inner { padding: 0 16px 16px; font-size: 13px; }

    .ln-cta { padding: 48px 20px; }
    .ln-cta h2 { font-size: 24px; margin-bottom: 10px; }
    .ln-cta p { font-size: 15px; margin-bottom: 24px; }
    .ln-cta .btn-rd-lg {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    .ln-footer { padding: 36px 16px 24px; }
    .ln-footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ln-footer-brand { font-size: 18px; }
    .ln-footer p { font-size: 13px; }
    .ln-footer h4 { font-size: 13px; margin-bottom: 12px; }
    .ln-footer ul a { font-size: 13px; }
    .ln-footer-bottom { font-size: 12px; margin-top: 24px; padding-top: 16px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .ln-mp-grid { grid-template-columns: repeat(2, 1fr); }
    .ln-features-grid { grid-template-columns: repeat(2, 1fr); }
    .ln-tariffs-grid { grid-template-columns: repeat(3, 1fr); }
    .ln-tariffs-grid.ln-tariffs-4 { grid-template-columns: repeat(2, 1fr); }
}
