:root {
    --bg: #eef4fb;
    --text: #0f172a;
    --muted: #5f6f85;
    --line: #dde7f3;
    --primary: #2f63e0;
    --primary-dark: #244fba;

    --success: #15803d;
    --success-bg: #ecfdf3;

    --warning: #b56a12;
    --warning-bg: #fff6e9;
    --warning-line: #f0dcc0;

    --shadow-lg: 0 18px 42px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.06);

    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(47, 99, 224, 0.08), transparent 28%),
        linear-gradient(180deg, #eef4fb 0%, #ecf2f8 100%);
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 16px 28px;
}

/* =========================
   TOPBAR
========================= */
.topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    margin-bottom: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding-right: 10px;
}

.logo-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #1f3f96);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    flex: 0 0 54px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.brand-title {
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    color: #27439c;
    letter-spacing: -0.7px;
    overflow-wrap: anywhere;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.4;
    white-space: nowrap;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
}

.top-nav a {
    text-decoration: none;
    color: #41556f;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.top-nav a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 9px 12px;
    border-radius: 10px;
    background: #eef3fb;
    border: 1px solid var(--line);
}

.nav-language {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    color: #41556f;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}


@media (max-width: 1180px) {
    .brand-title {
        font-size: 28px;
    }

    .brand-subtitle {
        font-size: 14px;
    }

    .top-nav {
        gap: 10px;
    }

    .top-nav a,
    .nav-language {
        font-size: 15px;
    }
}

@media (max-width: 980px) {
    .topbar {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .top-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .brand-subtitle {
        white-space: normal;
    }
}

/* =========================
   HERO
========================= */
.hero {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 24px;
    align-items: stretch;
    background: linear-gradient(135deg, #0d2447 0%, #123462 58%, #1b4d8e 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 30px 30px 26px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0%, transparent 64%, rgba(255,255,255,0.04) 64%, rgba(255,255,255,0.04) 100%);
    pointer-events: none;
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: start;
    padding-top: 2px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(72, 182, 255, 0.12);
    border: 1px solid rgba(72, 182, 255, 0.20);
    color: #8ad9ff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
    max-width: 100%;
}

.hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -1px;
    max-width: 720px;
    overflow-wrap: anywhere;
}

.hero-text {
    max-width: 720px;
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: #d7e4fb;
    overflow-wrap: anywhere;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 0;
}

.hero-meta {
    margin: 12px 0 0;
    color: #bfd0ea;
    font-size: 13px;
    line-height: 1.55;
    max-width: 760px;
    overflow-wrap: anywhere;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    max-width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.18s ease;
    gap: 10px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8a21, #ff7a1a);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 122, 26, 0.26);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-enterprise {
    background: linear-gradient(135deg, var(--primary), #3d6cf0);
    color: #fff;
    box-shadow: 0 8px 20px rgba(47, 99, 224, 0.25);
}

.btn-enterprise:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.btn-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.btn-icon-svg svg {
    width: 19px;
    height: 19px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

/* =========================
   MOCK WINDOW
========================= */
.app-window {
    width: 100%;
    max-width: 600px;
    background: #f8fbff;
    border-radius: 18px;
    border: 1px solid rgba(198, 215, 236, 0.95);
    box-shadow: 0 18px 44px rgba(6, 22, 46, 0.28);
    padding: 14px;
    overflow: hidden;
}

.app-mock-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
    min-width: 0;
}

.app-mock-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.app-mock-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #2f66ef);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex: 0 0 36px;
}

.app-mock-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.app-mock-brand-copy strong {
    font-size: 14px;
    color: #1f3770;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.app-mock-brand-copy span {
    font-size: 11px;
    color: #6b7d94;
    overflow-wrap: anywhere;
}

.app-mock-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--warning-bg);
    border: 1px solid var(--warning-line);
    color: var(--warning);
    font-size: 12px;
    font-weight: 800;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    max-width: 180px;
    flex: 0 1 auto;
    overflow-wrap: anywhere;
}

/* =========================
   SUMMARY
========================= */
.app-mock-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.summary-item {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 11px 12px;
    border-radius: 12px;
    min-width: 0;
}

.summary-label {
    display: block;
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.35px;
    margin-bottom: 6px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.summary-item strong {
    display: block;
    font-size: 13px;
    color: #12213f;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

/* =========================
   ACTIONS
========================= */
.app-mock-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    min-width: 0;
}

.mock-btn {
    padding: 8px 11px;
    border-radius: 10px;
    font-size: 12px;
    border: none;
    cursor: default;
    font-weight: 700;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
    max-width: 100%;
}

.mock-btn-primary {
    background: var(--primary);
    color: white;
}

.mock-btn-muted {
    background: #eef3f8;
    color: #66788f;
}

.mock-btn-dark {
    background: #1f2937;
    color: white;
}

/* =========================
   PANEL
========================= */
.app-mock-panel {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px;
    background: #ffffff;
    min-width: 0;
}

.app-mock-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    min-width: 0;
}

