:root {
    --ink: #24211e;
    --ink-strong: #161513;
    --ink-soft: #5f5952;
    --canvas: #f8f7f4;
    --paper: #ffffff;
    --paper-warm: #f0eeea;
    --line: #e6e1da;
    --line-strong: #d5cec5;
    --lime: #d9ef78;
    --lime-pale: #f0f7cd;
    --lime-deep: #aabd44;
    --green: #477455;
    --blue: #5b7cff;
    --coral: #d85f4b;
    --sidebar: #171614;
    --sidebar-card: #24211e;
    --sidebar-line: #39352f;
    --sidebar-text: #f5f1ea;
    --sidebar-muted: #b9b2aa;
    --display: "DM Serif Display", Georgia, "Times New Roman", serif;
    --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --page: min(1160px, calc(100% - 48px));
    --shadow-sm: 0 2px 4px rgba(36, 33, 30, .03), 0 10px 25px rgba(36, 33, 30, .045);
    --shadow-lg: 0 24px 70px rgba(20, 18, 16, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--canvas); }

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--canvas);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input,
select { font: inherit; }

button { cursor: pointer; }

button:disabled { cursor: not-allowed; }

a { color: inherit; }

.skip-link {
    position: fixed;
    z-index: 99;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 9px;
    background: var(--lime);
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform .18s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--lime-deep) 55%, transparent);
    outline-offset: 3px;
}

.section-shell { width: var(--page); margin-right: auto; margin-left: auto; }

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 72px;
    padding: 12px max(24px, calc((100vw - 1160px) / 2));
    border-bottom: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
    background: color-mix(in srgb, var(--canvas) 89%, transparent);
    backdrop-filter: blur(18px) saturate(1.1);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border-radius: 14px 14px 14px 5px;
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 7px 18px rgba(178, 202, 65, .22);
}

.brand-mark svg { width: 24px; height: 24px; }

.brand-copy { display: grid; gap: 0; line-height: 1.1; }
.brand-copy strong { font-size: 15px; font-weight: 800; letter-spacing: -.035em; }
.brand-copy small { color: var(--ink-soft); font-size: 10px; font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 29px; margin-left: auto; margin-right: 34px; }
.main-nav a { color: var(--ink-soft); font-size: 14px; font-weight: 650; text-decoration: none; transition: color .16s ease; }
.main-nav a:hover { color: var(--ink); }

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .17s ease, background-color .17s ease, border-color .17s ease, box-shadow .17s ease;
}

