:root {
    --lp-primary: #2563eb;
    --lp-primary-dark: #1d4ed8;
    --lp-accent: #06b6d4;
    --lp-accent-2: #8b5cf6;
    --lp-dark: #0f172a;
    --lp-muted: #64748b;
    --lp-bg: #f8fafc;
    --lp-card: #ffffff;
    --lp-border: #e2e8f0;
    --lp-radius: 16px;
    --lp-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --lp-shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
}

@font-face {
    font-family: 'estedad';
    src: url('/home2/assets/fonts/estedad/Estedad-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'estedad';
    src: url('/home2/assets/fonts/estedad/Estedad-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'estedad';
    src: url('/home2/assets/fonts/estedad/Estedad-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'estedad';
    src: url('/home2/assets/fonts/estedad/Estedad-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'estedad';
    src: url('/home2/assets/fonts/estedad/Estedad-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'estedad';
    src: url('/home2/assets/fonts/estedad/Estedad-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'estedad';
    src: url('/home2/assets/fonts/estedad/Estedad-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'estedad';
    src: url('/home2/assets/fonts/estedad/Estedad-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'estedad';
    src: url('/home2/assets/fonts/estedad/Estedad-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.lp-page {
    font-family: 'estedad', Tahoma, sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--lp-dark);
    background: var(--lp-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-border);
    transition: box-shadow 0.3s;
}

.lp-nav.scrolled { box-shadow: var(--lp-shadow); }

.lp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--lp-dark);
    font-weight: 800;
    font-size: 1.15rem;
}

.lp-brand img {
    height: 42px;
    width: auto;
    border-radius: 10px;
}

.lp-nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav__links a {
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
}

.lp-nav__links a:hover { color: var(--lp-primary); }

.lp-nav__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.lp-btn:hover { transform: translateY(-2px); }

.lp-btn--primary {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent-2));
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.lp-btn--outline {
    background: transparent;
    color: var(--lp-primary);
    border: 2px solid var(--lp-primary);
}

.lp-btn--ghost {
    background: rgba(37, 99, 235, 0.08);
    color: var(--lp-primary);
}

.lp-btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 14px;
}

.lp-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--lp-dark);
    cursor: pointer;
}

/* Hero */
.lp-hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(37, 99, 235, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(139, 92, 246, 0.12), transparent),
        radial-gradient(ellipse 50% 40% at 60% 80%, rgba(6, 182, 212, 0.1), transparent),
        linear-gradient(180deg, #eef2ff 0%, var(--lp-bg) 100%);
    z-index: 0;
}

.lp-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--lp-primary);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.lp-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.lp-hero h1 span {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero__desc {
    font-size: 1.1rem;
    color: var(--lp-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.lp-hero__stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.lp-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--lp-primary);
}

.lp-stat span {
    font-size: 0.85rem;
    color: var(--lp-muted);
}

.lp-hero__visual {
    position: relative;
}

.lp-hero__img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 560px;
    margin-inline: auto;
}

.lp-mini-features {
    display: grid;
    gap: 12px;
}

.lp-mini-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--lp-bg);
    border-radius: 12px;
    font-size: 0.9rem;
}

.lp-mini-feat i {
    color: var(--lp-primary);
    width: 20px;
    text-align: center;
}

.lp-float-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--lp-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: lp-float 4s ease-in-out infinite;
}

.lp-float-badge--1 { top: -16px; left: -20px; }
.lp-float-badge--2 { bottom: 20px; right: -24px; animation-delay: 1.5s; }

@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Section common */
.lp-section {
    padding: 80px 0;
}

