:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-soft-2: #f1f5f9;
    --text: #0f172a;
    --text-soft: #475569;
    --line: #e2e8f0;
    --line-strong: #cbd5e1;
    --accent: #fbbf24;
    --accent-strong: #f59e0b;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --radius-xxl: 48px;
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 20px 55px rgba(15, 23, 42, 0.08);
    --shadow-lift: 0 30px 80px rgba(15, 23, 42, 0.13);
    --container: 1220px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

main {
    min-height: 52vh;
}

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

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

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h1 {
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(30px, 4.1vw, 58px);
    font-weight: 800;
}

h2 {
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(25px, 3vw, 44px);
    font-weight: 800;
}

.message-wrap {
    padding-top: 14px;
}

.message {
    border-radius: 14px;
    border: 1px solid var(--line);
    padding: 12px 14px;
    margin-bottom: 10px;
    font-size: 14px;
}

.message-success {
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.message-error {
    background: #fff1f2;
    border-color: #fecdd3;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 38px;
    width: auto;
    border-radius: 11px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
    color: #0b1220;
    font-size: 18px;
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.34);
}

.brand-name {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    border-bottom: 2px solid transparent;
    padding: 8px 0;
    transition: color 0.16s ease, border-color 0.16s ease;
}

.nav a:hover,
.nav a.is-active {
    color: #b45309;
    border-color: #f5c376;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #dbe2eb;
    background: #fff;
    border-radius: 999px;
    padding: 3px;
}

.lang-switch a {
    min-width: 38px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
    transition: all 0.15s ease;
}

.lang-switch a:hover {
    background: #f8fafc;
    color: #1f2937;
}

.lang-switch a.is-current {
    background: #0f172a;
    color: #fff;
}

.lang-switch a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.35);
}

.nav-demo-link {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    padding: 8px 4px;
}

.nav-demo-link:hover {
    color: #b45309;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    min-height: 42px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111827;
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.36);
}

.btn-dark {
    background: #0f172a;
    color: #fff;
}

.btn-dark:hover {
    background: #111f38;
}

.btn-light {
    background: #fff;
    color: #0f172a;
    border-color: #e2e8f0;
}

.btn-light:hover {
    border-color: #f5c376;
    background: #fffbf4;
}

.btn-light.on-dark {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-light.on-dark:hover {
    background: rgba(255, 255, 255, 0.22);
}

.btn-block {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #dbe2eb;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #1f2937;
}

.lang-switch-mobile,
.mobile-divider,
.mobile-action-row {
    display: none;
}

.section {
    padding: 88px 0;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fef3c7;
    color: #b45309;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 16px;
}

.section-header {
    margin-bottom: 40px;
    max-width: 820px;
}

.section-header.center {
    margin-inline: auto;
    text-align: center;
}

.section-header p {
    margin: 14px 0 0;
    font-size: 16px;
    color: var(--text-soft);
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 66px 0 88px;
}

.hero-bg-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(76px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-bg-blob-right {
    width: 580px;
    height: 580px;
    right: -130px;
    top: -160px;
    background: #fef3c7;
}

.hero-bg-blob-left {
    width: 420px;
    height: 420px;
    left: -130px;
    bottom: -140px;
    background: #e0f2fe;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
}

.home-hero-content {
    max-width: 1120px;
}

.hero-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    gap: 40px;
}

.hero-title-copy {
    min-width: 0;
    max-width: 690px;
}

.hero-mini-live {
    position: relative;
    display: grid;
    gap: 16px;
    justify-self: end;
    width: 100%;
    max-width: 380px;
    padding: 8px 0;
}

.hero-mini-live::before {
    content: "";
    position: absolute;
    inset: 18px -18px;
    border-radius: 36px;
    background: radial-gradient(circle at center, rgba(191, 219, 254, 0.38), rgba(255, 255, 255, 0));
    filter: blur(28px);
    pointer-events: none;
}

.hero-mini-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 22px 44px rgba(148, 163, 184, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: hero-mini-float 5.2s ease-in-out infinite;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.32s ease,
                border-color 0.32s ease;
    overflow: hidden;
}

/* Birinchi karta — eng muhim, ekstra accent */
.hero-mini-card:first-child {
    box-shadow: 0 26px 50px rgba(16, 185, 129, 0.22),
                0 0 0 1px rgba(16, 185, 129, 0.18);
}

.hero-mini-card:first-child::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #10b981, #34d399);
}

.hero-mini-card:nth-child(2) { animation-delay: 0.8s; }
.hero-mini-card:nth-child(3) { animation-delay: 1.5s; }

.hero-mini-card:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
    animation-play-state: paused;
}

.hero-mini-body {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 2px;
}