.app-mock-panel-head h4 {
    margin: 0;
    font-size: 14px;
    color: #13233e;
    min-width: 0;
    overflow-wrap: anywhere;
}

.panel-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    max-width: 180px;
    flex: 0 1 auto;
    overflow-wrap: anywhere;
}

.panel-tag-edge {
    background: #edf4ff;
    color: #2456d3;
    border: 1px solid #d6e4ff;
}

.result-grid {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.result-row {
    display: grid;
    grid-template-columns: minmax(120px, 155px) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-width: 0;
}

.result-row span {
    font-size: 12px;
    font-weight: 700;
    color: #13233e;
    overflow-wrap: anywhere;
}

.result-row strong {
    font-size: 12px;
    font-weight: 600;
    color: #42546d;
    line-height: 1.45;
    overflow-wrap: anywhere;
    min-width: 0;
}

.path-text {
    color: #64788f !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* =========================
   STATUS COLORS
========================= */
.ok-text {
    color: var(--success) !important;
    font-weight: 700;
}

.warn-text {
    color: var(--warning) !important;
    font-weight: 700;
}

/* =========================
   MINI BROWSERS
========================= */
.app-mock-minirow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.mini-browser-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px;
    min-width: 0;
}

.mini-browser-name {
    display: block;
    color: #13233e;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 6px;
    overflow-wrap: anywhere;
}

.mini-browser-card strong {
    font-size: 13px;
    overflow-wrap: anywhere;
}

/* =========================
   PROBLEM SECTION
========================= */
.problem-section {
    margin-top: 18px;
}

.problem-intro-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px 24px 22px;
    box-shadow: var(--shadow-md);
    min-width: 0;
}

.problem-intro-card h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: #12213f;
    overflow-wrap: anywhere;
}

.problem-intro-card p {
    margin: 0;
    color: #5a6c83;
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.problem-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-md);
    min-width: 0;
}

.problem-card-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #6a7b92;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow-wrap: anywhere;
}

.problem-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: #12213f;
    letter-spacing: -0.3px;
    overflow-wrap: anywhere;
}

.problem-card p {
    margin: 0;
    color: #5a6c83;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

/* =========================
   FEATURES
========================= */
.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    min-width: 0;
}

.feature-card-primary {
    border-color: rgba(47, 99, 224, 0.22);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #edf3fe;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.35px;
    overflow-wrap: anywhere;
}

.feature-card p {
    margin: 0;
    color: #42546d;
    line-height: 1.65;
    font-size: 14px;
    overflow-wrap: anywhere;
}

/* =========================
   SECTION INTRO
========================= */
.section-intro {
    margin-top: 24px;
}

.section-intro-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px 24px 22px;
    box-shadow: var(--shadow-md);
    min-width: 0;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.45px;
    overflow-wrap: anywhere;
}

.section-intro h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: #12213f;
    max-width: none;
    overflow-wrap: anywhere;
}

.section-intro p {
    margin: 0;
    color: #5a6c83;
    font-size: 15px;
    line-height: 1.65;
    max-width: none;
    overflow-wrap: anywhere;
}

/* =========================
   EDITIONS
========================= */
.editions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.edition-card {
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-md);
    min-height: 292px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.edition-top {
    margin-bottom: 10px;
    min-width: 0;
}

.edition-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
    max-width: 100%;
}

.edition-card h3 {
    margin: 0;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    overflow-wrap: anywhere;
}

.edition-description {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.58;
    overflow-wrap: anywhere;
}

.edition-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    min-width: 0;
}

.edition-price-value {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    color: #12213f;
}

.edition-price-period {
    color: #6a7b92;
    font-size: 15px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.edition-purchase-copy {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.58;
    color: #4e627c;
    overflow-wrap: anywhere;
}

.edition-purchase-copy-enterprise {
    margin-top: auto;
}

.edition-btn {
    width: 100%;
    margin-top: auto;
}

.purchase-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.purchase-info {
    flex: 1;
    min-width: 260px;
    margin-bottom: 0;
}

.purchase-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #10233d;
    margin-bottom: 10px;
}

.purchase-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purchase-info li {
    color: #566372;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.purchase-btn {
    white-space: nowrap;
}

.edition-card-standalone {
    background: linear-gradient(135deg, rgba(36, 86, 211, 0.08) 0%, rgba(255,255,255,0.96) 48%, rgba(237,244,255,0.92) 100%);
    border: 1px solid #d7e3f2;
}

.edition-card-standalone .edition-badge {
    background: rgba(36, 86, 211, 0.10);
    color: var(--primary);
}

.edition-card-standalone h3 {
    color: #12213f;
}

.edition-card-standalone .edition-description {
    color: #48607d;
}

