:root {
    --lp-ink: #102033;
    --lp-muted: #637083;
    --lp-line: #dbe4ee;
    --lp-soft: #f4f8fb;
    --lp-soft-2: #eef7f5;
    --lp-blue: #0f6cbd;
    --lp-blue-dark: #0a4f9e;
    --lp-cyan: #0891b2;
    --lp-teal: #0f766e;
    --lp-green: #15803d;
    --lp-amber: #b45309;
    --lp-card: #ffffff;
    --lp-shadow: 0 18px 55px rgba(15, 32, 51, 0.12);
    --lp-shadow-strong: 0 28px 80px rgba(8, 45, 82, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.landing-page {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    color: var(--lp-ink);
    background: #ffffff;
    overflow-x: hidden;
}

.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.lp-nav.scrolled,
.lp-nav-solid {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(15, 32, 51, 0.08);
    border-bottom: 1px solid rgba(219, 228, 238, 0.8);
    backdrop-filter: blur(14px);
    padding: 12px 0;
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0;
}

.lp-nav.scrolled .nav-logo,
.lp-nav-solid .nav-logo { color: var(--lp-blue-dark); }

.nav-logo span { color: #7dd3fc; }
.lp-nav.scrolled .nav-logo span,
.lp-nav-solid .nav-logo span { color: var(--lp-teal); }

.lp-nav-links,
.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link-item,
.nav-login {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
}

.lp-nav.scrolled .nav-link-item,
.lp-nav-solid .nav-link-item,
.lp-nav.scrolled .nav-login,
.lp-nav-solid .nav-login { color: var(--lp-muted); }

.nav-link-item:hover,
.nav-login:hover { color: #ffffff; }

.lp-nav.scrolled .nav-link-item:hover,
.lp-nav-solid .nav-link-item:hover,
.lp-nav.scrolled .nav-login:hover,
.lp-nav-solid .nav-login:hover { color: var(--lp-blue); }

.nav-cta,
.btn-hero-primary,
.btn-section,
.btn-plan-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--lp-blue);
    color: #ffffff;
    border: 1px solid var(--lp-blue);
    border-radius: 8px;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(15, 108, 189, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
    background: #ffffff;
    color: var(--lp-blue-dark);
    border-color: #ffffff;
    padding: 10px 16px;
}

.lp-nav.scrolled .nav-cta,
.lp-nav-solid .nav-cta {
    background: var(--lp-blue);
    color: #ffffff;
    border-color: var(--lp-blue);
}

.nav-cta:hover,
.btn-hero-primary:hover,
.btn-section:hover,
.btn-plan-primary:hover {
    background: var(--lp-blue-dark);
    border-color: var(--lp-blue-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 108, 189, 0.28);
}

.hero {
    min-height: 92vh;
    padding: 144px 0 82px;
    background:
        linear-gradient(135deg, rgba(6, 37, 70, 0.98) 0%, rgba(11, 61, 112, 0.96) 46%, rgba(12, 105, 131, 0.9) 100%),
        radial-gradient(circle at 78% 24%, rgba(125, 211, 252, 0.28), transparent 30%),
        radial-gradient(circle at 12% 78%, rgba(20, 184, 166, 0.22), transparent 28%),
        url('../images/logo_inverse.webp');
    background-size: cover, auto, auto, 420px auto;
    background-position: center, center, center, right 8% center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.15));
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 82px;
    background: linear-gradient(to bottom right, transparent 49%, #ffffff 50%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 56px;
    align-items: center;
}

.hero-badge,
.section-kicker,
.section-heading span,
.cta-panel span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d7ecff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0 0 22px;
    color: #ffffff;
    max-width: 760px;
    font-size: clamp(2.65rem, 5vw, 5rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-lead {
    margin: 0 0 28px;
    max-width: 670px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.13rem;
    line-height: 1.72;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 560px;
    gap: 10px;
    margin: 0 0 28px;
}

.hero-metrics div {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px;
    backdrop-filter: blur(12px);
}

.hero-metrics strong {
    display: block;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.45rem;
    line-height: 1;
}

.hero-metrics span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 800;
    margin-top: 6px;
}

.hero-actions,
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-hero-primary {
    background: #ffffff;
    color: var(--lp-blue-dark);
    border-color: #ffffff;
    padding: 14px 22px;
}

.btn-hero-primary:hover {
    background: #eff7ff;
    color: var(--lp-blue-dark);
    border-color: #eff7ff;
}

.btn-hero-outline,
.btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    border-radius: 8px;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.08);
}

.btn-hero-outline:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.hero-proof {
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    font-size: 0.9rem;
}

.hero-proof i { color: #86efac; }

.product-visual {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--lp-shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.55);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    position: relative;
}

.product-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
    pointer-events: none;
}

.visual-topbar {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    border-bottom: 1px solid var(--lp-line);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.visual-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}

