:root {
  --owner-bg: #090b08;
  --owner-bg-soft: #11140f;
  --owner-panel: #141812;
  --owner-lime: #b8f23f;
  --owner-lime-bright: #caff54;
  --owner-lime-dark: #82b51c;
  --owner-white: #f8faf4;
  --owner-muted: #a9b0a3;
  --owner-line: rgba(255, 255, 255, 0.11);
  --owner-radius: 28px;
  --owner-display: "Barlow Condensed", sans-serif;
  --owner-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  color: var(--owner-white);
  background: var(--owner-bg);
  font-family: var(--owner-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.owner-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; padding: 12px 18px; background: var(--owner-lime); color: #090b08; font-weight: 800; }
.skip-link:focus { top: 16px; }

.owner-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 8, 0.88);
  backdrop-filter: blur(18px);
}
.owner-nav__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.owner-brand { display: inline-flex; flex: none; align-items: center; }
.owner-brand img { width: 176px; height: auto; }
.owner-nav__links { display: flex; align-items: center; gap: 30px; }
.owner-nav__links > a:not(.owner-button) { color: #d6dbd1; font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; transition: color 180ms ease; }
.owner-nav__links > a:not(.owner-button):hover { color: var(--owner-lime); }
.owner-nav__toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--owner-line); border-radius: 14px; background: #121510; cursor: pointer; }
.owner-nav__toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 4px; background: var(--owner-lime); transition: transform 180ms ease, opacity 180ms ease; }
.owner-nav.is-open .owner-nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.owner-nav.is-open .owner-nav__toggle span:nth-child(2) { opacity: 0; }
.owner-nav.is-open .owner-nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.owner-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 15px 28px;
  border: 1px solid var(--owner-lime);
  border-radius: 12px;
  background: var(--owner-lime);
  box-shadow: 0 14px 36px rgba(184, 242, 63, 0.16);
  color: #090b08;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.owner-button:hover { transform: translateY(-2px); background: var(--owner-lime-bright); box-shadow: 0 18px 44px rgba(184, 242, 63, 0.25); }
.owner-button:active { transform: translateY(0); }
.owner-button:focus-visible, .owner-nav__links a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(184, 242, 63, 0.34); outline-offset: 3px; }
.owner-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.owner-button--small { min-height: 44px; padding: 12px 18px; border-radius: 9px; font-size: 12px; }