.edition-card-enterprise {
    background: linear-gradient(135deg, #dfd9ff 0%, #ebe6ff 48%, #f4f1ff 100%);
    border: 1px solid #cec3ff;
}

.edition-card-enterprise .edition-badge {
    background: rgba(120, 100, 200, 0.16);
    color: #4d43c8;
}

.edition-card-enterprise h3 {
    color: #24234a;
}

.edition-card-enterprise .edition-description {
    color: #52567a;
}

/* =========================
   COMPARISON
========================= */
.comparison-section {
    margin-top: 18px;
}

.comparison-intro-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px 24px 22px;
    box-shadow: var(--shadow-md);
    min-width: 0;
}

.comparison-intro-card h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: #12213f;
    overflow-wrap: anywhere;
}

.comparison-intro-card p {
    margin: 0;
    color: #5a6c83;
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.comparison-card {
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-md);
    min-width: 0;
}

.comparison-card-left {
    background: linear-gradient(135deg, #fff4f2 0%, #fff9f8 100%);
    border: 1px solid #f3d9d3;
}

.comparison-card-right {
    background: linear-gradient(135deg, rgba(36, 86, 211, 0.08) 0%, rgba(255,255,255,0.96) 48%, rgba(237,244,255,0.92) 100%);
    border: 1px solid #d7e3f2;
}

.comparison-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
    max-width: 100%;
}

.comparison-card-left .comparison-label {
    background: rgba(201, 86, 53, 0.10);
    color: #b14a2b;
}

.comparison-card-right .comparison-label {
    background: rgba(36, 86, 211, 0.10);
    color: var(--primary);
}

.comparison-list {
    margin: 0;
    padding-left: 18px;
}

.comparison-list li {
    margin: 0 0 10px;
    color: #42546d;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

/* =========================
   PRODUCT STRIP
========================= */
.product-strip {
    margin-top: 18px;
}

.product-strip-card {
    background: linear-gradient(135deg, #162746 0%, #20345f 100%);
    color: #ffffff;
    border-radius: 22px;
    padding: 28px 26px;
    box-shadow: var(--shadow-lg);
    min-width: 0;
}

.product-strip-copy {
    min-width: 0;
}

.mini-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #9fd6ff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow-wrap: anywhere;
}

.product-strip-card h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.8px;
    max-width: none;
    overflow-wrap: anywhere;
}

.product-strip-card p {
    margin: 0;
    color: #d7e3f9;
    font-size: 15px;
    line-height: 1.65;
    max-width: none;
    overflow-wrap: anywhere;
}

/* =========================
   FOOTER
========================= */
.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.legal-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.footer {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    padding: 16px 0 8px;
    overflow-wrap: anywhere;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 28px 24px 24px;
    }

    .hero h1,
    .hero-text,
    .hero-meta {
        max-width: none;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .app-window {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .problem-grid,
    .features,
    .editions,
    .comparison-grid,
    .app-mock-summary,
    .app-mock-minirow {
        grid-template-columns: 1fr;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .problem-intro-card h2,
    .comparison-intro-card h2,
    .product-strip-card h2,
    .section-intro h2 {
        font-size: 26px;
    }

    .app-mock-topbar,
    .app-mock-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .app-mock-pill,
    .panel-tag {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .page {
        padding: 14px 12px 22px;
    }

    .topbar {
        gap: 14px;
    }

    .brand-title {
        font-size: 26px;
    }

    .brand-subtitle {
        font-size: 12px;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 18px;
    }

    .hero {
        padding: 22px 18px 20px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.1;
    }

    .hero-text {
        font-size: 14px;
    }

    .btn {
        width: 100%;
    }

    .problem-intro-card,
    .problem-card,
    .feature-card,
    .edition-card,
    .comparison-intro-card,
    .comparison-card,
    .product-strip-card,
    .section-intro-card {
        padding: 18px;
    }

    .problem-intro-card h2,
    .comparison-intro-card h2,
    .product-strip-card h2,
    .section-intro h2 {
        font-size: 22px;
    }

    .edition-card h3 {
        font-size: 22px;
    }

    .app-window {
        padding: 12px;
    }

    .result-row {
        grid-template-columns: 1fr;
    }

    .mock-btn {
        flex: 1 1 100%;
    }

    .edition-price-value {
        font-size: 34px;
    }

    .purchase-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .purchase-info {
        flex: 1;
        min-width: 260px;
    }

    .purchase-title {
        font-weight: 700;
        font-size: 1.2rem;
        color: #10233d;
        margin-bottom: 10px;
    }

    .purchase-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .purchase-info li {
        color: #566372;
        margin-bottom: 6px;
        font-size: 0.95rem;
    }

    .purchase-btn {
        white-space: nowrap;
    }
}


/* === STEP 2 ENTERPRISE TEXT BALANCE (MATCH STANDALONE - NO MENU TOUCH) === */

.edition-card-enterprise .edition-description,
.edition-card-enterprise .edition-purchase-copy {
    max-width: 60ch;
}