.lp-section--alt { background: #fff; }

.lp-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.lp-section__label {
    display: inline-block;
    color: var(--lp-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.lp-section__header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 16px;
}

.lp-section__header p {
    color: var(--lp-muted);
    margin: 0;
    font-size: 1.05rem;
}

/* Module tabs */
.lp-modules {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.lp-module-tab {
    padding: 20px 16px;
    border-radius: var(--lp-radius);
    background: var(--lp-card);
    border: 2px solid var(--lp-border);
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
}

.lp-module-tab:hover,
.lp-module-tab.active {
    border-color: var(--lp-primary);
    background: rgba(37, 99, 235, 0.04);
    box-shadow: var(--lp-shadow);
}

.lp-module-tab i {
    font-size: 1.8rem;
    color: var(--lp-primary);
    margin-bottom: 10px;
    display: block;
}

.lp-module-tab span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Feature grid */
.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-feature {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.lp-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow);
}

.lp-feature__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #fff;
}

.lp-feature h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.lp-feature p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--lp-muted);
    line-height: 1.65;
}

.lp-feature__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.lp-tag {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--lp-primary);
    font-weight: 600;
}

/* Icon colors */
.lp-icon--blue { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.lp-icon--purple { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.lp-icon--cyan { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.lp-icon--green { background: linear-gradient(135deg, #059669, #10b981); }
.lp-icon--orange { background: linear-gradient(135deg, #ea580c, #f97316); }
.lp-icon--rose { background: linear-gradient(135deg, #e11d48, #f43f5e); }
.lp-icon--indigo { background: linear-gradient(135deg, #4338ca, #6366f1); }
.lp-icon--teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }

/* Highlight block */
.lp-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e1b4b 100%);
    border-radius: 28px;
    padding: 56px;
    color: #fff;
    margin: 0 20px;
    max-width: calc(1200px + 40px);
    margin-left: auto;
    margin-right: auto;
}

.lp-highlight h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 16px;
}

.lp-highlight p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px;
}

.lp-highlight__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.lp-highlight__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.lp-highlight__list i {
    color: #34d399;
    margin-top: 4px;
}

.lp-highlight__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lp-highlight__chip {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.lp-highlight__chip i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
    color: #a5b4fc;
}

.lp-highlight__chip span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Roles */
.lp-roles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-role {
    text-align: center;
    padding: 32px 20px;
    background: var(--lp-card);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    transition: transform 0.25s;
}

.lp-role:hover { transform: translateY(-4px); }

.lp-role__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
}

.lp-role h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.lp-role p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--lp-muted);
}

/* CTA */
.lp-cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(139, 92, 246, 0.06));
    border-radius: 28px;
    margin: 0 20px;
    max-width: calc(1200px + 40px);
    margin-left: auto;
    margin-right: auto;
}

.lp-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 12px;
}

.lp-cta p {
    color: var(--lp-muted);
    margin: 0 0 28px;
    font-size: 1.05rem;
}

.lp-cta__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-cta__rubika {
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    font-size: 0.95rem !important;
}

.lp-cta__rubika a {
    color: var(--lp-primary);
    font-weight: 700;
    text-decoration: none;
}

.lp-cta__rubika a:hover {
    text-decoration: underline;
}