.header-cta { background: var(--ink); color: #fff; }
.header-cta:hover { background: var(--ink-strong); color: #fff; transform: translateY(-1px); box-shadow: 0 7px 14px rgba(36, 33, 30, .12); }
.button:hover { transform: translateY(-1px); }
.button-lime { background: var(--lime); color: var(--ink); box-shadow: 0 10px 20px rgba(178, 202, 65, .21); }
.button-lime:hover { background: #e5f69b; color: var(--ink); box-shadow: 0 14px 24px rgba(178, 202, 65, .28); }
.button-dark { border-color: var(--ink); background: var(--ink); color: #fff; }
.button-dark:hover { border-color: var(--ink-strong); background: var(--ink-strong); }
.button-outline { border-color: var(--line-strong); background: var(--paper); color: var(--ink); }
.button-outline:hover { background: var(--paper-warm); }
.button-danger { border-color: #f3c8c0; background: #fff3f0; color: #af402f; }
.button-danger:hover { background: #fee8e3; }
.button-full { width: 100%; }

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(370px, .8fr);
    align-items: center;
    gap: clamp(42px, 7vw, 98px);
    min-height: 630px;
    padding: 78px 0 84px;
}

.eyebrow,
.mini-label {
    margin: 0;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .105em;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 8px; }
.eyebrow-dark { color: var(--green); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-deep); box-shadow: 0 0 0 4px var(--lime-pale); }

.hero h1,
.section-heading h2,
.configurator-intro h2,
.closing-cta h2,
.owner-panel h2 {
    margin: 14px 0 0;
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: .98;
}

.hero h1 { max-width: 690px; font-size: clamp(3.25rem, 5.4vw, 5.55rem); }
.hero h1 em { color: var(--green); font-style: italic; }

.hero-description { max-width: 600px; margin: 25px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 32px; }
.text-link { color: var(--ink); font-size: 14px; font-weight: 750; text-decoration: none; }
.text-link:hover { color: var(--green); }

.hero-benefits { display: flex; flex-wrap: wrap; gap: 17px 25px; margin: 31px 0 0; padding: 0; color: var(--ink-soft); font-size: 13px; list-style: none; }
.hero-benefits li { display: inline-flex; align-items: center; gap: 8px; }
.hero-benefits span { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 11px; font-weight: 800; }

.hero-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--sidebar-line);
    border-radius: 26px;
    background: var(--sidebar-card);
    color: var(--sidebar-text);
    box-shadow: var(--shadow-lg);
}

.hero-card::before {
    position: absolute;
    width: 270px;
    height: 270px;
    top: -180px;
    right: -70px;
    border-radius: 50%;
    background: rgba(217, 239, 120, .13);
    content: "";
}

.card-topline,
.summary-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.hero-card .mini-label { color: var(--sidebar-muted); }
.live-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: var(--sidebar-text); font-size: 10px; font-weight: 700; }
.live-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.hero-plan-name { position: relative; margin-top: 34px; color: var(--sidebar-muted); font-size: 14px; font-weight: 650; }
.hero-price { position: relative; display: flex; align-items: baseline; gap: 6px; margin-top: 7px; }
.hero-price strong { color: var(--lime); font-family: var(--display); font-size: 48px; font-weight: 400; letter-spacing: -.055em; line-height: 1; }
.hero-price span { color: var(--sidebar-muted); font-size: 13px; }
.hero-card > p { position: relative; max-width: 370px; margin: 17px 0 24px; color: var(--sidebar-muted); font-size: 13px; line-height: 1.6; }

.signal-list { position: relative; display: grid; gap: 14px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); }
.signal-list > div { display: flex; align-items: center; gap: 11px; }
.signal-list small { display: block; color: var(--sidebar-muted); font-size: 10px; font-weight: 600; }
.signal-list b { display: block; color: var(--sidebar-text); font-size: 12px; font-weight: 700; }
.signal-icon { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border-radius: 9px; font-size: 15px; font-weight: 800; }
.signal-green { background: rgba(143,198,156,.14); color: #8fc69c; }
.signal-blue { background: rgba(158,173,255,.15); color: #aab7ff; }
.signal-lime { background: rgba(217,239,120,.15); color: var(--lime); }
.card-link { position: relative; display: flex; justify-content: space-between; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: var(--lime); font-size: 13px; font-weight: 760; text-decoration: none; }
.card-link:hover { color: #ecf7b4; }

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    border-top: 1px solid var(--sidebar-line);
    border-bottom: 1px solid var(--sidebar-line);
    background: var(--sidebar);
    color: var(--sidebar-text);
}

.trust-strip > div {
    min-height: 94px;
    padding: 22px max(18px, calc((100vw - 1160px) / 8));
    border-right: 1px solid var(--sidebar-line);
}

.trust-strip > div:last-child { border-right: 0; }
.trust-strip b { display: block; color: var(--lime); font-size: 13px; font-weight: 760; }
.trust-strip span { display: block; margin-top: 4px; color: var(--sidebar-muted); font-size: 12px; }

.features,
.pricing,
.how-it-works,
.faq { padding-top: 112px; padding-bottom: 112px; }

.section-heading h2 { max-width: 670px; font-size: clamp(2.6rem, 4.1vw, 4.3rem); }
.section-heading > p,
.split-heading > p { max-width: 430px; margin: 10px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.67; }
.split-heading { display: grid; grid-template-columns: 1.1fr .72fr; align-items: end; gap: 34px; }
.centered-heading { max-width: 700px; margin: 0 auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading > p { margin-right: auto; margin-left: auto; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; margin-top: 48px; }
.feature-card { position: relative; min-height: 218px; padding: 23px; border: 1px solid var(--line); border-radius: 19px; background: var(--paper); box-shadow: var(--shadow-sm); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.feature-card:hover { border-color: var(--line-strong); box-shadow: 0 15px 30px rgba(36,33,30,.075); transform: translateY(-3px); }
.feature-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: var(--paper-warm); color: var(--ink); }
.feature-icon svg { width: 19px; height: 19px; }
.feature-card h3 { margin: 27px 0 0; color: var(--ink); font-size: 16px; letter-spacing: -.025em; }
.feature-card p { margin: 8px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.62; }
.feature-index { position: absolute; right: 20px; bottom: 18px; color: var(--line-strong); font-family: var(--display); font-size: 30px; line-height: 1; }

.pricing { background: #f1eee9; }
.billing-switch { display: flex; width: max-content; margin: 34px auto 0; padding: 4px; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); box-shadow: var(--shadow-sm); }
.billing-option { min-height: 36px; padding: 0 13px; border: 0; border-radius: 9px; background: transparent; color: var(--ink-soft); font-size: 12px; font-weight: 730; }
.billing-option span { margin-left: 3px; color: inherit; font-size: 10px; font-weight: 650; }
.billing-option.active { background: var(--ink); color: #fff; }

.plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; margin-top: 38px; }
.plan-card { position: relative; display: flex; min-height: 288px; flex-direction: column; align-items: flex-start; padding: 23px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); color: var(--ink); text-align: left; box-shadow: var(--shadow-sm); }
.plan-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.plan-card.selected { border-color: var(--ink); box-shadow: 0 0 0 2px var(--ink), var(--shadow-sm); }
.plan-card.featured { border-color: var(--lime-deep); background: #fbfdf1; }
.plan-card.featured::before { position: absolute; top: 16px; right: 16px; padding: 5px 8px; border-radius: 999px; background: var(--lime); color: var(--ink); content: "Mais escolhido"; font-size: 10px; font-weight: 800; }
.plan-card.custom { background: var(--sidebar-card); color: var(--sidebar-text); border-color: var(--sidebar-card); }
.plan-card .plan-kicker { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .085em; text-transform: uppercase; }
.plan-card.custom .plan-kicker { color: var(--lime); }
.plan-card h3 { max-width: 205px; margin: 10px 0 0; font-size: 17px; letter-spacing: -.03em; line-height: 1.2; }
.plan-card p { min-height: 43px; margin: 10px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.plan-card.custom p { color: var(--sidebar-muted); }
.plan-price { margin-top: auto; padding-top: 22px; }
.plan-price strong { display: block; font-family: var(--display); font-size: 34px; font-weight: 400; letter-spacing: -.055em; line-height: 1; }
.plan-card.custom .plan-price strong { color: var(--lime); }
.plan-price small { display: block; margin-top: 6px; color: var(--ink-soft); font-size: 11px; }
.plan-card.custom .plan-price small { color: var(--sidebar-muted); }
.plan-card .plan-select { width: 100%; min-height: 38px; margin-top: 18px; border: 1px solid var(--line-strong); border-radius: 10px; background: transparent; color: var(--ink); font-size: 12px; font-weight: 750; }
.plan-card.custom .plan-select { border-color: rgba(255,255,255,.18); color: var(--sidebar-text); }
.plan-card.selected .plan-select { border-color: var(--ink); background: var(--ink); color: #fff; }

.configurator-wrap { background: var(--sidebar); color: var(--sidebar-text); }
.configurator { padding-top: 102px; padding-bottom: 110px; }
.configurator-intro { display: grid; grid-template-columns: 1fr .55fr; gap: 44px; align-items: end; }
.configurator .eyebrow { color: var(--lime); }
.configurator-intro h2 { max-width: 650px; font-size: clamp(2.7rem, 4vw, 4.2rem); }
.configurator-intro > p { margin: 0 0 7px; color: var(--sidebar-muted); font-size: 16px; line-height: 1.66; }
.configurator-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .55fr); gap: 22px; margin-top: 47px; }
.builder-column { display: grid; gap: 15px; }
.builder-card { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 5px 16px; padding: 24px; border: 1px solid var(--sidebar-line); border-radius: 19px; background: var(--sidebar-card); }
.step-number { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 10px; background: rgba(217,239,120,.14); color: var(--lime); font-size: 11px; font-weight: 800; }
.builder-card-copy { min-width: 0; }
.builder-card .mini-label { color: var(--sidebar-muted); }
.builder-card h3 { margin: 5px 0 0; color: var(--sidebar-text); font-size: 18px; letter-spacing: -.032em; line-height: 1.25; }
.select-label { grid-column: 2; margin-top: 13px; color: var(--sidebar-muted); font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.select-control { grid-column: 2; width: 100%; min-height: 47px; padding: 0 40px 0 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; appearance: none; background-color: rgba(0,0,0,.14); background-image: linear-gradient(45deg, transparent 50%, var(--lime) 50%), linear-gradient(135deg, var(--lime) 50%, transparent 50%); background-position: calc(100% - 19px) 20px, calc(100% - 14px) 20px; background-repeat: no-repeat; background-size: 5px 5px; color: var(--sidebar-text); font-size: 14px; }
.select-control:focus { border-color: var(--lime); outline: 3px solid rgba(217,239,120,.16); }
.select-control option { background: var(--sidebar-card); color: var(--sidebar-text); }
.field-help { grid-column: 2; margin: 7px 0 0; color: var(--sidebar-muted); font-size: 12px; line-height: 1.5; }

.module-grid { display: grid; grid-column: 2; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 13px; }
.module-option { position: relative; display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 9px; min-height: 82px; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.025); cursor: pointer; transition: border-color .16s ease, background .16s ease; }
.module-option:hover { border-color: rgba(217,239,120,.44); }
.module-option.selected { border-color: var(--lime); background: rgba(217,239,120,.08); }
.module-option input { position: absolute; opacity: 0; pointer-events: none; }
.module-checkbox { display: grid; width: 21px; height: 21px; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 7px; color: transparent; font-size: 12px; font-weight: 900; }
.module-option.selected .module-checkbox { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.module-option b { display: block; color: var(--sidebar-text); font-size: 12px; line-height: 1.25; }
.module-option small { display: block; margin-top: 3px; color: var(--sidebar-muted); font-size: 10px; line-height: 1.35; }
.module-price { grid-column: 2; color: var(--lime); font-size: 10px; font-weight: 700; }

.developer-card { align-items: center; }
.developer-card .field-help { margin-top: 4px; }
.dev-picker { display: flex; grid-column: 2; align-items: center; justify-content: space-between; gap: 18px; margin-top: 12px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(0,0,0,.12); }
.dev-meta { display: grid; gap: 2px; }
.dev-meta b { color: var(--sidebar-text); font-size: 13px; }
.dev-meta span { color: var(--sidebar-muted); font-size: 11px; }
.quantity-control { display: flex; align-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; }
.quantity-control button { display: grid; width: 32px; height: 32px; place-items: center; border: 0; background: transparent; color: var(--lime); font-size: 20px; line-height: 1; }
.quantity-control button:hover { background: rgba(217,239,120,.11); }
.quantity-control output { display: grid; width: 34px; place-items: center; color: var(--sidebar-text); font-size: 13px; font-weight: 750; }

.summary-card { position: sticky; top: 93px; align-self: start; padding: 24px; border: 1px solid rgba(217,239,120,.36); border-radius: 20px; background: #2a2920; box-shadow: 0 18px 40px rgba(0,0,0,.16); }
.summary-card .mini-label { color: var(--sidebar-muted); }
.summary-card h3 { margin: 5px 0 0; font-family: var(--display); font-size: 28px; font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.summary-check { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 10px; background: var(--lime); color: var(--ink); font-size: 14px; font-weight: 900; }
.summary-plan { margin-top: 26px; padding: 17px; border-radius: 15px; background: rgba(217,239,120,.09); }
.summary-plan > span { display: block; color: var(--sidebar-text); font-size: 13px; font-weight: 690; }
.summary-plan strong { display: block; margin-top: 8px; color: var(--lime); font-family: var(--display); font-size: 35px; font-weight: 400; letter-spacing: -.055em; line-height: 1; }
.summary-plan strong small { color: var(--sidebar-muted); font-family: var(--body); font-size: 12px; font-weight: 600; letter-spacing: 0; }
.summary-plan > small { display: block; margin-top: 8px; color: var(--sidebar-muted); font-size: 11px; }
.summary-lines { display: grid; gap: 10px; margin-top: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.summary-line { display: flex; justify-content: space-between; gap: 12px; color: var(--sidebar-muted); font-size: 11px; line-height: 1.4; }
.summary-line b { color: var(--sidebar-text); font-weight: 650; text-align: right; }
.summary-line.is-included b { color: var(--lime); }
.summary-total { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 14px; padding: 20px 0; }
.summary-total span { color: var(--sidebar-muted); font-size: 12px; font-weight: 700; }
.summary-total strong { color: var(--sidebar-text); font-family: var(--display); font-size: 37px; font-weight: 400; letter-spacing: -.055em; line-height: 1; }
.summary-total small { flex: 0 0 100%; color: var(--sidebar-muted); font-size: 10px; }
.summary-contact { width: 100%; min-height: 44px; border: 1px solid rgba(255,255,255,.17); border-radius: 12px; background: transparent; color: var(--lime); font-size: 13px; font-weight: 760; }
.summary-contact:hover { border-color: var(--lime); background: rgba(217,239,120,.08); }
.payment-note { margin: 13px 3px 0; color: var(--sidebar-muted); font-size: 10px; line-height: 1.45; text-align: center; }

.how-it-works { border-bottom: 1px solid var(--line); }
.steps-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; margin: 47px 0 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line-strong); }
.steps-list span { color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.steps-list h3 { margin: 0; font-size: 16px; letter-spacing: -.03em; }
.steps-list p { margin: 6px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.58; }

.faq { padding-bottom: 124px; }
.faq-list { width: min(770px, 100%); margin: 47px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; color: var(--ink); font-size: 15px; font-weight: 730; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { flex: 0 0 25px; color: var(--green); content: "+"; font-size: 23px; font-weight: 400; line-height: 1; text-align: center; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { max-width: 680px; margin: -3px 0 22px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

.closing-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 0; padding-top: 56px; padding-bottom: 56px; border-radius: 24px 24px 0 0; background: var(--sidebar-card); color: var(--sidebar-text); }
.closing-cta > div { max-width: 710px; padding-left: 48px; }
.closing-cta .eyebrow { color: var(--lime); }
.closing-cta h2 { max-width: 700px; font-size: clamp(2.3rem, 3.8vw, 3.7rem); }
.closing-cta .button { margin-right: 48px; flex: 0 0 auto; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 30px max(24px, calc((100vw - 1160px) / 2)); background: var(--sidebar); color: var(--sidebar-muted); }
.site-footer .brand { color: var(--sidebar-text); }
.site-footer .brand-copy small { color: var(--sidebar-muted); }
.site-footer .brand-mark { width: 32px; height: 32px; flex-basis: 32px; border-radius: 11px 11px 11px 4px; }
.site-footer .brand-mark svg { width: 19px; height: 19px; }
.site-footer p { margin: 0; font-size: 11px; }

.site-notice { position: fixed; z-index: 80; right: 22px; bottom: 22px; max-width: min(410px, calc(100vw - 44px)); padding: 13px 15px; border: 1px solid #d4e69b; border-radius: 12px; background: #f5fadd; color: #4d5723; box-shadow: var(--shadow-lg); font-size: 12px; font-weight: 650; line-height: 1.5; }
.site-notice[hidden] { display: none; }
.owner-gate { position: fixed; z-index: 51; inset: 0; display: grid; place-items: center; padding: 22px; background: rgba(22, 21, 19, .58); backdrop-filter: blur(7px); }
.owner-gate[hidden] { display: none; }
.owner-gate-card { width: min(430px, 100%); padding: 29px; border: 1px solid var(--line); border-radius: 20px; background: var(--canvas); box-shadow: var(--shadow-lg); }
.owner-gate-card .eyebrow { color: var(--green); }
.owner-gate-card h2 { margin-top: 7px; font-size: 39px; }
.owner-gate-card > p:not(.eyebrow) { margin: 12px 0 20px; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.owner-gate-card label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 11px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.owner-gate-card input { min-height: 43px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--paper); color: var(--ink); font-size: 14px; letter-spacing: 0; text-transform: none; }
.owner-gate-card input:focus { border-color: var(--lime-deep); outline: 3px solid rgba(217,239,120,.4); }
.owner-gate-actions { display: flex; gap: 9px; margin-top: 18px; }
.owner-gate-actions .button { min-height: 41px; font-size: 12px; }
.owner-panel { position: fixed; z-index: 50; inset: 0 0 0 auto; width: min(740px, 100vw); height: 100vh; padding: 30px; overflow-y: auto; border-left: 1px solid var(--line); background: var(--canvas); box-shadow: -26px 0 65px rgba(0,0,0,.23); }
.owner-panel[hidden] { display: none; }
.owner-panel-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.owner-panel-header .eyebrow { color: var(--green); }
.owner-panel h2 { font-size: 38px; }
.icon-close { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--paper); color: var(--ink); font-size: 27px; line-height: 1; }
.icon-close:hover { background: var(--paper-warm); }
.owner-notice { margin: 20px 0; padding: 11px 13px; border: 1px solid #dfebaf; border-radius: 11px; background: var(--lime-pale); color: #525a28; font-size: 12px; line-height: 1.55; }
.owner-section { padding: 23px 0; border-bottom: 1px solid var(--line); }
.owner-section h3 { margin: 0 0 14px; font-size: 16px; letter-spacing: -.025em; }
.owner-section > label,
.owner-fields label,
.owner-item label { display: grid; gap: 6px; color: var(--ink-soft); font-size: 11px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.owner-section > label + label { margin-top: 12px; }
.owner-section input,
.owner-item input { width: 100%; min-height: 39px; padding: 0 11px; border: 1px solid var(--line-strong); border-radius: 9px; background: var(--paper); color: var(--ink); font-size: 13px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.owner-section input:focus,
.owner-item input:focus { border-color: var(--lime-deep); outline: 3px solid rgba(217,239,120,.4); }
.owner-help { margin: 9px 0 0; color: var(--ink-soft); font-size: 11px; line-height: 1.55; }
.owner-help code { padding: 2px 4px; border-radius: 4px; background: var(--paper-warm); color: var(--ink); }
.owner-fields { display: grid; gap: 12px; margin-bottom: 12px; }
.owner-fields-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.owner-fields-three { grid-template-columns: 1.2fr .55fr .75fr; }
.owner-section-title { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 14px; }
.owner-section-title h3 { margin: 0; }
.owner-add { min-height: 31px; padding: 0 9px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--paper); color: var(--ink); font-size: 11px; font-weight: 750; }
.owner-add:hover { background: var(--paper-warm); }
.owner-items { display: grid; gap: 9px; }
.owner-item { display: grid; grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(85px, .52fr)) 38px; gap: 8px; align-items: end; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.owner-item.module-item { grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr) repeat(2, minmax(82px, .48fr)) 38px; }
.owner-item .owner-remove { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid #f1c6bf; border-radius: 8px; background: #fff5f2; color: #b34938; font-size: 17px; }
.owner-item .owner-remove:hover { background: #fee9e4; }
.owner-actions { display: flex; flex-wrap: wrap; gap: 9px; padding: 25px 0 8px; }
.owner-actions .button { min-height: 39px; font-size: 12px; }
.file-button { position: relative; overflow: hidden; }
.file-button input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.noscript-message { position: fixed; z-index: 90; right: 18px; bottom: 18px; max-width: 360px; padding: 14px; border: 1px solid #ffd0c7; border-radius: 12px; background: #fff3f0; color: #a14334; font-size: 13px; }

@media (max-width: 940px) {
    :root { --page: min(100% - 36px, 1160px); }
    .main-nav { gap: 17px; margin-right: 20px; }
    .hero { grid-template-columns: 1fr .8fr; gap: 34px; min-height: 0; }
    .hero h1 { font-size: clamp(3.1rem, 6vw, 4.8rem); }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .configurator-layout { grid-template-columns: 1fr; }
    .summary-card { position: relative; top: auto; }
    .summary-card { max-width: 610px; }
    .trust-strip > div { padding-right: 18px; padding-left: 18px; }
}

@media (max-width: 700px) {
    :root { --page: min(100% - 28px, 1160px); }
    .site-header { min-height: 64px; padding: 10px 14px; }
    .brand-mark { width: 36px; height: 36px; flex-basis: 36px; border-radius: 12px 12px 12px 4px; }
    .brand-copy small { display: none; }
    .main-nav { display: none; }
    .header-cta { min-height: 38px; padding: 0 12px; font-size: 12px; }
    .hero { grid-template-columns: 1fr; gap: 37px; padding: 54px 0 62px; }
    .hero h1 { font-size: clamp(3.1rem, 13vw, 4.25rem); }
    .hero-description { font-size: 16px; }
    .hero-card { padding: 23px; }
    .hero-price strong { font-size: 43px; }
    .trust-strip { grid-template-columns: repeat(2, 1fr); }
    .trust-strip > div { min-height: 80px; padding: 17px 14px; border-bottom: 1px solid var(--sidebar-line); }
    .trust-strip > div:nth-child(2n) { border-right: 0; }
    .trust-strip > div:nth-last-child(-n + 2) { border-bottom: 0; }
    .features,
    .pricing,
    .how-it-works,
    .faq { padding-top: 75px; padding-bottom: 75px; }
    .split-heading,
    .configurator-intro { grid-template-columns: 1fr; gap: 17px; }
    .section-heading h2,
    .configurator-intro h2 { font-size: clamp(2.55rem, 11vw, 3.5rem); }
    .feature-grid,
    .plan-grid { grid-template-columns: 1fr; margin-top: 32px; }
    .feature-card { min-height: 188px; }
    .plan-card { min-height: 260px; }
    .billing-switch { max-width: 100%; }
    .billing-option { padding: 0 9px; }
    .billing-option span { display: none; }
    .configurator { padding-top: 72px; padding-bottom: 76px; }
    .configurator-layout { margin-top: 31px; }
    .builder-card { grid-template-columns: 35px minmax(0, 1fr); padding: 18px; }
    .module-grid { grid-template-columns: 1fr; }
    .dev-picker { align-items: flex-start; flex-direction: column; }
    .quantity-control { align-self: stretch; justify-content: space-between; }
    .quantity-control button { flex: 1; }
    .summary-card { padding: 19px; }
    .steps-list { grid-template-columns: 1fr; gap: 0; margin-top: 32px; }
    .steps-list li { padding: 16px 0; }
    .closing-cta { display: grid; gap: 25px; padding: 38px 24px; }
    .closing-cta > div { padding-left: 0; }
    .closing-cta .button { width: 100%; margin-right: 0; }
    .site-footer { align-items: flex-start; flex-direction: column; padding: 26px 14px; }
    .owner-panel { padding: 21px 14px; }
    .owner-panel h2 { font-size: 31px; }
    .owner-gate-card { padding: 23px; }
    .owner-gate-card h2 { font-size: 32px; }
    .owner-gate-actions { flex-direction: column; }
    .owner-fields-two,
    .owner-fields-three { grid-template-columns: 1fr; }
    .owner-item,
    .owner-item.module-item { grid-template-columns: 1fr 1fr 36px; }
    .owner-item.module-item label:nth-child(2) { grid-column: span 2; }
    .owner-item .owner-remove { grid-column: 3; }
}

@media (max-width: 390px) {
    .header-cta span { display: none; }
    .hero-benefits { display: grid; gap: 10px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-actions .text-link { text-align: center; }
    .summary-plan strong { font-size: 31px; }
}