.hero-mini-card strong {
    display: block;
    color: #0f172a;
    font-size: 26px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0f172a, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-mini-card-green strong {
    background: linear-gradient(135deg, #047857, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-mini-card-blue strong {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-mini-card-amber strong {
    background: linear-gradient(135deg, #b45309, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-mini-title {
    display: block;
    color: #0f172a;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 1px;
}

.hero-mini-card small {
    display: block;
    color: #64748b;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.35;
}

/* Trend ko'rsatkich — yashil ↑ */
.hero-mini-trend {
    position: absolute;
    top: -2px;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
    animation: hero-mini-trend-bounce 2.4s ease-in-out infinite;
}

/* Live pulse — uchinchi karta uchun */
.hero-mini-pulse {
    position: absolute;
    top: 4px;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: hero-mini-pulse 1.8s ease-out infinite;
}

.hero-mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-mini-card:hover .hero-mini-icon {
    transform: scale(1.08) rotate(-4deg);
}

.hero-mini-card-green .hero-mini-icon {
    color: #047857;
    background: linear-gradient(135deg, #bbf7d0, #dcfce7);
}

.hero-mini-card-blue .hero-mini-icon {
    color: #1d4ed8;
    background: linear-gradient(135deg, #bfdbfe, #dbeafe);
}

.hero-mini-card-amber .hero-mini-icon {
    color: #b45309;
    background: linear-gradient(135deg, #fde68a, #fef3c7);
}

@keyframes hero-mini-trend-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

@keyframes hero-mini-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.65);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.hero-announcement {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #b45309;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-announcement .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f59e0b;
}

.home-hero-subtitle {
    margin: 14px 0 0;
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-soft);
    max-width: 60ch;
}

.home-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.home-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-weight: 700;
    font-size: 13px;
}

.home-hero-benefits i {
    color: #10b981;
}

.home-hero-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    min-height: 0;
    padding: 8px 0 0;
    perspective: 1800px;
}

.quick-links-strip {
    padding: 0 0 34px;
}

.quick-links-header {
    max-width: 820px;
    margin-bottom: 24px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.quick-link-card:hover {
    transform: translateY(-4px);
}

.quick-link-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.quick-link-card p {
    flex: 1;
    margin-bottom: 18px;
}

.quick-link-icon {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.quick-link-icon-amber {
    background: linear-gradient(180deg, #fef3c7, #fde68a);
    color: #b45309;
}

.quick-link-icon-blue {
    background: linear-gradient(180deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.quick-link-icon-green {
    background: linear-gradient(180deg, #dcfce7, #bbf7d0);
    color: #047857;
}

.quick-link-icon-violet {
    background: linear-gradient(180deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
}

.quick-link-icon-slate {
    background: linear-gradient(180deg, #e2e8f0, #cbd5e1);
    color: #334155;
}

.quick-link-card-amber {
    border-color: #fde68a;
}

.quick-link-card-blue {
    border-color: #bfdbfe;
}

.quick-link-card-green {
    border-color: #bbf7d0;
}

.quick-link-card-violet {
    border-color: #ddd6fe;
}

.quick-link-card-slate {
    border-color: #cbd5e1;
}

.quick-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

.quick-link-cta i {
    font-size: 18px;
}

.lp-dashboard-preview {
    --lp-tilt-x: 0deg;
    --lp-tilt-y: 0deg;
    --lp-glow-x: 70%;
    --lp-glow-y: 18%;
    position: relative;
    width: min(100%, 1120px);
    min-height: 0;
    padding: 20px;
    color: #1e293b;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 30px;
    box-shadow: 0 32px 72px rgba(148, 163, 184, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.82);
    overflow: hidden;
    transform-style: preserve-3d;
    transform-origin: center top;
    transform: perspective(1800px) rotateX(var(--lp-tilt-x)) rotateY(var(--lp-tilt-y));
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin: 0 auto;
}

.lp-dashboard-preview:hover {
    box-shadow: 0 34px 84px rgba(148, 163, 184, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.lp-dashboard-preview::before,
.lp-dashboard-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lp-dashboard-preview::before {
    background:
        radial-gradient(circle at var(--lp-glow-x) var(--lp-glow-y), rgba(96, 165, 250, 0.13), transparent 30%),
        radial-gradient(circle at 12% 86%, rgba(16, 185, 129, 0.10), transparent 24%),
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: auto, auto, 86px 86px, 86px 86px;
    background-position: center, center, center, center;
    opacity: 1;
}

.lp-dashboard-preview::after {
    background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.46) 48%, transparent 74%);
    transform: translateX(-120%);
    animation: lp-dashboard-sheen 8s ease-in-out infinite;
}

.lp-dashboard-sheen {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.04) 30%, transparent 46%);
    pointer-events: none;
}

.lp-browser-bar,
.lp-chart-shell,
.lp-list-panel {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.lp-browser-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    margin-bottom: 16px;
}

.lp-browser-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.lp-browser-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.lp-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.lp-browser-dot-red {
    background: #fb7185;
}

.lp-browser-dot-yellow {
    background: #fbbf24;
}

.lp-browser-dot-green {
    background: #34d399;
}

.lp-browser-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-live-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.18);
    background: rgba(236, 253, 245, 0.9);
    color: #047857;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.lp-live-ping {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.75);
    animation: lp-pulse 1.8s infinite;
}

.lp-stat-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.lp-stat-card {
    position: relative;
    padding: 16px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 12px 28px rgba(148, 163, 184, 0.12);
    animation: lp-card-enter 0.6s ease both;
}

.lp-stat-card:nth-child(1) {
    animation-delay: 0.06s;
}

.lp-stat-card:nth-child(2) {
    animation-delay: 0.14s;
}

.lp-stat-card:nth-child(3) {
    animation-delay: 0.22s;
}

.lp-stat-card:nth-child(4) {
    animation-delay: 0.3s;
}

.lp-stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lp-accent-soft), transparent 68%);
    opacity: 0.46;
    pointer-events: none;
}

.lp-stat-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-accent), transparent 70%);
}

.lp-stat-card-green {
    --lp-accent: #34d399;
    --lp-accent-soft: rgba(52, 211, 153, 0.24);
}

.lp-stat-card-blue {
    --lp-accent: #38bdf8;
    --lp-accent-soft: rgba(56, 189, 248, 0.24);
}

.lp-stat-card-amber {
    --lp-accent: #fbbf24;
    --lp-accent-soft: rgba(251, 191, 36, 0.26);
}

.lp-stat-card-navy {
    --lp-accent: #60a5fa;
    --lp-accent-soft: rgba(37, 99, 235, 0.24);
}

.lp-stat-top,
.lp-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.lp-stat-top {
    position: relative;
    z-index: 1;
    align-items: center;
    margin-bottom: 12px;
}

.lp-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: var(--lp-accent);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.14);
}