/* Footer */
.lp-footer {
    background: var(--lp-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 24px;
    margin-top: 80px;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.lp-footer h4 {
    color: #fff;
    margin: 0 0 16px;
    font-size: 1rem;
}

.lp-footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.lp-footer a:hover { color: #fff; }

.lp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.lp-footer__logo {
    display: block;
    margin: 0;
}

.lp-footer__logo img {
    height: 40px;
    width: auto;
    display: block;
}

.lp-footer__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    flex: 1;
    text-align: center;
    min-width: 220px;
}

.lp-footer__copy b {
    color: #fff;
    font-weight: 700;
}

.lp-footer__links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lp-footer__links a {
    display: inline;
    margin: 0;
    color: #93c5fd;
    white-space: nowrap;
}

.lp-footer__links a:hover {
    color: #fff;
}

.lp-footer__contact {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lp-footer__contact i,
.lp-footer__contact img {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    color: #93c5fd;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.lp-footer__contact:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Animations */
.lp-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu */
.lp-mobile-menu {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    background: #fff;
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--lp-border);
}

.lp-mobile-menu.open { display: flex; }

.lp-mobile-menu a {
    padding: 14px 16px;
    color: var(--lp-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
}

.lp-mobile-menu a:hover { background: var(--lp-bg); }

/* Responsive */
@media (max-width: 1024px) {
    .lp-hero__grid,
    .lp-highlight,
    .lp-features { grid-template-columns: repeat(2, 1fr); }
    .lp-modules { grid-template-columns: repeat(2, 1fr); }
    .lp-roles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .lp-nav__links,
    .lp-nav__actions { display: none; }
    .lp-menu-toggle { display: block; }

    .lp-hero { padding: 110px 0 60px; }
    .lp-hero__grid { grid-template-columns: 1fr; }
    .lp-hero__visual { order: -1; }
    .lp-float-badge { display: none; }

    .lp-features,
    .lp-modules,
    .lp-roles,
    .lp-highlight,
    .lp-highlight__visual,
    .lp-footer__grid { grid-template-columns: 1fr; }

    .lp-footer__bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .lp-footer__copy { text-align: center; }

    .lp-highlight { padding: 32px 24px; margin: 0 12px; }
    .lp-section { padding: 56px 0; }
}

/* ─── Feature hub cards (index) ─── */
.lp-hub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-hub-card {
    display: block;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.lp-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
    border-color: var(--lp-primary);
}

.lp-hub-card--featured {
    border-color: rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(139, 92, 246, 0.04));
}

.lp-hub-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.lp-hub-card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 800;
}

.lp-hub-card p {
    margin: 0 0 14px;
    font-size: 0.88rem;
    color: var(--lp-muted);
    line-height: 1.65;
}

.lp-hub-card__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lp-primary);
}

.lp-hub-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--lp-primary);
    color: #fff;
    font-weight: 700;
}

/* ─── Inner feature pages ─── */
.feat-page-hero {
    padding: 120px 0 60px;
    background:
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(139, 92, 246, 0.1), transparent),
        linear-gradient(180deg, #eef2ff 0%, var(--lp-bg) 100%);
}

.feat-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--lp-muted);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feat-breadcrumb a {
    color: var(--lp-primary);
    text-decoration: none;
}

.feat-page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1.35;
}

.feat-page-hero .lead {
    font-size: 1.1rem;
    color: var(--lp-muted);
    max-width: 720px;
    margin: 0 0 28px;
}

.feat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feat-chip {
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--lp-border);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lp-dark);
}

.feat-section {
    padding: 64px 0;
}

.feat-section--white { background: #fff; }

.feat-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}

.feat-block:last-child { margin-bottom: 0; }

.feat-block--reverse .feat-block__visual { order: -1; }

.feat-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 14px;
}

.feat-block p {
    color: var(--lp-muted);
    margin: 0 0 16px;
}

.feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.feat-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.92rem;
}

.feat-list li i {
    color: #10b981;
    margin-top: 4px;
}

.feat-panel {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--lp-shadow);
}

.feat-panel__title {
    font-weight: 800;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lp-border);
}

.feat-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feat-mini {
    background: var(--lp-bg);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.feat-mini i {
    font-size: 1.6rem;
    color: var(--lp-primary);
    margin-bottom: 8px;
    display: block;
}

.feat-mini span {
    font-size: 0.85rem;
    font-weight: 700;
}

.feat-related {
    padding: 48px 0 80px;
}

.feat-related h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.feat-related__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.feat-related__links a {
    padding: 10px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--lp-border);
    text-decoration: none;
    color: var(--lp-dark);
    font-size: 0.88rem;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s;
}

.feat-related__links a:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}

@media (max-width: 1024px) {
    .lp-hub { grid-template-columns: repeat(2, 1fr); }
    .feat-block, .feat-grid-3 { grid-template-columns: 1fr; }
    .feat-block--reverse .feat-block__visual { order: 0; }
}

@media (max-width: 768px) {
    .lp-hub { grid-template-columns: 1fr; }
}
