:root {
    --bg: #ffffff;
    --bg-alt: #f7f8fa;
    --bg-dark: #0a0f1f;
    --text: #0a0f1f;
    --text-muted: #5b6479;
    --text-inverse: #ffffff;
    --brand: #0057c2;
    --brand-hover: #003a82;
    --brand-soft: #e8f0fb;
    --accent: #ff7a00;
    --border: #e6e8ee;
    --border-strong: #cdd2dc;
    --shadow-sm: 0 1px 2px rgba(10, 15, 31, 0.06);
    --shadow-md: 0 1px 2px rgba(10, 15, 31, 0.06), 0 8px 24px rgba(10, 15, 31, 0.05);
    --shadow-lg: 0 1px 2px rgba(10, 15, 31, 0.06), 0 24px 48px rgba(10, 15, 31, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --container: 1200px;
    --gutter: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    font-feature-settings: 'ss01', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--brand-hover);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
}

h1 {
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: -0.03em;
    line-height: 1.05;
}

h2 {
    font-size: clamp(28px, 3.5vw, 40px);
}

h3 {
    font-size: 20px;
    line-height: 1.3;
}

p {
    color: var(--text-muted);
}

/* Layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: 96px 0;
}

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

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-header .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
}

.section-header p {
    margin-top: 16px;
    font-size: 19px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--brand);
    color: var(--text-inverse);
}

.btn-primary:hover {
    background: var(--brand-hover);
    color: var(--text-inverse);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-secondary:hover {
    border-color: var(--text);
    color: var(--text);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.btn-ghost:hover {
    color: var(--brand);
}

.btn-block {
    width: 100%;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

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

.nav a {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}

.nav a:hover {
    color: var(--brand);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hero */
.hero {
    padding: 88px 0 96px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero .lead {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-meta .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2bb673;
    box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.18);
}

.hero-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.hero-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #2bb673;
    background: rgba(43, 182, 115, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
}

.hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.hero-card-row:last-child {
    border-bottom: none;
}

.hero-card-label {
    color: var(--text-muted);
    font-size: 14px;
}

.hero-card-value {
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
}

.hero-card-value.big {
    font-size: 28px;
    color: var(--brand);
    letter-spacing: -0.02em;
}

.hero-card-progress {
    margin-top: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 16px;
}

.hero-card-progress-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.hero-card-progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden;
}

.hero-card-progress-fill {
    height: 100%;
    width: 88%;
    background: linear-gradient(90deg, var(--brand) 0%, #2b8eff 100%);
    border-radius: 999px;
}

/* Trust strip */
.trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    padding: 28px 0;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 40px;
    font-size: 14px;
    color: var(--text-muted);
}

.trust-row strong {
    color: var(--text);
    font-weight: 600;
}

.trust-row .sep {
    color: var(--border-strong);
}