.visual-topbar span:nth-child(2) { background: #f59e0b; }
.visual-topbar span:nth-child(3) { background: #22c55e; }
.visual-topbar strong {
    margin-left: 8px;
    color: var(--lp-muted);
    font-size: 0.82rem;
}

.visual-layout {
    display: grid;
    grid-template-columns: 64px 1fr;
    min-height: 430px;
}

.visual-layout aside {
    background: linear-gradient(180deg, #082f58, #0b5f78);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
}

.visual-layout aside i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.55);
}

.visual-layout aside i.active {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.visual-content {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.76), rgba(246,249,252,0.95)),
        radial-gradient(circle at top right, rgba(8,145,178,0.14), transparent 32%);
    padding: 20px;
}

.visual-header,
.visual-stats,
.visual-row,
.visual-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.visual-header {
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    padding: 14px 16px;
}

.visual-header small,
.visual-stats small,
.visual-split small,
.visual-row small {
    display: block;
    color: var(--lp-muted);
    font-size: 0.74rem;
    font-weight: 700;
}

.visual-header strong,
.visual-stats strong,
.visual-split strong { font-family: 'DM Sans', sans-serif; }

.visual-header span {
    color: var(--lp-green);
    background: #dcfce7;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.72rem;
    font-weight: 800;
}

.visual-stats {
    margin: 14px 0;
}

.visual-stats div,
.visual-split div {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 8px 24px rgba(15, 32, 51, 0.04);
}

.visual-stats strong {
    display: block;
    color: var(--lp-ink);
    font-size: 1.55rem;
    margin-top: 6px;
}

.visual-panel {
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    overflow: hidden;
}

.visual-row {
    padding: 14px;
    border-bottom: 1px solid var(--lp-line);
}

.visual-row:last-child { border-bottom: 0; }

.visual-row strong {
    display: block;
    font-size: 0.9rem;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #dbeafe;
    color: var(--lp-blue-dark);
    font-size: 0.72rem;
    font-weight: 800;
    flex: 0 0 auto;
}