.lp-stat-label {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lp-stat-number {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-family: "Sora", sans-serif;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.lp-stat-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.lp-chart-shell {
    padding: 18px 18px 10px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.lp-section-head h3 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 18px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.lp-section-head p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
}

.lp-section-badge,
.lp-panel-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.lp-section-badge {
    color: #1d4ed8;
    background: rgba(219, 234, 254, 0.95);
    border: 1px solid rgba(147, 197, 253, 0.85);
}

.lp-panel-badge-green {
    color: #047857;
    background: rgba(236, 253, 245, 0.95);
    border: 1px solid rgba(167, 243, 208, 0.92);
}

.lp-panel-badge-danger {
    color: #be123c;
    background: rgba(255, 241, 242, 0.95);
    border: 1px solid rgba(254, 205, 211, 0.92);
}

.lp-chart-canvas {
    width: 100%;
    height: 262px;
}

.lp-list-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lp-list-panel {
    border-radius: 20px;
    padding: 14px 0 8px;
}

.lp-list-panel-danger {
    background: rgba(255, 255, 255, 0.58);
}

.lp-section-head-compact {
    padding: 0 16px 10px;
}

.lp-list-row {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.88);
    font-size: 13px;
    color: #475569;
    opacity: 0;
    transform: translateY(12px);
}

.lp-list-row:last-child {
    border-bottom: none;
}

.lp-list-row.is-visible {
    animation: lp-row-fade 0.45s ease forwards;
}

.lp-list-row-debt {
    grid-template-columns: 28px minmax(0, 1fr) auto;
}

.lp-row-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lp-row-mark-success {
    color: #d7fff1;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(52, 211, 153, 0.16);
}

.lp-row-mark-danger {
    color: #ffe3e7;
    background: rgba(244, 63, 94, 0.18);
    border: 1px solid rgba(244, 63, 94, 0.18);
}

.lp-row-main {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.lp-row-main strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-row-main span {
    color: #64748b;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-row-amount,
.lp-row-meta {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.lp-row-amount {
    color: #0f172a;
    font-weight: 700;
}

.lp-row-amount-danger {
    color: #be123c;
}

.lp-row-meta {
    color: #64748b;
    font-size: 12px;
}

.lp-float-card {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    min-width: 170px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 20px 42px rgba(148, 163, 184, 0.24);
}

.lp-float-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lp-float-card span {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-float-card strong {
    color: #0f172a;
    font-size: 18px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.lp-float-card small {
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.lp-float-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(236, 253, 245, 0.95);
    border: 1px solid rgba(167, 243, 208, 0.92);
    color: #047857;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.lp-float-card-top {
    top: 24px;
    right: 26px;
    min-width: 308px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9)),
        radial-gradient(circle at top right, rgba(52, 211, 153, 0.14), transparent 42%);
    border-color: rgba(187, 247, 208, 0.9);
    box-shadow: 0 28px 52px rgba(16, 185, 129, 0.12), 0 18px 42px rgba(148, 163, 184, 0.22);
    animation: lp-float-gentle 6.2s ease-in-out infinite;
}

.lp-float-card-bottom {
    left: 26px;
    bottom: 28px;
    animation: lp-float-gentle 7s ease-in-out infinite reverse;
}

@keyframes lp-dashboard-sheen {
    0%,
    20% {
        transform: translateX(-120%);
    }
    50% {
        transform: translateX(110%);
    }
    100% {
        transform: translateX(110%);
    }
}

@keyframes lp-card-enter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-row-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes lp-float-gentle {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes hero-mini-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.hero-image-wrap {
    border-radius: 40px;
    background: #fff;
    padding: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
}

.hero-dashboard-image {
    width: 100%;
    border-radius: 30px;
    max-height: 540px;
    object-fit: cover;
}

.floating-stat {
    position: absolute;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: 16px;
    min-width: 166px;
}

.floating-stat strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 28px;
}

.floating-stat span {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
}

.floating-stat-right {
    right: -26px;
    top: -22px;
}

.floating-stat-left {
    left: -26px;
    bottom: -20px;
}

.partners-strip {
    padding: 26px 0 32px;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.partners-head {
    text-align: center;
    margin-bottom: 14px;
}

.partners-head p {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #8b98aa;
    font-weight: 800;
}

.partners-logo-stage {
    border: 1px solid #e8edf4;
    border-radius: 22px;
    background: rgba(247, 249, 252, 0.8);
    padding: 24px 0;
}

.partners-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.partners-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.partners-marquee-right .partners-marquee-track {
    animation: partners-marquee-right 65s linear infinite;
}

/* Pause on hover — user logo'ni ko'rmoqchi bo'lsa o'qisin */
.partners-marquee:hover .partners-marquee-track {
    animation-play-state: paused;
}

.partners-marquee-group {
    display: flex;
    align-items: center;
    gap: clamp(26px, 3vw, 44px);
    padding-right: clamp(26px, 3vw, 44px);
    flex-shrink: 0;
}

.partner-logo-item {
    min-width: clamp(300px, 26vw, 420px);
    height: clamp(132px, 12vw, 168px);
    padding: 16px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    filter: grayscale(0.3);
    border-radius: 24px;
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background 0.35s ease;
    flex: 0 0 auto;
    animation: partners-logo-float 6s ease-in-out infinite;
}

/* Har bir logo'ga turli boshlanish vaqti — to'lqin effekti */
.partners-marquee-group .partner-logo-item:nth-child(1)  { animation-delay: 0s; }
.partners-marquee-group .partner-logo-item:nth-child(2)  { animation-delay: 0.4s; }
.partners-marquee-group .partner-logo-item:nth-child(3)  { animation-delay: 0.8s; }
.partners-marquee-group .partner-logo-item:nth-child(4)  { animation-delay: 1.2s; }
.partners-marquee-group .partner-logo-item:nth-child(5)  { animation-delay: 1.6s; }
.partners-marquee-group .partner-logo-item:nth-child(6)  { animation-delay: 2.0s; }
.partners-marquee-group .partner-logo-item:nth-child(7)  { animation-delay: 2.4s; }
.partners-marquee-group .partner-logo-item:nth-child(8)  { animation-delay: 2.8s; }
.partners-marquee-group .partner-logo-item:nth-child(n+9) { animation-delay: 3.2s; }

.partner-logo-item:hover,
.partner-logo-item:focus-visible {
    opacity: 1;
    filter: grayscale(0);
    outline: none;
    transform: translateY(-6px) scale(1.04);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(245, 158, 11, 0.18);
    animation-play-state: paused;
}

.partner-logo-item.is-clone {
    pointer-events: none;
}

.partner-logo-item img {
    width: auto;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.partners-empty {
    margin: 0;
    text-align: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

@keyframes partners-marquee-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes partners-logo-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .partners-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .partners-marquee-track {
        animation: none !important;
    }
}

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

.feature-card {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: #fff;
    padding: 28px 26px;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.32s ease,
                border-color 0.32s ease;
    overflow: hidden;
    animation: feature-fade-up 0.6s ease backwards;
}

/* Stagger entrance — har biri ketma-ket chiqadi */
.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.12s; }
.feature-card:nth-child(3) { animation-delay: 0.19s; }
.feature-card:nth-child(4) { animation-delay: 0.26s; }
.feature-card:nth-child(5) { animation-delay: 0.33s; }
.feature-card:nth-child(6) { animation-delay: 0.40s; }
.feature-card:nth-child(7) { animation-delay: 0.47s; }
.feature-card:nth-child(8) { animation-delay: 0.54s; }

/* Yuqorida nozik gradient chiziq — hover'da paydo bo'ladi */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--card-accent-start, #2563eb), var(--card-accent-end, #7c3aed));
    opacity: 0;
    transition: opacity 0.32s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    border-color: rgba(99, 102, 241, 0.18);
}

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

.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: #2563eb;
    font-size: 26px;
    margin-bottom: 18px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                background 0.4s ease;
    animation: feature-icon-float 5.5s ease-in-out infinite;
}

/* Float — yumshoq nafas oladigan effekt */
.feature-card:nth-child(1) .feature-icon-box { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon-box { animation-delay: 0.3s; }
.feature-card:nth-child(3) .feature-icon-box { animation-delay: 0.6s; }
.feature-card:nth-child(4) .feature-icon-box { animation-delay: 0.9s; }
.feature-card:nth-child(5) .feature-icon-box { animation-delay: 1.2s; }
.feature-card:nth-child(6) .feature-icon-box { animation-delay: 1.5s; }
.feature-card:nth-child(7) .feature-icon-box { animation-delay: 1.8s; }
.feature-card:nth-child(8) .feature-icon-box { animation-delay: 2.1s; }

/* Glow — hover'da icon shu'lalanadi */
.feature-icon-box::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    background: inherit;
    filter: blur(14px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon-box {
    transform: scale(1.08) rotate(-4deg);
    animation-play-state: paused;
}

.feature-card:hover .feature-icon-box::after { opacity: 0.55; }

/* 8 ta turli rangli icon — gradient'lar bilan */
.feature-card:nth-child(8n+1) .feature-icon-box {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: #2563eb;
}
.feature-card:nth-child(8n+1) { --card-accent-start: #3b82f6; --card-accent-end: #6366f1; }

.feature-card:nth-child(8n+2) .feature-icon-box {
    background: linear-gradient(135deg, #d1fae5, #ecfdf5);
    color: #059669;
}
.feature-card:nth-child(8n+2) { --card-accent-start: #10b981; --card-accent-end: #34d399; }

.feature-card:nth-child(8n+3) .feature-icon-box {
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    color: #d97706;
}
.feature-card:nth-child(8n+3) { --card-accent-start: #f59e0b; --card-accent-end: #fbbf24; }

.feature-card:nth-child(8n+4) .feature-icon-box {
    background: linear-gradient(135deg, #ede9fe, #f5f3ff);
    color: #7c3aed;
}
.feature-card:nth-child(8n+4) { --card-accent-start: #8b5cf6; --card-accent-end: #a78bfa; }

.feature-card:nth-child(8n+5) .feature-icon-box {
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    color: #db2777;
}
.feature-card:nth-child(8n+5) { --card-accent-start: #ec4899; --card-accent-end: #f472b6; }

.feature-card:nth-child(8n+6) .feature-icon-box {
    background: linear-gradient(135deg, #cffafe, #ecfeff);
    color: #0891b2;
}
.feature-card:nth-child(8n+6) { --card-accent-start: #06b6d4; --card-accent-end: #22d3ee; }

.feature-card:nth-child(8n+7) .feature-icon-box {
    background: linear-gradient(135deg, #fee2e2, #fef2f2);
    color: #dc2626;
}
.feature-card:nth-child(8n+7) { --card-accent-start: #ef4444; --card-accent-end: #f87171; }

.feature-card:nth-child(8n+8) .feature-icon-box {
    background: linear-gradient(135deg, #e0e7ff, #eef2ff);
    color: #4f46e5;
}
.feature-card:nth-child(8n+8) { --card-accent-start: #6366f1; --card-accent-end: #818cf8; }

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-base, #0f172a);
}

.feature-card p {
    margin: 0;
    color: var(--text-muted, #64748b);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

@keyframes feature-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes feature-icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .feature-icon-box {
        animation: none !important;
    }
}

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

.screen-card {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.screen-card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.screen-card-meta {
    padding: 20px;
}

.screen-card-meta h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.screen-card-meta p {
    margin: 0;
    color: #64748b;
}

.integration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.integration-copy > p {
    margin: 14px 0 20px;
    color: #64748b;
    font-size: 18px;
}

.integration-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.integration-points li {
    position: relative;
    padding-left: 24px;
    font-weight: 700;
    color: #334155;
}

.integration-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-strong);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.integration-card {
    border-radius: 30px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 24px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
}

.integration-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 27px;
    margin-bottom: 16px;
}

.integration-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.integration-card p {
    margin: 0;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    padding-top: 20px;
}

.pricing-page-grid {
    margin-top: 18px;
}

.pricing-preview-card {
    position: relative;
    border: 1px solid var(--border-soft, #e2e8f0);
    border-radius: 26px;
    background: var(--bg-base, #fff);
    padding: 30px 26px;
    transition: transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.34s ease,
                border-color 0.34s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: pricing-fade-up 0.6s ease backwards;
}

.pricing-preview-card:nth-child(1) { animation-delay: 0.05s; }
.pricing-preview-card:nth-child(2) { animation-delay: 0.18s; }
.pricing-preview-card:nth-child(3) { animation-delay: 0.31s; }

/* Top accent stripe — har kartaga o'z rangida */
.pricing-preview-card::before {
    content: "";
    position: absolute;
    top: 0; left: 26px; right: 26px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--plan-accent-start, #94a3b8), var(--plan-accent-end, #cbd5e1));
    opacity: 0;
    transition: opacity 0.34s ease;
}

.pricing-preview-card-1 { --plan-accent-start: #3b82f6; --plan-accent-end: #60a5fa; }
.pricing-preview-card-2 { --plan-accent-start: #f59e0b; --plan-accent-end: #fbbf24; }
.pricing-preview-card-3 { --plan-accent-start: #8b5cf6; --plan-accent-end: #a78bfa; }

.pricing-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.10);
    border-color: rgba(15, 23, 42, 0.10);
}

.pricing-preview-card:hover::before { opacity: 1; }

/* Recommended (Premium) — markazda spotlight */
.pricing-preview-card.is-recommended {
    border: 1px solid rgba(245, 158, 11, 0.40);
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.10) 0%, transparent 55%),
        var(--bg-base, #fff);
    box-shadow: 0 32px 64px rgba(245, 158, 11, 0.18),
                0 0 0 1px rgba(245, 158, 11, 0.18) inset;
    transform: translateY(-8px);
    z-index: 2;
}

.pricing-preview-card.is-recommended::before {
    opacity: 1;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.pricing-preview-card.is-recommended:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(245, 158, 11, 0.25),
                0 0 0 1px rgba(245, 158, 11, 0.30) inset;
}

/* Recommended pill */
.recommended-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #0f172a;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.40);
    animation: pricing-pill-pulse 2.4s ease-in-out infinite;
    z-index: 3;
}
.recommended-pill i {
    font-size: 13px;
    animation: pricing-pill-sparkle 2.4s ease-in-out infinite;
}

.recommended-pill.muted {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.30);
}

/* Plan header — icon + name */
.plan-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.plan-icon-badge {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(135deg, var(--plan-accent-start, #cbd5e1) 0%, var(--plan-accent-end, #e2e8f0) 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-preview-card.is-recommended .plan-icon-badge {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 10px 26px rgba(245, 158, 11, 0.40);
}

.pricing-preview-card:hover .plan-icon-badge {
    transform: scale(1.08) rotate(-6deg);
}

.pricing-preview-card h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.plan-range {
    margin: 4px 0 0;
    color: var(--text-muted, #64748b);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

/* Price */
.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 6px 0 4px;
}

.plan-price-row strong {
    font-family: "Sora", sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(180deg, var(--text-base, #0f172a) 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-preview-card.is-recommended .plan-price-row strong {
    background: linear-gradient(180deg, #b45309 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-price-row span {
    color: var(--text-muted, #64748b);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.plan-old-price {
    margin: 0;
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 13.5px;
    font-weight: 600;
}

.plan-discount {
    margin: 6px 0 0;
    color: #b45309;
    font-weight: 800;
    font-size: 13px;
}

/* Features list with refined checkmarks */
.plan-features {
    margin: 22px 0 26px;
    padding: 18px 0 0;
    list-style: none;
    display: grid;
    gap: 13px;
    border-top: 1px dashed var(--border-soft, #e2e8f0);
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-base, #334155);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.45;
}

.plan-features li i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #fff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.30);
}

.pricing-preview-card.is-recommended .plan-features li i {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 3px 8px rgba(245, 158, 11, 0.30);
}

.plan-features li span {
    flex: 1;
}

/* CTA button polish */
.plan-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.32s ease;
}
.plan-cta i {
    transition: transform 0.32s ease;
}
.plan-cta:hover {
    transform: translateY(-2px);
}
.plan-cta:hover i {
    transform: translateX(4px);
}

@keyframes pricing-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-preview-card.is-recommended {
    animation: pricing-fade-up-prominent 0.6s ease backwards;
    animation-delay: 0.18s;
}

@keyframes pricing-fade-up-prominent {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(-8px);
    }
}

@keyframes pricing-pill-pulse {
    0%, 100% { box-shadow: 0 10px 24px rgba(245, 158, 11, 0.40); }
    50%      { box-shadow: 0 14px 32px rgba(245, 158, 11, 0.55); }
}

@keyframes pricing-pill-sparkle {
    0%, 100% { transform: rotate(0) scale(1); }
    50%      { transform: rotate(15deg) scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-preview-card,
    .recommended-pill,
    .recommended-pill i,
    .plan-icon-badge {
        animation: none !important;
    }
}

.pricing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.duration-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.duration-btn {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.duration-btn.active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

.center-action {
    text-align: center;
    margin-top: 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
}

.text-link i {
    transition: transform 0.2s ease;
}

.text-link:hover {
    color: #b45309;
}

.text-link:hover i {
    transform: translateX(2px);
}

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

.testimonial-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-xxl);
    padding: 30px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.testimonial-card:hover {
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.testimonial-quote-badge {
    position: absolute;
    right: 18px;
    top: -14px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #fbbf24;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.38);
}

.stars {
    color: #f59e0b;
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #334155;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-person img,
.avatar-fallback {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
}

.avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    background: linear-gradient(130deg, #f59e0b, #ea580c);
}

.testimonial-person strong {
    display: block;
    font-size: 16px;
}

.testimonial-person small {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.faq-shell {
    max-width: 880px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    position: relative;
    border: 1px solid var(--border-soft, #e2e8f0);
    border-radius: 18px;
    background: var(--bg-base, #fff);
    overflow: hidden;
    transition: border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease, transform 0.32s ease;
    animation: faq-fade-up 0.5s ease backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.10s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.20s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.30s; }
.faq-item:nth-child(7) { animation-delay: 0.35s; }
.faq-item:nth-child(n+8) { animation-delay: 0.40s; }

/* Chap tomonda nozik gradient accent — open holatda paydo bo'ladi */
.faq-item::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, #f59e0b, #fbbf24);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.30);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.faq-item.open {
    border-color: rgba(245, 158, 11, 0.40);
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.55) 0%, var(--bg-base, #fff) 100%);
    box-shadow: 0 14px 36px rgba(245, 158, 11, 0.12);
}

.faq-item.open::before {
    transform: scaleY(1);
}

.faq-q {
    width: 100%;
    border: 0;
    background: none;
    text-align: left;
    cursor: pointer;
    padding: 18px 20px 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-base, #0f172a);
    transition: color 0.22s ease;
}

.faq-q-num {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #94a3b8;
    background: var(--bg-soft, #f8fafc);
    padding: 5px 9px;
    border-radius: 8px;
    min-width: 32px;
    text-align: center;
    transition: background 0.32s ease, color 0.32s ease;
}

.faq-item.open .faq-q-num {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #0f172a;
}

.faq-q-text {
    flex: 1;
    line-height: 1.4;
}

.faq-q-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft, #f8fafc);
    color: #64748b;
    font-size: 13px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.32s ease,
                color 0.32s ease;
}

.faq-q:hover .faq-q-toggle {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.faq-item.open .faq-q-toggle {
    transform: rotate(135deg);
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.30);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
    max-height: 480px;
}

.faq-a p {
    margin: 0;
    padding: 0 22px 20px 68px;
    color: var(--text-muted, #475569);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.65;
}

@keyframes faq-fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-item { animation: none !important; }
    .faq-q-toggle, .faq-item::before {
        transition: none !important;
    }
}

/* Dark mode polish */
[data-theme="dark"] .faq-q-num,
.dark .faq-q-num {
    background: rgba(148, 163, 184, 0.12);
    color: #94a3b8;
}
[data-theme="dark"] .faq-item.open,
.dark .faq-item.open {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0%, var(--bg-base, #0f172a) 100%);
}

.final-cta {
    padding-top: 40px;
}

.final-cta-box {
    border-radius: 40px;
    background:
        radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 82% 80%, rgba(99, 102, 241, 0.18) 0%, transparent 42%),
        linear-gradient(135deg, #0b1120 0%, #131c33 45%, #1f1610 100%);
    color: #fff;
    text-align: center;
    padding: 72px 32px 64px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.42), 0 0 0 1px rgba(245, 158, 11, 0.12) inset;
    isolation: isolate;
}

/* Animated grid pattern overlay */
.final-cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

/* Glowing decorative orbs */
.final-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
    animation: final-cta-orb-float 12s ease-in-out infinite;
}
.final-cta-orb-1 {
    top: -100px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}
.final-cta-orb-2 {
    bottom: -120px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    animation-delay: -4s;
}
.final-cta-orb-3 {
    top: 30%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    opacity: 0.35;
    animation-delay: -8s;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.30);
    color: #fbbf24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}
.final-cta-eyebrow i {
    font-size: 13px;
    animation: final-cta-sparkle 2.4s ease-in-out infinite;
}

.final-cta-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    font-size: 32px;
    margin: 0 auto 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.45);
    animation: final-cta-icon-pulse 3s ease-in-out infinite;
}
.final-cta-icon::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    filter: blur(20px);
    opacity: 0.55;
    z-index: -1;
    animation: final-cta-icon-glow 3s ease-in-out infinite;
}

.final-cta-box h2 {
    max-width: 22ch;
    margin: 0 auto 14px;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(180deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-box p {
    margin: 0 auto;
    max-width: 56ch;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    font-weight: 500;
}

.final-cta-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.final-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    padding: 14px 26px;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s ease;
}

.final-cta-actions .btn:hover {
    transform: translateY(-2px);
}

.final-cta-btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
    position: relative;
    overflow: hidden;
}
.final-cta-btn-primary::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
}
.final-cta-btn-primary:hover::after { left: 130%; }
.final-cta-btn-primary:hover {
    box-shadow: 0 14px 36px rgba(245, 158, 11, 0.50);
}

/* Trust row */
.final-cta-trust {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 28px;
}
.final-cta-trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
    font-weight: 600;
}
.final-cta-trust i {
    color: #4ade80;
    font-size: 15px;
}

@keyframes final-cta-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(20px, -20px) scale(1.08); }
}

@keyframes final-cta-icon-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

@keyframes final-cta-icon-glow {
    0%, 100% { opacity: 0.45; }
    50%      { opacity: 0.75; }
}

@keyframes final-cta-sparkle {
    0%, 100% { transform: rotate(0) scale(1); opacity: 1; }
    50%      { transform: rotate(15deg) scale(1.15); opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
    .final-cta-orb,
    .final-cta-icon,
    .final-cta-icon::after,
    .final-cta-eyebrow i {
        animation: none !important;
    }
}

@media (max-width: 720px) {
    .final-cta-box {
        border-radius: 28px;
        padding: 56px 22px 48px;
    }
    .final-cta-trust {
        gap: 12px 18px;
    }
    .final-cta-trust li {
        font-size: 12.5px;
    }
    .final-cta-orb-3 { display: none; }
}

.page-hero {
    padding: 74px 0 24px;
}

.page-hero-centered {
    text-align: center;
}

.page-hero-centered p {
    margin: 20px auto 0;
    max-width: 64ch;
    color: #64748b;
    font-size: 17px;
}

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

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.demo-left p {
    margin: 16px 0 20px;
    color: #64748b;
    font-size: 16px;
}

.demo-benefit-cards {
    display: grid;
    gap: 12px;
}

.demo-benefit-card {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 24px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.demo-benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fef3c7;
    color: #b45309;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    flex-shrink: 0;
}

.demo-benefit-card h3 {
    font-size: 18px;
    line-height: 1.45;
}

.demo-form-shell {
    border-radius: 42px;
    border: 1px solid var(--line);
    background: #f8fafc;
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.demo-form-shell h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.demo-form-shell form {
    display: grid;
    gap: 8px;
}

.demo-form-shell label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.input,
.demo-form-shell select,
.demo-form-shell input[type="password"],
.demo-form-shell input[type="text"],
.demo-form-shell input[type="tel"] {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    background: #fff;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.input::placeholder,
.demo-form-shell input::placeholder {
    color: #94a3b8;
    font-weight: 600;
}

.input:focus,
.demo-form-shell select:focus,
.demo-form-shell input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25);
}

.consent-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #475569;
    margin-top: 8px;
}

.consent-row input {
    width: 18px;
    height: 18px;
}

.field-error {
    margin: 0;
    color: #be123c;
    font-size: 13px;
    font-weight: 700;
}

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

.support-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xxl);
    background: var(--bg-soft);
    padding: 28px;
    transition: all 0.2s ease;
}

.support-card:hover {
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.support-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #eff6ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.support-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.support-card p {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.support-empty-state {
    grid-column: 1 / -1;
    border: 2px dashed #f5cf93;
    background: #fffbf4;
    border-radius: 32px;
    padding: 30px;
    text-align: center;
}

.support-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #fef3c7;
    color: #b45309;
    margin: 0 auto 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
}

.support-empty-state h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.support-empty-state p {
    margin: 0 0 4px;
    color: #8a5c25;
    font-weight: 700;
}

.support-empty-state small {
    color: #a16207;
    font-weight: 800;
}

.support-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.support-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: #fff;
    padding: 24px;
}

.support-panel h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.support-panel > p {
    margin: 0 0 12px;
    color: #64748b;
}

.support-step-list,
.support-faq-list {
    display: grid;
    gap: 10px;
}

.support-step-item,
.support-faq-item {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 14px;
}

.support-step-item h3,
.support-faq-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.support-step-item p,
.support-faq-item p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.support-cta-block {
    border-radius: var(--radius-xxl);
    background: linear-gradient(145deg, #0f172a, #1e293b);
    color: #fff;
    text-align: center;
    padding: 50px 22px;
}

.support-cta-block h2 {
    font-size: clamp(32px, 3.8vw, 58px);
    margin-bottom: 10px;
}

.support-cta-block p {
    margin: 0 auto;
    max-width: 56ch;
    color: #cbd5e1;
    font-size: 18px;
}

.support-cta-actions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vacancy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.vacancy-card {
    border-radius: var(--radius-xxl);
    border: 1px solid var(--line);
    background: var(--bg-soft);
    padding: 30px;
    transition: all 0.2s ease;
}

.vacancy-card:hover {
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.vacancy-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.vacancy-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fef3c7;
    color: #b45309;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.vacancy-dept {
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: #fff;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.vacancy-card h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.vacancy-card > p {
    margin: 0 0 14px;
    color: #64748b;
    font-weight: 600;
}

.vacancy-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.vacancy-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.vacancy-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.vacancy-columns h3 {
    font-size: 20px;
    margin-bottom: 7px;
}

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

.vacancy-actions {
    padding-top: 12px;
    border-top: 1px solid #dbe2eb;
    display: flex;
    justify-content: flex-end;
}

.legal-shell {
    max-width: 900px;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 30px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.legal-shell p,
.legal-shell li,
.legal-shell h2,
.legal-shell h3,
.legal-shell h4 {
    color: #334155;
}

.pricing-benefit-shell {
    border-radius: 58px;
    background: #0f172a;
    padding: 46px 24px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.pricing-benefit-item {
    text-align: center;
}

.pricing-benefit-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    margin: 0 auto 14px;
    background: rgba(255, 255, 255, 0.11);
    color: #fbbf24;
    font-size: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pricing-benefit-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.pricing-benefit-item p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
}

.site-footer {
    margin-top: 96px;
    padding: 70px 0 20px;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
}

.footer-inner {
    max-width: 1240px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand-block .brand {
    margin-bottom: 12px;
}

.footer-brand-block p {
    margin: 0 0 16px;
    color: #64748b;
    max-width: 36ch;
    font-weight: 600;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid #dbe2eb;
    background: #fff;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    border-color: #f5cf93;
    color: #b45309;
    background: #fffbf4;
}

.site-footer h4 {
    margin: 0 0 12px;
    font-size: 20px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer li,
.site-footer a {
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
}

.site-footer a:hover {
    color: #b45309;
}

.footer-cta-buttons {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #dbe2eb;
}

.footer-bottom p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.empty-note {
    border-radius: 16px;
    border: 1px dashed #f5cf93;
    background: #fffbf4;
    color: #a16207;
    padding: 16px;
    font-weight: 700;
}

.reveal-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 1180px) {
    .quick-links-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .screen-grid,
    .pricing-preview-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vacancy-grid {
        grid-template-columns: 1fr;
    }

    .pricing-benefit-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .home-hero-grid,
    .integration-layout,
    .demo-layout,
    .support-quick-grid {
        grid-template-columns: 1fr;
    }

    .floating-stat {
        position: static;
        margin-top: 12px;
    }

    .home-hero-visual {
        display: grid;
        gap: 10px;
        min-height: 0;
        padding: 0;
        perspective: none;
    }

    .hero-title-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-mini-live {
        grid-template-columns: 1fr;
        justify-self: start;
    }

    .lp-dashboard-preview,
    .lp-float-card {
        display: none;
    }

    .nav-login-btn,
    .nav-demo-link {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .final-cta-box {
        border-radius: 38px;
    }

    .partners-marquee-right .partners-marquee-track {
        animation-duration: 55s;
    }

    .partner-logo-item {
        min-width: 260px;
        height: 116px;
        padding: 14px 20px;
    }

    .partner-logo-item img {
        max-height: 80px;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 86px;
        border: 1px solid #dbe2eb;
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--shadow-soft);
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        z-index: 45;
    }

    .nav.is-open {
        display: flex;
    }

    .mobile-divider {
        display: block;
        width: 100%;
        height: 1px;
        background: #e2e8f0;
        margin: 4px 0;
    }

    .lang-switch-mobile {
        display: inline-flex;
    }

    .mobile-action-row {
        display: grid;
        width: 100%;
        gap: 8px;
    }

    .nav-actions .lang-switch {
        display: none;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .screen-grid,
    .feature-grid,
    .integration-grid,
    .pricing-preview-grid,
    .testimonial-grid,
    .support-grid,
    .pricing-benefit-shell,
    .footer-grid,
    .vacancy-columns,
    .pricing-actions {
        grid-template-columns: 1fr;
    }

    .pricing-preview-card,
    .feature-card,
    .testimonial-card,
    .support-card,
    .vacancy-card,
    .demo-form-shell,
    .legal-shell {
        border-radius: 26px;
        padding: 22px;
    }

    .hero-image-wrap {
        border-radius: 24px;
    }

    .hero-dashboard-image {
        border-radius: 18px;
    }

    .faq-q {
        font-size: 15px;
        padding: 16px 14px 16px 16px;
        gap: 10px;
    }

    .faq-q-num {
        font-size: 11px;
        padding: 4px 7px;
        min-width: 28px;
    }

    .faq-q-toggle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .faq-a p {
        padding: 0 16px 16px 53px;
        font-size: 14px;
    }

    .site-footer {
        margin-top: 70px;
        padding-top: 56px;
    }

    .partners-strip {
        padding: 20px 0 24px;
    }

    .partners-head {
        margin-bottom: 10px;
    }

    .partners-head p {
        letter-spacing: 1.4px;
    }

    .partners-logo-stage {
        border-radius: 16px;
        padding: 16px 0;
    }

    .partners-marquee {
        -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
        mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    }

    .partners-marquee-right .partners-marquee-track {
        animation-duration: 45s;
    }

    .partners-marquee-group {
        gap: 16px;
        padding-right: 16px;
    }

    .partner-logo-item {
        min-width: 208px;
        height: 92px;
        border-radius: 18px;
        padding: 10px 16px;
    }

    .partner-logo-item img {
        max-height: 64px;
    }

    .partners-empty {
        font-size: 13px;
    }
}

/* =====================================================================
   MUAMMO VA YECHIM SECTION
   ===================================================================== */
.lp-problem-section {
    background: var(--bg-base, #fff);
}

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

.lp-problem-card {
    position: relative;
    border: 1px solid var(--border-soft, #e2e8f0);
    border-radius: 22px;
    background: var(--bg-soft, #f8fafc);
    padding: 28px 26px 24px;
    transition: transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.34s ease,
                border-color 0.34s ease,
                background 0.34s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: lp-problem-fade-up 0.55s ease backwards;
}

/* Stagger entrance */
.lp-problem-grid .lp-problem-card:nth-child(1) { animation-delay: 0.05s; }
.lp-problem-grid .lp-problem-card:nth-child(2) { animation-delay: 0.12s; }
.lp-problem-grid .lp-problem-card:nth-child(3) { animation-delay: 0.19s; }
.lp-problem-grid .lp-problem-card:nth-child(4) { animation-delay: 0.26s; }
.lp-problem-grid .lp-problem-card:nth-child(5) { animation-delay: 0.33s; }
.lp-problem-grid .lp-problem-card:nth-child(6) { animation-delay: 0.40s; }

.lp-problem-card::before {
    content: "";
    position: absolute;
    top: 0; left: 22px; right: 22px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--problem-accent-start, #f59e0b), var(--problem-accent-end, #fbbf24));
    opacity: 0;
    transition: opacity 0.34s ease;
}

.lp-problem-card:hover {
    background: var(--bg-base, #fff);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.10);
    border-color: var(--border-strong, #cbd5e1);
    transform: translateY(-5px);
}

.lp-problem-card:hover::before { opacity: 1; }

.lp-problem-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 16px;
    position: relative;
    transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: lp-problem-icon-float 5s ease-in-out infinite;
}

/* Stagger float — to'lqinsimon harakat */
.lp-problem-grid .lp-problem-card:nth-child(1) .lp-problem-icon { animation-delay: 0s; }
.lp-problem-grid .lp-problem-card:nth-child(2) .lp-problem-icon { animation-delay: 0.4s; }
.lp-problem-grid .lp-problem-card:nth-child(3) .lp-problem-icon { animation-delay: 0.8s; }
.lp-problem-grid .lp-problem-card:nth-child(4) .lp-problem-icon { animation-delay: 1.2s; }
.lp-problem-grid .lp-problem-card:nth-child(5) .lp-problem-icon { animation-delay: 1.6s; }
.lp-problem-grid .lp-problem-card:nth-child(6) .lp-problem-icon { animation-delay: 2.0s; }

/* Glow halo — hover'da paydo bo'ladi */
.lp-problem-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 21px;
    background: inherit;
    filter: blur(14px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.42s ease;
}

.lp-problem-card:hover .lp-problem-icon {
    transform: scale(1.10) rotate(-5deg);
    animation-play-state: paused;
}

.lp-problem-card:hover .lp-problem-icon::after { opacity: 0.55; }

/* Gradient icon backgrounds — har bir muammoga maxsus rang */
.lp-problem-icon-red {
    background: linear-gradient(135deg, #fecaca, #fee2e2);
    color: #dc2626;
}
.lp-problem-grid .lp-problem-card:nth-child(1) {
    --problem-accent-start: #ef4444;
    --problem-accent-end: #f87171;
}

.lp-problem-icon-amber {
    background: linear-gradient(135deg, #fde68a, #fef3c7);
    color: #b45309;
}
.lp-problem-grid .lp-problem-card:nth-child(2) {
    --problem-accent-start: #f59e0b;
    --problem-accent-end: #fbbf24;
}

.lp-problem-icon-blue {
    background: linear-gradient(135deg, #bfdbfe, #dbeafe);
    color: #2563eb;
}
.lp-problem-grid .lp-problem-card:nth-child(3) {
    --problem-accent-start: #3b82f6;
    --problem-accent-end: #60a5fa;
}

.lp-problem-icon-purple {
    background: linear-gradient(135deg, #ddd6fe, #ede9fe);
    color: #7c3aed;
}
.lp-problem-grid .lp-problem-card:nth-child(4) {
    --problem-accent-start: #8b5cf6;
    --problem-accent-end: #a78bfa;
}

.lp-problem-icon-orange {
    background: linear-gradient(135deg, #fed7aa, #ffedd5);
    color: #ea580c;
}
.lp-problem-grid .lp-problem-card:nth-child(5) {
    --problem-accent-start: #f97316;
    --problem-accent-end: #fb923c;
}

.lp-problem-icon-green {
    background: linear-gradient(135deg, #bbf7d0, #dcfce7);
    color: #16a34a;
}
.lp-problem-grid .lp-problem-card:nth-child(6) {
    --problem-accent-start: #10b981;
    --problem-accent-end: #34d399;
}

@keyframes lp-problem-fade-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-problem-icon-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
    .lp-problem-card,
    .lp-problem-icon {
        animation: none !important;
    }
}

.lp-problem-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text-base, #0f172a);
    line-height: 1.3;
}

.lp-problem-card > p {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--text-muted, #64748b);
    font-weight: 500;
    line-height: 1.55;
    flex: 1;
}

.lp-problem-solution {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(16, 185, 129, 0.12));
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.lp-problem-solution i {
    color: #16a34a;
    font-size: 15px;
    flex-shrink: 0;
}

.lp-problem-solution span {
    font-size: 12.5px;
    font-weight: 600;
    color: #15803d;
    line-height: 1.4;
}

/* Dark mode */
[data-theme="dark"] .lp-problem-solution,
.dark .lp-problem-solution {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.10), rgba(16, 185, 129, 0.15));
    border-color: rgba(34, 197, 94, 0.30);
}
[data-theme="dark"] .lp-problem-solution span,
.dark .lp-problem-solution span {
    color: #4ade80;
}
[data-theme="dark"] .lp-problem-solution i,
.dark .lp-problem-solution i {
    color: #4ade80;
}

/* =====================================================================
   KIMLAR UCHUN SECTION
   ===================================================================== */
.lp-forwhom-section {
    background: var(--bg-soft);
}

.lp-forwhom-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.lp-forwhom-card {
    border: 2px solid #e2e8f0;
    border-radius: 32px;
    background: #fff;
    padding: 24px 20px;
    transition: all 0.22s ease;
}

.lp-forwhom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
}

.lp-forwhom-card-amber:hover { border-color: #fbbf24; }
.lp-forwhom-card-blue:hover  { border-color: #93c5fd; }
.lp-forwhom-card-green:hover { border-color: #86efac; }
.lp-forwhom-card-purple:hover{ border-color: #c4b5fd; }
.lp-forwhom-card-slate:hover { border-color: #94a3b8; }

.lp-forwhom-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.lp-forwhom-card-amber .lp-forwhom-icon { background: #fef3c7; color: #b45309; }
.lp-forwhom-card-blue .lp-forwhom-icon  { background: #dbeafe; color: #2563eb; }
.lp-forwhom-card-green .lp-forwhom-icon { background: #dcfce7; color: #16a34a; }
.lp-forwhom-card-purple .lp-forwhom-icon{ background: #ede9fe; color: #7c3aed; }
.lp-forwhom-card-slate .lp-forwhom-icon { background: #e2e8f0; color: #475569; }

.lp-forwhom-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #0f172a;
    line-height: 1.3;
}

.lp-forwhom-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.lp-forwhom-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    line-height: 1.4;
}

.lp-forwhom-card ul li i {
    color: #10b981;
    font-size: 15px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* input-textarea (demo form) */
.input-textarea {
    resize: vertical;
    min-height: 80px;
}

/* =====================================================================
   DASHBOARD SHOWCASE SECTION (lp-dash-showcase)
   ===================================================================== */
.lp-dash-showcase {
    background: var(--bg-soft);
}

/* Live dot (eyebrow) */
.lp-ds-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: lp-ds-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 2px;
}

@keyframes lp-ds-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50%       { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
}

/* Tabs row */
.lp-ds-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-bottom: 20px;
}

.lp-ds-tabs::-webkit-scrollbar {
    display: none;
}

.lp-ds-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-family: "Manrope", sans-serif;
}

.lp-ds-tab:hover {
    border-color: var(--line-strong);
    color: var(--text);
    background: var(--bg-soft-2);
}

.lp-ds-tab.is-active {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-color: #0f172a;
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.lp-ds-tab i {
    font-size: 15px;
}

/* Stage (browser wrapper) */
.lp-ds-stage {
    position: relative;
}

/* Individual panel */
.lp-ds-panel {
    display: none;
    animation: lp-ds-fade-in 0.3s ease forwards;
}

.lp-ds-panel.is-active {
    display: block;
}

@keyframes lp-ds-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .lp-ds-panel {
        animation: none;
    }
    .lp-ds-live-dot {
        animation: none;
    }
}

/* Browser chrome shell */
.lp-ds-browser-chrome {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(203, 213, 225, 0.8);
    box-shadow: 0 24px 68px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.7);
    background: #f1f5f9;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.lp-ds-browser-chrome:hover {
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.8);
    transform: translateY(-3px) scale(1.005);
}

/* Chrome top bar */
.lp-ds-chrome-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.lp-ds-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.lp-ds-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-ds-dot-red    { background: #fb7185; }
.lp-ds-dot-yellow { background: #fbbf24; }
.lp-ds-dot-green  { background: #34d399; }

.lp-ds-url-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.lp-ds-url-bar i {
    color: #22c55e;
    font-size: 11px;
    flex-shrink: 0;
}

.lp-ds-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(236, 253, 245, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #047857;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Image wrapper */
.lp-ds-img-wrap {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #0f172a;
    line-height: 0;
    max-height: 520px;
}

.lp-ds-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 520px;
    object-fit: cover;
    object-position: top;
}

/* Floating badges over screenshot */
.lp-ds-float-badges {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    pointer-events: none;
}

.lp-ds-fbadge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lp-ds-fbadge-green {
    background: rgba(22, 101, 52, 0.85);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.lp-ds-fbadge-blue {
    background: rgba(30, 58, 138, 0.85);
    color: #bfdbfe;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.lp-ds-fbadge-amber {
    background: rgba(120, 53, 15, 0.85);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Bottom row */
.lp-ds-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 16px 22px;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
}

.lp-ds-bottom-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-soft);
    min-width: 0;
    flex: 1;
}

.lp-ds-bottom-info i {
    font-size: 18px;
    color: var(--accent-strong);
    flex-shrink: 0;
}

.lp-ds-bottom-info strong {
    color: var(--text);
    font-weight: 800;
}

/* === Responsive === */
@media (max-width: 768px) {
    .lp-ds-tabs {
        gap: 4px;
        margin-bottom: 14px;
    }

    .lp-ds-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .lp-ds-tab span {
        display: none;
    }

    .lp-ds-tab i {
        font-size: 17px;
    }

    .lp-ds-chrome-bar {
        gap: 8px;
        padding: 8px 12px;
    }

    .lp-ds-url-bar {
        display: none;
    }

    .lp-ds-live-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .lp-ds-img-wrap {
        max-height: 260px;
    }

    .lp-ds-img-wrap img {
        max-height: 260px;
    }

    .lp-ds-float-badges {
        bottom: 8px;
        left: 8px;
        gap: 4px;
    }

    .lp-ds-fbadge {
        font-size: 10px;
        padding: 3px 9px;
    }

    .lp-ds-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .lp-ds-browser-chrome {
        border-radius: 14px;
    }

    .lp-ds-img-wrap {
        max-height: 200px;
    }

    .lp-ds-img-wrap img {
        max-height: 200px;
    }
}

/* Responsive: muammo/yechim va kimlar uchun */
@media (max-width: 1100px) {
    .lp-problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lp-forwhom-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .lp-problem-grid,
    .lp-forwhom-grid {
        grid-template-columns: 1fr;
    }
    .lp-problem-card,
    .lp-forwhom-card {
        border-radius: 24px;
        padding: 20px;
    }
    .lp-forwhom-card h3 {
        font-size: 16px;
    }
}
