:root {
    --bg: #f9fafb;
    --bg-alt: #ffffff;
    --accent: #2563eb;
    --accent-soft: rgba(37, 99, 235, 0.08);
    --accent-2: #0ea5e9;
    --text: #0f172a;
    --text-muted: #6b7280;
    --card: #ffffff;
    --border: rgba(148, 163, 184, 0.28);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 24px 70px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.06);
    --transition-fast: 0.18s ease-out;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background:
            radial-gradient(circle at 0% 0%, #e5f0ff 0, transparent 40%),
            radial-gradient(circle at 100% 0%, #e0f2fe 0, transparent 45%),
            #f9fafb;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Layout */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(249, 250, 251, 0.85);
    border-bottom: 1px solid rgba(209, 213, 219, 0.7);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: radial-gradient(circle at 0 0, #e0f2fe, #bfdbfe 45%, #93c5fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.35);
}

.logo-mark span {
    font-weight: 700;
    font-size: 18px;
    color: #1e293b;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text-main {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f172a;
}

.logo-text-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    color: var(--text-muted);
}

.nav-links a {
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 999px;
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: #111827;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    border-radius: 999px;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition:
            transform var(--transition-fast),
            box-shadow var(--transition-fast),
            background var(--transition-fast),
            color var(--transition-fast),
            border-color var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #f9fafb;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-ghost:hover {
    background: rgba(243, 244, 246, 0.8);
    color: #111827;
    border-color: rgba(148, 163, 184, 1);
}

.nav-burger {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.15), rgba(249, 250, 251, 0.95));
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-burger-line {
    width: 16px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
    position: relative;
}

.nav-burger-line::before,
.nav-burger-line::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    left: 0;
    background: #111827;
    border-radius: 999px;
}

.nav-burger-line::before {
    top: -5px;
}

.nav-burger-line::after {
    bottom: -5px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-size: 14px;
    color: var(--text-muted);
}

.nav-mobile a:hover {
    color: #111827;
}

/* HERO */
.hero {
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
            radial-gradient(circle at 0% 0%, rgba(191, 219, 254, 0.55), transparent 60%),
            radial-gradient(circle at 110% 0%, rgba(186, 230, 253, 0.55), transparent 65%),
            radial-gradient(circle at 50% 110%, rgba(226, 232, 240, 0.7), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
    z-index: -2;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(209, 213, 219, 0.9);
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.pill-dot {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #22c55e, #0ea5e9 40%, #6366f1 80%);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.5);
}

.hero-title {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    color: #020617;
}

.hero-title span.accent {
    background: linear-gradient(90deg, #2563eb, #0ea5e9, #8b5cf6);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 24px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.hero-note {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-note-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.hero-meta-item span {
    display: block;
}

.hero-meta-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 10px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.hero-meta-value {
    font-weight: 500;
    color: #111827;
}

/* Hero визуал */
.hero-visual {
    position: relative;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 0 0, rgba(219, 234, 254, 0.9), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(209, 213, 219, 0.9);
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.hero-card-title {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-card-title span {
    display: block;
    color: #111827;
    font-weight: 500;
    font-size: 14px;
}

.hero-card-badges {
    display: flex;
    gap: 8px;
    font-size: 11px;
}

.hero-badge {
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-muted);
}

.hero-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.hero-plan,
.hero-render {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(209, 213, 219, 0.9);
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.hero-plan-label,
.hero-render-label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(209, 213, 219, 1);
    color: var(--text-muted);
}

.hero-plan-inner,
.hero-render-inner {
    margin-top: 22px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    background:
            radial-gradient(circle at 10% 0%, rgba(148, 163, 184, 0.25), transparent 60%),
            radial-gradient(circle at 90% 90%, rgba(52, 211, 153, 0.18), transparent 56%),
            #f9fafb;
    position: relative;
    overflow: hidden;
}

.plan-lines {
    position: absolute;
    inset: 16px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.8);
}

.plan-lines::before,
.plan-lines::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.85);
}

.plan-lines::before {
    inset: 12px 48px 12px 12px;
}

.plan-lines::after {
    inset: 40px 16px 12px 120px;
}

.plan-door {
    position: absolute;
    width: 28px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
}

.hero-render-inner::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 18px;
    background:
            radial-gradient(circle at 15% 10%, rgba(248, 250, 252, 0.9), transparent 55%),
            radial-gradient(circle at 90% 90%, rgba(251, 191, 36, 0.3), transparent 50%),
            linear-gradient(145deg, #e5e7eb, #f9fafb);
}

.hero-render-inner::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 18px;
    border: 1px solid rgba(209, 213, 219, 0.8);
    box-shadow: inset 0 0 0 1px rgba(248, 250, 252, 0.7);
}

.hero-render-fg {
    position: absolute;
    inset: 24px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 10px;
}