.avatar.teal { background: #ccfbf1; color: var(--lp-teal); }
.avatar.amber { background: #fef3c7; color: var(--lp-amber); }

.status {
    border-radius: 999px;
    padding: 5px 9px;
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 800;
    white-space: nowrap;
}

.status.green { background: #dcfce7; color: var(--lp-green); }
.status.blue { background: #dbeafe; color: var(--lp-blue-dark); }
.status.slate { background: #e2e8f0; color: #475569; }

.visual-split {
    margin-top: 14px;
}

.visual-split strong {
    display: block;
    margin-top: 8px;
    font-size: 1.35rem;
}

.visual-insight {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding: 15px;
    background: #0b3d70;
    color: #ffffff;
    border-radius: 8px;
}

.visual-insight small {
    display: block;
    color: rgba(255,255,255,0.68);
    font-weight: 800;
    font-size: 0.72rem;
}

.visual-insight strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.55rem;
    margin-top: 5px;
}

.insight-bars {
    display: flex;
    align-items: end;
    gap: 5px;
    height: 44px;
}

.insight-bars span {
    display: block;
    width: 12px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #7dd3fc, #14b8a6);
}

.trust-strip {
    background: #ffffff;
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
    padding: 18px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-grid span {
    color: var(--lp-muted);
    font-weight: 800;
    font-size: 0.88rem;
    background: #f8fbfe;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    padding: 12px 14px;
}

.trust-grid i { color: var(--lp-blue); margin-right: 6px; }

.section-block {
    padding: 92px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading span,
.section-kicker {
    color: var(--lp-blue);
    background: #e8f3ff;
    border-color: #cfe7ff;
}

.section-heading h2,
.workflow-grid h2,
.cta-panel h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0;
}

.section-heading p,
.workflow-grid p,
.cta-panel p {
    color: var(--lp-muted);
    font-size: 1rem;
    line-height: 1.72;
    margin: 0;
}

.feature-grid,
.pricing-grid,
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-card,
.pricing-card,
.audience-grid article,
.empty-pricing {
    background: var(--lp-card);
    border: 1px solid var(--lp-line);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(15, 32, 51, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.audience-grid article::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-blue), var(--lp-teal));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feature-card:hover,
.pricing-card:hover,
.audience-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow);
}

.feature-card:hover::before,
.audience-grid article:hover::before {
    opacity: 1;
}

.feature-card,
.pricing-card,
.audience-grid article {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-icon,
.audience-grid article i {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-cyan));
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.feature-card h3,
.pricing-card h3,
.audience-grid h3,
.empty-pricing h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    font-weight: 800;
}

.feature-card p,
.pricing-card p,
.audience-grid p,
.empty-pricing p {
    margin: 0;
    color: var(--lp-muted);
    line-height: 1.68;
    font-size: 0.94rem;
}

.workflow-section,
.audience-section {
    background:
        linear-gradient(180deg, var(--lp-soft), #ffffff);
}

.workflow-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.workflow-grid p {
    margin-bottom: 24px;
}

.workflow-list {
    display: grid;
    gap: 14px;
}

.workflow-list div {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(15, 32, 51, 0.05);
}

.workflow-list strong {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-teal));
    color: #ffffff;
}

.workflow-list span {
    color: var(--lp-muted);
    font-weight: 700;
    line-height: 1.55;
}

.workflow-list b {
    display: block;
    color: var(--lp-ink);
    margin-bottom: 3px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--lp-blue);
    background: linear-gradient(180deg, #f1f8ff 0%, #ffffff 42%);
    box-shadow: 0 24px 58px rgba(15, 108, 189, 0.18);
}

.plan-badge {
    position: absolute;
    right: 18px;
    top: 18px;
    background: #dcfce7;
    color: var(--lp-green);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 800;
}

.price {
    margin: 24px 0 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
}

.price span {
    font-size: 1.2rem;
    vertical-align: top;
}

.price small {
    font-size: 0.95rem;
    color: var(--lp-muted);
    font-weight: 700;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 10px;
    flex: 1;
}

.pricing-card li {
    color: var(--lp-muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card li i {
    color: var(--lp-green);
    margin-right: 7px;
}

.btn-plan {
    color: var(--lp-blue);
    border-color: var(--lp-line);
    background: #ffffff;
    padding: 12px 18px;
}

.btn-plan:hover {
    color: var(--lp-blue-dark);
    background: #eff7ff;
}

.empty-pricing {
    grid-column: 1 / -1;
    text-align: center;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: #ffffff;
    color: var(--lp-ink);
    font-weight: 800;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--lp-muted);
    line-height: 1.68;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.cta-section {
    background:
        linear-gradient(135deg, #082f58 0%, #0b5f78 58%, #0f766e 100%);
    padding: 72px 0;
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 36px;
    box-shadow: var(--lp-shadow-strong);
}

.cta-panel h2 {
    color: #ffffff;
    max-width: 760px;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.74);
}

.lp-footer {
    background: #101827;
    color: #ffffff;
    padding: 58px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}

.footer-logo {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-logo span { color: #7dd3fc; }

.footer-tagline {
    color: rgba(255, 255, 255, 0.58);
    max-width: 390px;
    line-height: 1.65;
    margin-bottom: 18px;
}

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

.footer-socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.66);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.footer-socials a:hover {
    color: #ffffff;
    background: var(--lp-blue);
}

.footer-heading {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    text-decoration: none;
    margin-bottom: 9px;
    font-weight: 700;
    font-size: 0.92rem;
}

.footer-link:hover { color: #ffffff; }
.footer-link-muted { color: rgba(255, 255, 255, 0.38); }

.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.86rem;
}

.page-shell {
    background: #ffffff;
}

.page-hero {
    padding: 142px 0 70px;
    background:
        linear-gradient(135deg, rgba(8,47,88,0.98), rgba(15,108,189,0.94)),
        radial-gradient(circle at 78% 18%, rgba(125,211,252,0.25), transparent 32%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 -1px 0;
    height: 64px;
    background: linear-gradient(to bottom right, transparent 49%, #f8fbfe 50%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 800;
    margin-bottom: 22px;
}

.page-back:hover { color: #ffffff; }

.page-kicker {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #d7ecff;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
    margin: 0 0 14px;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 1.05rem;
}

.page-content-section {
    padding: 64px 0 92px;
    background: #f8fbfe;
}

.page-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 860px);
    gap: 28px;
    align-items: start;
}

.page-sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 12px;
}

.page-sidebar div,
.page-sidebar a {
    display: block;
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(15, 32, 51, 0.05);
}

.page-sidebar span {
    display: block;
    color: var(--lp-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.page-sidebar strong {
    color: var(--lp-ink);
    font-weight: 800;
}

.page-sidebar a {
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-teal));
    text-decoration: none;
    font-weight: 800;
}

.page-content {
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    padding: 46px;
    color: #334155;
    box-shadow: 0 18px 50px rgba(15, 32, 51, 0.08);
}

.page-content p {
    color: #334155;
    line-height: 1.9;
    font-size: 1.04rem;
    margin: 0 0 1.15rem;
}

.page-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .hero-grid,
    .workflow-grid,
    .page-layout {
        grid-template-columns: 1fr;
    }

    .product-visual {
        max-width: 760px;
        transform: none;
    }

    .page-sidebar {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-grid,
    .pricing-grid,
    .audience-grid,
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .lp-nav-links,
    .nav-login {
        display: none;
    }

    .hero {
        padding: 112px 0 56px;
        min-height: auto;
    }

    .hero-grid {
        gap: 34px;
    }

    .product-visual {
        display: none;
    }

    .feature-grid,
    .pricing-grid,
    .audience-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-block {
        padding: 58px 0;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        grid-template-columns: 1fr;
    }

    .page-content {
        padding: 26px;
    }
}
