:root {
    --ink: #172026;
    --muted: #5a6672;
    --soft: #eef4f6;
    --surface: #ffffff;
    --surface-strong: #f8fbfc;
    --line: #d8e2e6;
    --brand: #123c4a;
    --brand-2: #1c6b66;
    --accent: #22a06b;
    --amber: #f5b544;
    --danger: #c44949;
    --shadow: 0 22px 55px rgba(18, 60, 74, 0.16);
    --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: #fbfcfb;
    line-height: 1.5;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 252, 251, 0.94);
    border-bottom: 1px solid rgba(216, 226, 230, 0.88);
    backdrop-filter: blur(14px);
}
.topbar-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    min-width: 142px;
    text-decoration: none;
}
.brand img { width: 148px; height: auto; }
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #3d4a53;
    font-size: 14px;
    font-weight: 700;
}
.nav a { text-decoration: none; white-space: nowrap; }
.nav a:hover, .nav a:focus-visible { color: var(--brand-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 18px;
    background: #ffffff;
    color: var(--brand);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover, .btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(18, 60, 74, 0.14);
    border-color: rgba(28, 107, 102, 0.36);
}
.btn.primary { border-color: var(--brand); background: var(--brand); color: #ffffff; }
.btn.success { border-color: #22a06b; background: #22a06b; color: #ffffff; width: 44px; padding: 0; }
.btn.ghost { background: transparent; border-color: rgba(255, 255, 255, 0.42); color: #ffffff; }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--brand);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.menu-toggle svg { width: 22px; height: 22px; }
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(12, 25, 31, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}
.mobile-nav {
    position: fixed;
    top: 82px;
    right: 20px;
    z-index: 70;
    display: grid;
    gap: 6px;
    width: min(320px, calc(100% - 40px));
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.mobile-nav a {
    padding: 12px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
    color: var(--brand);
}
.mobile-nav a:hover, .mobile-nav a:focus-visible { background: var(--soft); }
.mobile-nav .mobile-nav-cta { background: var(--brand); color: #ffffff; text-align: center; }
body.menu-open .mobile-nav, body.menu-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #123c4a;
}
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38px;
    background: #fbfcfb;
    clip-path: polygon(0 62%, 100% 0, 100% 100%, 0 100%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 42px;
    align-items: center;
    min-height: calc(100svh - 72px);
    padding: 74px 0 102px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 800;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.hero h1 {
    margin: 22px 0 18px;
    max-width: 760px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.96;
    letter-spacing: 0;
}
.hero-lead {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
    margin-top: 34px;
}
.proof-pill {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
}
.proof-pill b { display: block; color: #ffffff; font-size: 15px; }
.proof-pill span { display: block; margin-top: 3px; color: rgba(255, 255, 255, 0.68); font-size: 13px; }
.hero-media { position: relative; min-height: 560px; }
.dashboard-frame {
    position: absolute;
    right: -95px;
    top: 26px;
    width: min(780px, 62vw);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 38px 80px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}
.dashboard-frame img { width: 100%; height: 100%; object-fit: cover; }
.phone-frame {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 214px;
    height: 410px;
    border: 8px solid #f7fbfb;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}
.phone-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.floating-panel {
    position: absolute;
    right: 24px;
    bottom: 34px;
    width: 276px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}
.floating-panel small { display: block; color: var(--muted); font-weight: 800; text-transform: uppercase; font-size: 11px; }
.floating-panel b { display: block; margin-top: 6px; font-size: 22px; line-height: 1.1; }
.mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
}
.mini-row strong { color: var(--accent); }

.section { padding: 86px 0; }
.section.compact { padding: 62px 0; }
.section.alt { background: var(--soft); }
.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 34px;
}
.kicker { margin: 0 0 10px; color: var(--brand-2); font-size: 13px; font-weight: 900; text-transform: uppercase; }
h2, h3, p { overflow-wrap: anywhere; }
h2 { margin: 0; color: var(--ink); font-size: clamp(32px, 5vw, 54px); line-height: 1.04; letter-spacing: 0; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }

.pain-solution { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 20px; }
.panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    background: var(--surface);
    box-shadow: 0 16px 40px rgba(18, 60, 74, 0.08);
}
.panel.dark { background: var(--brand); color: #ffffff; }
.panel h3 { margin: 0 0 16px; font-size: 24px; line-height: 1.15; }
.panel p { margin: 0; color: var(--muted); }
.panel.dark p { color: rgba(255, 255, 255, 0.78); }
.check-list, .risk-list { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li, .risk-list li { position: relative; padding-left: 30px; color: var(--muted); }
.panel.dark .check-list li { color: rgba(255, 255, 255, 0.82); }
.risk-list li::before, .check-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900;
}
.risk-list li::before { content: "!"; background: #fff2df; color: #9a5b00; }
.check-list li::before { content: "✓"; background: rgba(34, 160, 107, 0.14); color: #168457; }
.panel.dark .check-list li::before { background: rgba(255, 255, 255, 0.18); color: #ffffff; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 18px 42px rgba(18, 60, 74, 0.08);
}
.feature-shot { aspect-ratio: 16 / 9; background: #dfe9ed; overflow: hidden; }
.feature-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.feature-body { padding: 22px; }
.feature-body h3 { margin: 0 0 8px; color: var(--brand); font-size: 22px; line-height: 1.16; }
.feature-body p { margin: 0; color: var(--muted); }
.benefit {
    display: inline-flex;
    margin-top: 18px;
    padding: 6px 9px;
    border-radius: var(--radius);
    background: #e9f7f0;
    color: #14744f;
    font-size: 13px;
    font-weight: 900;
}

.band { background: var(--brand); color: #ffffff; }
.band h2 { color: #ffffff; }
.band .section-head p { color: rgba(255, 255, 255, 0.76); }
.band .kicker { color: #f5d27a; }
.workflow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; counter-reset: steps; }
.step {
    position: relative;
    min-height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}
.step::before {
    counter-increment: steps;
    content: "0" counter(steps);
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--amber);
    color: #2e2102;
    font-weight: 900;
}
.step h3 { margin: 0 0 8px; font-size: 22px; line-height: 1.16; }
.step p { margin: 0; color: rgba(255, 255, 255, 0.75); }

.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.trust-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--surface); }
.trust-item svg { width: 28px; height: 28px; color: var(--brand-2); margin-bottom: 18px; }
.trust-item b { display: block; color: var(--brand); font-size: 18px; line-height: 1.2; }
.trust-item span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; }

.pricing-wrap { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.52fr); gap: 20px; align-items: stretch; }
.pricing-copy { border-radius: var(--radius); padding: 34px; background: var(--brand); color: #ffffff; }
.pricing-copy h2 { color: #ffffff; }
.pricing-copy .kicker { color: #f5d27a; }
.pricing-copy p:not(.kicker) { max-width: 680px; color: rgba(255, 255, 255, 0.76); font-size: 18px; }
.price-card { border: 1px solid rgba(18, 60, 74, 0.18); border-radius: var(--radius); padding: 28px; background: #ffffff; box-shadow: var(--shadow); }
.price-card .tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: #fff3cf; color: #775000; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.price-card h3 { margin: 18px 0 6px; color: var(--brand); font-size: 24px; }
.price { margin: 0; color: var(--ink); font-size: 34px; font-weight: 900; line-height: 1.05; }
.price span { color: var(--muted); font-size: 15px; font-weight: 700; }
.price-note { margin: 8px 0 22px; color: var(--muted); font-size: 14px; }
.price-card ul { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; color: var(--muted); font-size: 15px; }
.price-card li { position: relative; padding-left: 25px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 900; }
.price-card .btn { width: 100%; }

.comparison { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #ffffff; }
.comparison-row { display: grid; grid-template-columns: minmax(170px, 1fr) repeat(3, minmax(130px, 0.72fr)); border-bottom: 1px solid var(--line); }
.comparison-row:last-child { border-bottom: 0; }
.comparison-cell { padding: 16px; border-right: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.comparison-cell:last-child { border-right: 0; }
.comparison-head .comparison-cell { background: var(--brand); color: #ffffff; font-weight: 900; }
.comparison-cell strong { color: var(--brand); }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.faq-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #ffffff; }
.faq-card h3 { margin: 0 0 8px; color: var(--brand); font-size: 19px; line-height: 1.2; }
.faq-card p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: minmax(0, 0.74fr) minmax(330px, 0.56fr); gap: 30px; align-items: start; }
.contact-copy h2 { font-size: clamp(30px, 4vw, 46px); }
.contact-copy p:not(.kicker) { margin: 14px 0 0; color: var(--muted); font-size: 18px; }
.contact-points { display: grid; gap: 12px; margin-top: 24px; }
.contact-point { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.contact-point svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--accent); margin-top: 2px; }
.contact-form-wrap { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--surface-strong); box-shadow: var(--shadow); }
.row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: grid; gap: 7px; }
label { color: #33414b; font-size: 13px; font-weight: 900; }
.input { width: 100%; min-height: 44px; border: 1px solid #cbd8dd; border-radius: var(--radius); padding: 10px 12px; background: #ffffff; color: var(--ink); outline: none; }
.input:focus { border-color: var(--brand-2); box-shadow: 0 0 0 3px rgba(28, 107, 102, 0.14); }
textarea.input { min-height: 128px; resize: vertical; }
.consent-line { display: flex; align-items: flex-start; gap: 9px; margin-top: 14px; color: var(--muted); font-size: 13px; font-weight: 600; }
.consent-line input { margin-top: 3px; }
.consent-line a { color: var(--brand-2); font-weight: 900; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 16px; }
.form-actions .btn.primary { flex: 1 1 190px; }
.hint { color: var(--muted); font-size: 13px; }
.alert { display: none; margin-top: 14px; border-radius: var(--radius); padding: 12px; font-size: 14px; font-weight: 800; }
.alert.ok { border: 1px solid rgba(34, 160, 107, 0.28); background: #e9f7f0; color: #14744f; }
.alert.err { border: 1px solid rgba(196, 73, 73, 0.24); background: #fff0ef; color: var(--danger); }

.footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 28px 0 96px; color: var(--muted); font-size: 14px; }
.footer a { color: var(--brand); font-weight: 800; text-decoration: none; }
.mobile-trial-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, 0.95); border-top: 1px solid var(--line); backdrop-filter: blur(12px); }
.mobile-trial-cta .btn { width: 100%; }
.floating-wa { position: fixed; right: 20px; bottom: 20px; z-index: 44; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #22a06b; color: #ffffff; box-shadow: 0 16px 36px rgba(34, 160, 107, 0.34); }
.floating-wa svg { width: 24px; height: 24px; }

@media (max-width: 1080px) {
    .nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; min-height: auto; padding: 62px 0 82px; }
    .hero-media { min-height: 480px; }
    .dashboard-frame { right: -40px; width: min(860px, 92vw); }
    .phone-frame { left: 20px; }
    .feature-grid, .workflow, .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing-wrap, .contact-grid, .pain-solution { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, 1180px); }
    .topbar-inner { min-height: 64px; }
    .brand img { width: 126px; }
    .nav-actions .btn { display: none; }
    .mobile-nav { top: 74px; right: 14px; width: calc(100% - 28px); }
    .hero-grid { padding: 42px 0 68px; }
    .hero h1 { font-size: clamp(38px, 14vw, 58px); }
    .hero-lead { font-size: 18px; }
    .hero-actions .btn { width: 100%; }
    .hero-proof { grid-template-columns: 1fr; }
    .hero-media { min-height: 410px; }
    .dashboard-frame { top: 0; right: -190px; width: 680px; max-width: none; }
    .phone-frame { left: 0; bottom: 18px; width: 174px; height: 330px; border-width: 7px; border-radius: 24px; }
    .floating-panel { right: 0; bottom: 0; width: min(250px, 72vw); }
    .section { padding: 64px 0; }
    .section-head, .feature-grid, .workflow, .trust-grid, .faq-grid, .row { grid-template-columns: 1fr; }
    .panel, .pricing-copy, .price-card, .contact-form-wrap { padding: 22px; }
    .comparison { overflow-x: auto; }
    .comparison-row { min-width: 680px; }
    .footer { flex-direction: column; align-items: flex-start; padding-bottom: 92px; }
    .mobile-trial-cta { display: block; }
    .floating-wa { right: 18px; bottom: 78px; width: 48px; height: 48px; }
}

@media (max-width: 430px) {
    .hero-media { min-height: 380px; }
    .dashboard-frame { right: -260px; width: 690px; }
    .phone-frame { width: 150px; height: 292px; }
    .floating-panel { width: 218px; padding: 13px; }
    .floating-panel b { font-size: 19px; }
}

.pricing-details {
    margin-top: 22px;
}
.pricing-caption {
    display: grid;
    grid-template-columns: minmax(0, 0.6fr) minmax(280px, 0.5fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 18px;
}
.pricing-caption h3 {
    margin: 0;
    color: var(--brand);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.08;
}
.pricing-caption p:not(.kicker) {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}
.featured-plan .plan-inherits,
.plan-inherits {
    margin: 16px 0 0;
    color: var(--brand-2);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.featured-quick {
    margin-top: 18px;
}
.plan-ladder {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.plan-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(18, 60, 74, 0.08);
}
.plan-card.elevated {
    border-color: rgba(28, 107, 102, 0.26);
}
.plan-card .tag {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9f7f0;
    color: #14744f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.plan-card h3 {
    margin: 18px 0 6px;
    color: var(--brand);
    font-size: 23px;
    line-height: 1.15;
}
.plan-price {
    color: var(--ink);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.05;
}
.plan-price small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}
.plan-year {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}
.plan-fit {
    min-height: 48px;
    margin: 16px 0 0;
    color: var(--muted);
}
.plan-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.plan-quick span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 9px;
    background: var(--surface-strong);
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
}
.plan-capacity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}
.plan-capacity-grid span {
    min-height: 40px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(28, 107, 102, 0.18);
    border-radius: var(--radius);
    padding: 8px 10px;
    background: #f4faf8;
    color: #235c55;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
}
.plan-card ul {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 15px;
}
.plan-card li {
    position: relative;
    padding-left: 24px;
}
.plan-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 900;
}
.plan-mods {
    margin-top: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--surface-strong);
    color: var(--muted);
    font-size: 13px;
}
.plan-mods.compact {
    margin: 18px 0 20px;
}
.plan-mods b {
    display: block;
    margin-bottom: 5px;
    color: var(--brand);
}
.plan-card .btn {
    width: 100%;
    margin-top: 16px;
}

@media (max-width: 1080px) {
    .plan-ladder {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .pricing-caption,
    .plan-ladder {
        grid-template-columns: 1fr;
    }
    .pricing-details {
        margin-top: 18px;
    }
    .plan-card {
        padding: 22px;
    }
    .plan-fit {
        min-height: 0;
    }
    .plan-capacity-grid {
        grid-template-columns: 1fr;
    }
}