.sofa {
    border-radius: 14px;
    background:
            radial-gradient(circle at 15% 0%, rgba(248, 250, 252, 1), transparent 50%),
            linear-gradient(135deg, #e5e7eb, #cbd5f5);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.render-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.render-tile {
    flex: 1;
    border-radius: 12px;
    background: rgba(249, 250, 251, 0.95);
    border: 1px solid rgba(209, 213, 219, 0.9);
    backdrop-filter: blur(10px);
}

.hero-floating {
    position: absolute;
    bottom: -8px;
    right: -4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    pointer-events: none;
}

.hero-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 12px 26px rgba(148, 163, 184, 0.35);
    font-size: 11px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(14px);
}

.hero-chip span {
    color: #111827;
    font-weight: 500;
}

.hero-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

/* Секции */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.section-title {
    font-size: 26px;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
    color: #020617;
}

.section-title span {
    background: linear-gradient(90deg, #2563eb, #0ea5e9, #8b5cf6);
    -webkit-background-clip: text;
    color: transparent;
}

.section-subtitle {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    max-width: 540px;
    margin-inline: auto;
}

/* Как это работает */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border: 1px solid var(--border);
    padding: 16px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    background: radial-gradient(circle at 0 0, rgba(219, 234, 254, 0.85), transparent 70%);
}

.step-title {
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 500;
    color: #111827;
}

.step-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 14px 14px 16px;
    box-shadow: var(--shadow-card);
    font-size: 13px;
}

.feature-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.feature-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #111827;
}

.feature-text {
    color: var(--text-muted);
}

.feature-highlight {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 0 0, rgba(219, 234, 254, 0.85), #ffffff);
    border: 1px solid rgba(191, 219, 254, 0.9);
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.feature-highlight-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #111827;
}

.feature-highlight-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
}

.feature-tag {
    padding: 4px 9px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(191, 219, 254, 0.9);
    color: var(--text-muted);
}

/* Cases */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.case-card {
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border: 1px solid var(--border);
    padding: 16px 14px 16px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.case-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #111827;
}

.case-tagline {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.case-metric {
    font-size: 11px;
    color: #2461e9;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
}

.pricing-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px 3px 3px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(209, 213, 219, 0.9);
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-pill-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #22c55e, #0ea5e9);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
}

.pricing-title {
    font-size: 18px;
    margin-bottom: 6px;
    color: #111827;
}

.pricing-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.pricing-tier {
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid rgba(209, 213, 219, 0.9);
    padding: 10px;
    font-size: 12px;
}

.pricing-tier-name {
    font-weight: 500;
    margin-bottom: 2px;
    color: #111827;
}

.pricing-price {
    font-size: 14px;
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 11px;
    color: var(--text-muted);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-list li::before {
    content: "• ";
    color: #2563eb;
}

.pricing-side {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 0 0, rgba(219, 234, 254, 0.85), #ffffff);
    border: 1px solid rgba(191, 219, 254, 0.9);
    padding: 18px;
    box-shadow: var(--shadow-soft);
    font-size: 13px;
}

.pricing-side-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #111827;
}

.pricing-side-text {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-pill-compact {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(209, 213, 219, 0.9);
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

/* CTA */
.cta {
    padding: 60px 0 50px;
}

.cta-inner {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #eef2ff, #ecfeff);
    border: 1px solid rgba(191, 219, 254, 0.9);
    padding: 26px 22px 24px;
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cta-main {
    max-width: 520px;
}

.cta-title {
    font-size: 22px;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
    color: #020617;
}

.cta-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.cta-note {
    font-size: 11px;
    color: #4f46e5;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
}

.cta-input-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cta-input {
    flex: 1;
    min-width: 0;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    background: rgba(255, 255, 255, 0.96);
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text);
    outline: none;
    transition:
            border-color var(--transition-fast),
            box-shadow var(--transition-fast),
            background var(--transition-fast);
}

.cta-input::placeholder {
    color: rgba(148, 163, 184, 0.9);
}

.cta-input:focus {
    border-color: rgba(37, 99, 235, 0.9);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.5);
    background: #ffffff;
}

.cta-secondary {
    font-size: 11px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 18px 0 24px;
    border-top: 1px solid rgba(209, 213, 219, 0.9);
    background: #f9fafb;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: #111827;
}

/* Анимации появления */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 28px;
    }

    .hero-visual {
        max-width: 440px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 840px) {
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cases-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: inline-flex;
    }

    .hero-meta {
        gap: 12px;
    }

    .cta-inner {
        padding: 20px 16px 18px;
    }
}

@media (max-width: 640px) {
    .steps-grid,
    .feature-list,
    .cases-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .pricing-tiers {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        margin-top: 6px;
    }
}

/* ===== УБРАТЬ БОРДЕРЫ У БЛОКОВ / КАРТОЧЕК ===== */

.hero-card,
.hero-plan,
.hero-render,
.render-tile,
.hero-chip,
.feature-highlight,
.feature-card,
.step-card,
.case-card,
.pricing-card,
.pricing-tier,
.pricing-side,
.feature-tag {
    border: none;
}