.owner-hero { position: relative; overflow: hidden; padding: 86px 0 0; background: radial-gradient(circle at 74% 26%, rgba(184, 242, 63, 0.12), transparent 27%); }
.owner-hero::before { position: absolute; top: 0; right: 0; width: 46%; height: 100%; content: ""; opacity: 0.18; background-image: linear-gradient(rgba(184, 242, 63, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 242, 63, 0.14) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to left, black, transparent); }
.owner-hero__glow { position: absolute; top: -240px; left: -220px; width: 560px; height: 560px; border-radius: 50%; background: rgba(184, 242, 63, 0.06); filter: blur(8px); }
.owner-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr); align-items: center; gap: 64px; }
.owner-kicker { display: flex; align-items: center; gap: 12px; color: var(--owner-lime); font-size: 12px; font-weight: 900; letter-spacing: 0.14em; line-height: 1.3; text-transform: uppercase; }
.owner-kicker::before { width: 34px; height: 2px; flex: none; content: ""; background: var(--owner-lime); }
.owner-hero h1, .owner-section h2, .owner-application h2, .owner-final-cta h2, .owner-thanks h1 { margin: 0; font-family: var(--owner-display); font-weight: 900; letter-spacing: -0.035em; text-transform: uppercase; }
.owner-hero h1 { max-width: 720px; margin-top: 22px; font-size: clamp(64px, 7.2vw, 106px); line-height: 0.83; }
.owner-hero h1 span, .owner-section h2 span, .owner-application h2 span { color: var(--owner-lime); }
.owner-hero__sub { max-width: 650px; margin: 28px 0 0; color: #f3f6ef; font-family: var(--owner-display); font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.04; }
.owner-hero__support { max-width: 650px; margin: 20px 0 0; color: var(--owner-muted); font-size: 16px; line-height: 1.75; }
.owner-cost-card { display: flex; max-width: 650px; align-items: center; gap: 20px; margin-top: 27px; padding: 18px 22px; border: 1px solid rgba(184, 242, 63, 0.24); border-radius: 18px; background: linear-gradient(100deg, rgba(184, 242, 63, 0.1), rgba(184, 242, 63, 0.02)); }
.owner-cost-card__price { flex: none; color: var(--owner-lime); font-family: var(--owner-display); font-size: 62px; font-weight: 900; letter-spacing: -0.06em; line-height: 0.8; }
.owner-cost-card__price span { font-size: 34px; vertical-align: top; }
.owner-cost-card strong { display: block; font-size: 13px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.owner-cost-card p { margin: 4px 0 0; color: var(--owner-muted); font-size: 13px; line-height: 1.5; }
.owner-hero__actions { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.owner-button--hero { min-height: 66px; padding-inline: 34px; font-size: 15px; }
.owner-hero__actions > span { max-width: 150px; color: #858d7f; font-size: 12px; line-height: 1.45; }

.owner-hero__visual { position: relative; min-height: 640px; display: flex; align-items: center; justify-content: center; }
.owner-visual__orbit { position: absolute; width: 500px; height: 500px; border: 1px solid rgba(184, 242, 63, 0.16); border-radius: 50%; }
.owner-visual__orbit::before, .owner-visual__orbit::after { position: absolute; inset: 52px; content: ""; border: 1px solid rgba(184, 242, 63, 0.1); border-radius: inherit; }
.owner-visual__orbit::after { inset: 108px; background: rgba(184, 242, 63, 0.04); }
.owner-visual__frame { position: relative; z-index: 1; width: min(100%, 560px); aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 50% 50% 42% 42%; background: linear-gradient(150deg, #1b2018, #0d100c); box-shadow: 0 50px 100px rgba(0, 0, 0, 0.48); }
.owner-visual__frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.owner-float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; min-width: 196px; padding: 14px 16px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 16px; background: rgba(20, 24, 18, 0.9); box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35); backdrop-filter: blur(14px); }
.owner-float-card--top { top: 110px; right: -12px; }
.owner-float-card--bottom { bottom: 92px; left: -20px; }
.owner-float-card__icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: var(--owner-lime); color: #090b08; font-size: 22px; font-weight: 900; }
.owner-float-card__pulse { position: relative; width: 14px; height: 14px; margin: 0 12px; border-radius: 50%; background: var(--owner-lime); box-shadow: 0 0 0 7px rgba(184, 242, 63, 0.12); }
.owner-float-card__pulse::after { position: absolute; inset: -8px; content: ""; border: 1px solid var(--owner-lime); border-radius: 50%; animation: owner-pulse 2s infinite; }
.owner-float-card strong, .owner-float-card small { display: block; }
.owner-float-card strong { font-size: 13px; }
.owner-float-card small { margin-top: 1px; color: var(--owner-muted); font-size: 11px; }
.owner-trust-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 58px; border: 1px solid var(--owner-line); border-bottom: 0; border-radius: 24px 24px 0 0; background: rgba(20, 24, 18, 0.84); }
.owner-trust-strip div { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 96px; padding: 20px; border-right: 1px solid var(--owner-line); }
.owner-trust-strip div:last-child { border-right: 0; }
.owner-trust-strip strong { color: var(--owner-lime); font-family: var(--owner-display); font-size: 36px; line-height: 1; }
.owner-trust-strip span { max-width: 98px; color: #c0c6bb; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; line-height: 1.35; text-transform: uppercase; }

.owner-section { padding: 120px 0; }
.owner-section__heading { max-width: 720px; }
.owner-section__heading--center { margin-inline: auto; text-align: center; }
.owner-section__heading--center .owner-kicker { justify-content: center; }
.owner-section h2, .owner-application h2 { margin-top: 18px; font-size: clamp(48px, 6vw, 78px); line-height: 0.94; }
.owner-benefits { border-top: 1px solid var(--owner-line); background: #f3f5ef; color: #11150f; }
.owner-benefits .owner-kicker { color: #5e820f; }
.owner-benefits .owner-kicker::before { background: #5e820f; }
.owner-benefits h2 span { color: #628b0c; }
.owner-benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 54px; }
.owner-benefit-card { position: relative; min-height: 310px; overflow: hidden; padding: 36px; border: 1px solid #d9ded3; border-radius: 22px; background: #fff; transition: transform 200ms ease, box-shadow 200ms ease; }
.owner-benefit-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(39, 52, 28, 0.1); }
.owner-benefit-card--featured { background: #12160f; color: var(--owner-white); }
.owner-card-number { position: absolute; top: 26px; right: 30px; color: #d9ded3; font-family: var(--owner-display); font-size: 64px; font-weight: 900; line-height: 1; }
.owner-benefit-card--featured .owner-card-number { color: rgba(255, 255, 255, 0.08); }
.owner-benefit-icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 14px; background: #e8f6ca; color: #527808; }
.owner-benefit-card--featured .owner-benefit-icon { background: var(--owner-lime); color: #11150f; }
.owner-benefit-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.owner-benefit-card h3 { max-width: 360px; margin: 66px 0 0; font-family: var(--owner-display); font-size: 33px; font-weight: 800; letter-spacing: -0.015em; line-height: 1; text-transform: uppercase; }
.owner-benefit-card p { max-width: 470px; margin: 13px 0 0; color: #697065; font-size: 14px; line-height: 1.7; }
.owner-benefit-card--featured p { color: #aeb6a7; }

.owner-process { position: relative; overflow: hidden; background: var(--owner-bg); }
.owner-process::after { position: absolute; right: -160px; bottom: -160px; width: 420px; height: 420px; content: ""; border-radius: 50%; background: rgba(184, 242, 63, 0.05); filter: blur(10px); }
.owner-process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; }
.owner-process-grid::before { position: absolute; top: 31px; right: 11%; left: 11%; height: 1px; content: ""; background: linear-gradient(90deg, transparent, rgba(184, 242, 63, 0.55), transparent); }
.owner-step { position: relative; padding: 0 28px; text-align: center; }
.owner-step__number { position: relative; z-index: 2; display: grid; width: 64px; height: 64px; margin: 0 auto; place-items: center; border: 1px solid rgba(184, 242, 63, 0.44); border-radius: 50%; background: #11150f; color: var(--owner-lime); font-family: var(--owner-display); font-size: 22px; font-weight: 900; box-shadow: 0 0 0 9px var(--owner-bg); }
.owner-step h3 { margin: 28px 0 0; font-family: var(--owner-display); font-size: 29px; font-weight: 800; text-transform: uppercase; }
.owner-step p { margin: 8px auto 0; color: var(--owner-muted); font-size: 14px; line-height: 1.65; }
.owner-center-cta { margin-top: 62px; text-align: center; }

.owner-application { position: relative; padding: 120px 0; overflow: hidden; background: var(--owner-lime); color: #10140d; }
.owner-application::before { position: absolute; inset: 0; content: ""; opacity: 0.13; background-image: linear-gradient(#10140d 1px, transparent 1px), linear-gradient(90deg, #10140d 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg, black, transparent 70%); }
.owner-application__grid { position: relative; display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: start; gap: 80px; }
.owner-application .owner-kicker { color: #385305; }
.owner-application .owner-kicker::before { background: #385305; }
.owner-application h2 span { display: block; color: #10140d; -webkit-text-stroke: 1px #10140d; }
.owner-application__lead { margin: 20px 0 0; font-family: var(--owner-display); font-size: 30px; font-weight: 800; }
.owner-application__promise { display: grid; gap: 20px; margin-top: 38px; }
.owner-application__promise > div { display: flex; gap: 14px; align-items: flex-start; }
.owner-application__promise > div > span { display: grid; width: 28px; height: 28px; flex: none; place-items: center; border-radius: 50%; background: #11150f; color: var(--owner-lime); font-size: 13px; font-weight: 900; }
.owner-application__promise p { margin: 0; color: #344126; font-size: 13px; line-height: 1.55; }
.owner-application__promise strong { display: block; color: #11150f; font-size: 14px; }
.owner-application__note { max-width: 420px; margin: 36px 0 0; padding-top: 20px; border-top: 1px solid rgba(16, 20, 13, 0.2); color: #40502f; font-size: 12px; }
.owner-form-card { overflow: hidden; border-radius: 26px; background: #11140f; box-shadow: 0 36px 80px rgba(22, 34, 8, 0.27); color: var(--owner-white); }
.owner-form-card__top { display: flex; justify-content: space-between; padding: 18px 28px; border-bottom: 1px solid var(--owner-line); background: #181c15; color: #cbd1c5; font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.owner-form { padding: 30px; }
.owner-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.owner-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 14px; }
.owner-field { display: grid; gap: 7px; }
.owner-field--full { grid-column: 1 / -1; }
.owner-field > span, .owner-radio-field legend { color: #d7dcd3; font-size: 11px; font-weight: 800; letter-spacing: 0.045em; }
.owner-field em { margin-left: 3px; color: var(--owner-lime); font-style: normal; }
.owner-field input, .owner-field select { width: 100%; min-height: 52px; padding: 13px 14px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 10px; outline: 0; background: #090b08; color: #fff; font-size: 14px; transition: border-color 180ms ease, box-shadow 180ms ease; }
.owner-field input::placeholder { color: #646b60; }
.owner-field input:hover, .owner-field select:hover { border-color: rgba(184, 242, 63, 0.35); }
.owner-field input:focus, .owner-field select:focus { border-color: var(--owner-lime); box-shadow: 0 0 0 3px rgba(184, 242, 63, 0.1); }
.owner-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--owner-lime) 50%), linear-gradient(135deg, var(--owner-lime) 50%, transparent 50%); background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px; background-size: 5px 5px; background-repeat: no-repeat; }
.owner-radio-field { min-width: 0; margin: 0; padding: 0; border: 0; }
.owner-radio-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.owner-radio-group label { cursor: pointer; }
.owner-radio-group input { position: absolute; opacity: 0; pointer-events: none; }
.owner-radio-group span { display: grid; min-height: 50px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 10px; background: #090b08; color: #aeb5a9; font-size: 13px; font-weight: 800; transition: border-color 180ms ease, background 180ms ease, color 180ms ease; }
.owner-radio-group input:checked + span { border-color: var(--owner-lime); background: rgba(184, 242, 63, 0.12); color: var(--owner-lime); }
.owner-radio-group input:focus-visible + span { outline: 3px solid rgba(184, 242, 63, 0.3); outline-offset: 2px; }
.owner-button--submit { width: 100%; min-height: 64px; margin-top: 24px; border-radius: 11px; font-size: 15px; }
.owner-button--submit.is-submitting { pointer-events: none; opacity: 0.7; }
.owner-form__privacy { max-width: 530px; margin: 14px auto 0; color: #788074; font-size: 10px; line-height: 1.6; text-align: center; }

.owner-faq { background: #f3f5ef; color: #12160f; }
.owner-faq__grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 90px; align-items: start; }
.owner-faq .owner-kicker { color: #5e820f; }
.owner-faq .owner-kicker::before { background: #5e820f; }
.owner-faq__intro { position: sticky; top: 120px; }
.owner-faq__intro p { max-width: 350px; margin: 22px 0 0; color: #697065; font-size: 15px; }
.owner-text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 28px; border-bottom: 1px solid #506f11; color: #3f5c08; font-size: 12px; font-weight: 900; letter-spacing: 0.07em; text-transform: uppercase; }
.owner-text-link span { font-size: 20px; transition: transform 180ms ease; }
.owner-text-link:hover span { transform: translateX(4px); }
.owner-accordion { border-top: 1px solid #d4dacd; }
.owner-accordion details { border-bottom: 1px solid #d4dacd; }
.owner-accordion summary { position: relative; display: flex; min-height: 80px; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; list-style: none; font-family: var(--owner-display); font-size: 23px; font-weight: 800; line-height: 1.1; text-transform: uppercase; cursor: pointer; }
.owner-accordion summary::-webkit-details-marker { display: none; }
.owner-accordion summary span { position: relative; width: 24px; height: 24px; flex: none; }
.owner-accordion summary span::before, .owner-accordion summary span::after { position: absolute; top: 11px; left: 3px; width: 18px; height: 2px; content: ""; background: #54750e; transition: transform 180ms ease; }
.owner-accordion summary span::after { transform: rotate(90deg); }
.owner-accordion details[open] summary span::after { transform: rotate(0); }
.owner-accordion details p { max-width: 670px; margin: -5px 0 0; padding: 0 52px 26px 4px; color: #697065; font-size: 14px; line-height: 1.75; }

.owner-final-cta { padding: 76px 0; background: #11150f; }
.owner-final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.owner-final-cta span { color: var(--owner-lime); font-size: 11px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.owner-final-cta h2 { margin-top: 12px; font-size: clamp(42px, 5vw, 66px); line-height: 0.93; }
.owner-final-cta h2 em { color: var(--owner-lime); font-style: normal; }
.owner-button--light { flex: none; min-width: 220px; background: transparent; color: var(--owner-lime); }
.owner-button--light:hover { background: var(--owner-lime); color: #11150f; }
.owner-footer { padding: 28px 0; border-top: 1px solid var(--owner-line); background: #080a07; }
.owner-footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; }
.owner-footer .owner-brand img { width: 142px; }
.owner-footer p { margin: 0; color: #858d7f; font-size: 11px; text-align: center; }
.owner-footer__inner > span { color: #656c61; font-size: 10px; text-align: right; }
.owner-mobile-cta { display: none; }

.owner-reveal { animation: owner-rise 700ms both cubic-bezier(.2, .75, .2, 1); }
.owner-delay-1 { animation-delay: 80ms; }
.owner-delay-2 { animation-delay: 160ms; }
.owner-delay-3 { animation-delay: 240ms; }
.owner-delay-4 { animation-delay: 320ms; }
@keyframes owner-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes owner-pulse { 0% { opacity: 0.8; transform: scale(0.5); } 80%, 100% { opacity: 0; transform: scale(1.45); } }

@media (max-width: 1050px) {
  .owner-nav__links { gap: 20px; }
  .owner-hero__grid { grid-template-columns: 1fr 0.86fr; gap: 28px; }
  .owner-hero h1 { font-size: clamp(60px, 8vw, 86px); }
  .owner-hero__visual { min-height: 540px; }
  .owner-visual__orbit { width: 420px; height: 420px; }
  .owner-float-card--top { right: 0; }
  .owner-float-card--bottom { left: 0; }
  .owner-application__grid { gap: 45px; }
  .owner-faq__grid { gap: 50px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 76px; }
  .owner-container { width: min(100% - 30px, 680px); }
  .owner-nav__inner { min-height: 72px; flex-wrap: wrap; }
  .owner-brand img { width: 150px; }
  .owner-nav__toggle { display: block; }
  .owner-nav__links { display: none; width: 100%; padding: 0 0 14px; flex-direction: column; align-items: stretch; gap: 6px; }
  .owner-nav.is-open .owner-nav__links { display: flex; }
  .owner-nav__links > a:not(.owner-button) { padding: 13px 14px; border: 1px solid var(--owner-line); border-radius: 10px; background: #11140f; }
  .owner-nav__links .owner-button { width: 100%; margin-top: 4px; }
  .owner-hero { padding-top: 58px; }
  .owner-hero__grid { grid-template-columns: 1fr; }
  .owner-hero__copy { position: relative; z-index: 3; }
  .owner-hero__support { max-width: 590px; }
  .owner-hero__visual { min-height: 550px; margin-top: 15px; }
  .owner-visual__frame { width: min(540px, 90vw); }
  .owner-trust-strip { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
  .owner-trust-strip div:nth-child(2) { border-right: 0; }
  .owner-trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--owner-line); }
  .owner-section, .owner-application { padding: 88px 0; }
  .owner-benefit-grid { grid-template-columns: 1fr; }
  .owner-benefit-card { min-height: 280px; }
  .owner-process-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 10px; }
  .owner-process-grid::before { display: none; }
  .owner-application__grid, .owner-faq__grid { grid-template-columns: 1fr; gap: 50px; }
  .owner-application__intro { max-width: 600px; }
  .owner-faq__intro { position: static; }
  .owner-final-cta__inner { align-items: flex-start; flex-direction: column; }
  .owner-footer__inner { grid-template-columns: 1fr; justify-items: center; }
  .owner-footer__inner > span { text-align: center; }
}

@media (max-width: 560px) {
  body { padding-bottom: 78px; }
  .owner-container { width: calc(100% - 26px); }
  .owner-hero { padding-top: 42px; }
  .owner-hero::before { width: 100%; opacity: 0.12; }
  .owner-kicker { font-size: 10px; letter-spacing: 0.1em; }
  .owner-kicker::before { width: 22px; }
  .owner-hero h1 { margin-top: 17px; font-size: clamp(54px, 17vw, 76px); line-height: 0.85; }
  .owner-hero__sub { margin-top: 22px; font-size: 26px; }
  .owner-hero__support { font-size: 14px; line-height: 1.7; }
  .owner-cost-card { align-items: flex-start; gap: 14px; padding: 16px; }
  .owner-cost-card__price { font-size: 54px; }
  .owner-cost-card p { font-size: 11px; }
  .owner-hero__actions { align-items: stretch; flex-direction: column; }
  .owner-button--hero { width: 100%; }
  .owner-hero__actions > span { max-width: none; text-align: center; }
  .owner-hero__visual { min-height: 390px; margin: 18px -8px 0; }
  .owner-visual__orbit { width: 340px; height: 340px; }
  .owner-visual__frame { width: min(360px, 92vw); }
  .owner-float-card { min-width: 165px; padding: 10px 12px; }
  .owner-float-card--top { top: 46px; right: -4px; }
  .owner-float-card--bottom { bottom: 42px; left: -3px; }
  .owner-float-card strong { font-size: 11px; }
  .owner-float-card small { font-size: 9px; }
  .owner-float-card__icon { width: 31px; height: 31px; }
  .owner-trust-strip { border-radius: 18px 18px 0 0; }
  .owner-trust-strip div { min-height: 78px; gap: 8px; padding: 15px 8px; }
  .owner-trust-strip strong { font-size: 29px; }
  .owner-trust-strip span { font-size: 9px; }
  .owner-section, .owner-application { padding: 72px 0; }
  .owner-section h2, .owner-application h2 { font-size: clamp(45px, 14vw, 61px); }
  .owner-benefit-grid { margin-top: 36px; }
  .owner-benefit-card { min-height: 0; padding: 25px; }
  .owner-card-number { top: 20px; right: 22px; font-size: 53px; }
  .owner-benefit-card h3 { margin-top: 45px; font-size: 29px; }
  .owner-process-grid { grid-template-columns: 1fr; gap: 38px; margin-top: 48px; }
  .owner-step { padding: 0 14px; }
  .owner-center-cta { margin-top: 45px; }
  .owner-application__grid { gap: 38px; }
  .owner-application__lead { font-size: 25px; }
  .owner-form-card { margin-inline: -4px; border-radius: 18px; }
  .owner-form-card__top { padding: 15px 18px; }
  .owner-form { padding: 20px 16px; }
  .owner-form__grid { grid-template-columns: 1fr; gap: 16px; }
  .owner-field--full { grid-column: auto; }
  .owner-field input, .owner-field select { min-height: 54px; font-size: 16px; }
  .owner-accordion summary { min-height: 72px; font-size: 20px; }
  .owner-final-cta { padding: 60px 0; }
  .owner-final-cta h2 { font-size: 44px; }
  .owner-button--light { width: 100%; }
  .owner-mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 90; display: block; padding: 10px 13px; border-top: 1px solid rgba(255, 255, 255, 0.13); background: rgba(9, 11, 8, 0.93); backdrop-filter: blur(16px); }
  .owner-mobile-cta .owner-button { width: 100%; min-height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.owner-hero {
  padding: 60px 0 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.owner-hero__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 50px;
}
.owner-hero h1 {
  max-width: 780px;
  font-size: clamp(66px, 7.2vw, 100px);
}
.owner-hero__sub {
  max-width: 700px;
  margin-top: 24px;
}
.owner-hero__support {
  margin-top: 17px;
  color: #d8ded2;
  font-size: 17px;
}
.owner-hero__support strong { color: var(--owner-lime); }
.owner-hero__actions { margin-top: 25px; }
.owner-hero__product {
  position: relative;
  align-self: stretch;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: radial-gradient(circle at 50% 35%, rgba(184, 242, 63, 0.18), transparent 38%), #11140f;
}
.owner-hero__product::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image: linear-gradient(rgba(184, 242, 63, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 242, 63, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
}
.owner-hero__product img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owner-hero__product > div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(9, 11, 8, 0.88);
  backdrop-filter: blur(12px);
}
.owner-hero__product strong {
  color: var(--owner-lime);
  font-family: var(--owner-display);
  font-size: 34px;
  line-height: 1;
}
.owner-hero__product span {
  max-width: 90px;
  color: #d3d9ce;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.owner-application { padding: 66px 0 72px; }
.owner-application::before { opacity: 0.09; }
.owner-application__heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}
.owner-application__heading h2 {
  margin-top: 10px;
  font-size: clamp(48px, 5.6vw, 70px);
}
.owner-application__heading h2 span { display: inline; }
.owner-application__heading > p {
  margin: 0 0 8px;
  font-family: var(--owner-display);
  font-size: 26px;
  font-weight: 800;
  white-space: nowrap;
}
.owner-form-card { position: relative; border-radius: 22px; }
.owner-form { padding: 27px; }
.owner-form__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.owner-application .owner-field--full { grid-column: auto; }
.owner-button--submit { max-width: 440px; margin: 24px auto 0; }

.owner-benefit-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.owner-benefit-card { grid-column: span 2; min-height: 285px; padding: 30px; }
.owner-benefit-card:nth-child(4), .owner-benefit-card:nth-child(5) { grid-column: span 3; }
.owner-benefit-card h3 { margin-top: 52px; }

.owner-process-grid::before { right: 10%; left: 10%; }
.owner-step:not(:last-child)::after {
  position: absolute;
  top: 19px;
  right: -12px;
  z-index: 3;
  content: "→";
  color: var(--owner-lime);
  font-family: var(--owner-display);
  font-size: 28px;
  font-weight: 900;
}

.owner-proof { background: #0e110d; }
.owner-proof__heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
}
.owner-proof h2 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.94;
}
.owner-proof h2 span { color: var(--owner-lime); }
.owner-proof__heading > p {
  margin: 0 0 5px;
  color: var(--owner-muted);
  font-size: 14px;
  line-height: 1.75;
}
.owner-proof__gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 255px;
  gap: 14px;
  margin-top: 50px;
}
.owner-proof__photo {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: #171b14;
}
.owner-proof__photo--wide { grid-column: span 8; }
.owner-proof__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 500ms cubic-bezier(.2, .75, .2, 1), filter 300ms ease;
}
.owner-proof__photo:hover img { transform: scale(1.035); filter: saturate(1.08) contrast(1.04); }
.owner-proof__photo::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(4, 5, 4, 0.88));
  pointer-events: none;
}
.owner-proof__photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 17px;
  left: 20px;
  z-index: 2;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .owner-hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr); gap: 25px; }
  .owner-hero h1 { font-size: clamp(60px, 9vw, 80px); }
  .owner-form__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .owner-benefit-card { grid-column: span 3; }
  .owner-benefit-card:nth-child(5) { grid-column: 2 / span 4; }
  .owner-proof__heading { grid-template-columns: 1fr; gap: 20px; }
  .owner-proof__heading > p { max-width: 600px; }
}

@media (max-width: 820px) {
  .owner-hero { padding: 48px 0 50px; }
  .owner-hero__grid { grid-template-columns: 1fr; }
  .owner-hero__product { display: none; }
  .owner-application { padding: 54px 0 60px; }
  .owner-application__heading { align-items: flex-start; flex-direction: column; gap: 5px; margin-bottom: 22px; }
  .owner-application__heading > p { margin: 0; font-size: 23px; }
  .owner-step:not(:last-child)::after { display: none; }
  .owner-proof__gallery { grid-auto-rows: 220px; }
}

@media (max-width: 560px) {
  .owner-hero { padding: 36px 0 40px; }
  .owner-hero h1 { font-size: clamp(51px, 16vw, 67px); }
  .owner-hero__sub { margin-top: 19px; font-size: 24px; }
  .owner-hero__support { margin-top: 14px; font-size: 14px; }
  .owner-hero__actions { margin-top: 22px; }
  .owner-application { padding: 45px 0 50px; }
  .owner-application__heading h2 { font-size: 43px; }
  .owner-application__heading h2 span { display: block; }
  .owner-form { padding: 18px 14px; }
  .owner-form__grid { grid-template-columns: 1fr; gap: 13px; }
  .owner-button--submit { margin-top: 18px; }
  .owner-benefit-grid { grid-template-columns: 1fr; }
  .owner-benefit-card, .owner-benefit-card:nth-child(4), .owner-benefit-card:nth-child(5) { grid-column: auto; }
  .owner-proof__gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .owner-proof__photo, .owner-proof__photo--wide { grid-column: auto; }
}