/* Pain points */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.pain-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pain-card .num {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.pain-card h3 {
    font-size: 17px;
    line-height: 1.4;
    color: var(--text);
}

/* Solution */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.solution-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-content h2 {
    margin-bottom: 20px;
}

.solution-content > p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.solution-functions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.solution-functions .item {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.solution-functions .item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.solution-functions .item p {
    font-size: 14px;
    line-height: 1.5;
}

/* Showcase — product screenshots */
.showcase-rows {
    display: grid;
    gap: 96px;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.showcase-row.reverse {
    direction: rtl;
}

.showcase-row.reverse > * {
    direction: ltr;
}

.showcase-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
}

.showcase-content .eyebrow .num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
}

.showcase-content h3 {
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.showcase-content p {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.showcase-content ul {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.showcase-content ul li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    color: var(--text);
}

.showcase-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-soft);
    border: 2px solid var(--brand);
}

/* Device frames */
.device {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.device-desktop {
    background: transparent;
    padding: 0;
    box-shadow: var(--shadow-lg);
}

.device-desktop .device-screen {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 15, 31, 0.12);
}

.device-desktop .device-screen img {
    display: block;
    width: 100%;
    height: auto;
}

.device-desktop .device-bar {
    background: #f4f6fa;
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.device-desktop .device-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d6dae3;
}

.device-desktop .device-bar span:nth-child(1) { background: #ff6259; }
.device-desktop .device-bar span:nth-child(2) { background: #febc2e; }
.device-desktop .device-bar span:nth-child(3) { background: #28c840; }

.showcase-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-mobile img {
    display: block;
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(10, 15, 31, 0.18)) drop-shadow(0 4px 12px rgba(10, 15, 31, 0.08));
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature {
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.feature:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

.feature h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text);
}

.feature p {
    font-size: 14px;
    line-height: 1.55;
}

/* Metrics */
.metrics {
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.metrics h2,
.metrics .section-header p {
    color: var(--text-inverse);
}

.metrics .section-header p {
    opacity: 0.7;
}

.metrics .section-header .eyebrow {
    color: #6aa9ff;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.metric {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.metric-value {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-inverse);
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #b3c3da 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* Benefits */
.benefits-list {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
}

.benefits-list .check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

/* Comparison */
.comparison-table {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg);
}

.comparison-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    border-bottom: 1px solid var(--border);
}

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

.comparison-row.head {
    background: var(--bg-alt);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.comparison-row.head > div {
    padding: 16px 24px;
}

.comparison-row > div {
    padding: 24px;
}

.comparison-name {
    font-weight: 600;
    color: var(--text);
    border-right: 1px solid var(--border);
}

.comparison-cons {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.pricing-card.featured {
    border-color: var(--brand);
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-hover) 100%);
    color: var(--text-inverse);
    position: relative;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .pricing-included li {
    color: var(--text-inverse);
}

.pricing-card.featured .price-unit,
.pricing-card.featured .pricing-meta {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
    background: var(--brand-soft);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.pricing-card.featured .pricing-tag {
    color: var(--brand);
    background: rgba(255, 255, 255, 0.95);
}

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

.pricing-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.price-value {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-unit {
    font-size: 15px;
    color: var(--text-muted);
}

.pricing-included {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
    display: grid;
    gap: 10px;
}

.pricing-card.featured .pricing-included {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-included li {
    font-size: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-included li::before {
    content: '✓';
    color: var(--brand);
    font-weight: 700;
}

.pricing-card.featured .pricing-included li::before {
    color: #ffffff;
}

/* Pricing on request */
.pricing-request {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.pricing-request .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
}

.pricing-request h2 {
    margin-bottom: 16px;
}

.pricing-request p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.pricing-request-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Demo form */
.demo {
    background: var(--bg-alt);
}

.demo-wrap {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.demo-wrap h2 {
    text-align: center;
    margin-bottom: 12px;
}

.demo-wrap > p {
    text-align: center;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.form-field input,
.form-field textarea {
    font-family: inherit;
    font-size: 16px;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0, 87, 194, 0.15);
}

.form-consent {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 16px;
    text-align: center;
}

.form-consent a {
    color: var(--text-muted);
    text-decoration: underline;
}

.form-consent a:hover {
    color: var(--brand);
}

.form-status {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #2bb673;
    min-height: 20px;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 64px 0 32px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-img {
    height: 36px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    max-width: 360px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.footer-col ul {
    display: grid;
    gap: 10px;
    font-size: 14px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal p {
    color: inherit;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    z-index: 100;
    transform: translateY(120%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.85);
    flex: 1;
    line-height: 1.5;
}

.cookie-banner .btn {
    padding: 10px 18px;
    font-size: 14px;
    flex-shrink: 0;
    background: var(--text-inverse);
    color: var(--bg-dark);
}

.cookie-banner .btn:hover {
    background: rgba(255, 255, 255, 0.85);
    color: var(--bg-dark);
}

/* Mobile nav toggle (simple) */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    position: relative;
    transition: all 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
}

.menu-toggle span::before {
    top: -7px;
}

.menu-toggle span::after {
    top: 7px;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

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

    .nav,
    .header-cta .btn-secondary {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 56px 0 64px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero .lead {
        font-size: 18px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solution-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .showcase-rows {
        gap: 64px;
    }

    .showcase-row,
    .showcase-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }


    .pain-grid,
    .features-grid,
    .metrics-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .solution-functions {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-name {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 12px !important;
    }

    .comparison-row.head {
        display: none;
    }

    .demo-wrap {
        padding: 32px 24px;
    }

    .metric-value {
        font-size: 36px;
    }

    .price-value {
        font-size: 36px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    .pricing-card,
    .demo-wrap {
        padding: 28px 20px;
    }

    .pain-card,
    .feature {
        padding: 22px;
    }
}
