:root {
    --ink: #17251f;
    --ink-2: #2f4038;
    --muted: #67746e;
    --line: rgba(23, 37, 31, .12);
    --cream: #f7f2e9;
    --paper: #fffdf9;
    --white: #ffffff;
    --green: #235c45;
    --green-2: #174533;
    --sage: #dbe8df;
    --lime: #dff5a4;
    --orange: #ff7048;
    --yellow: #ffd76f;
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 36px;
    --shadow-sm: 0 14px 40px rgba(29, 52, 41, .08);
    --shadow: 0 28px 80px rgba(29, 52, 41, .14);
    --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, Aptos, "Segoe UI", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section--soft { background: var(--cream); }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 10000; background: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.topbar { background: var(--ink); color: rgba(255,255,255,.8); font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.topbar__inner { min-height: 32px; display: flex; justify-content: center; align-items: center; gap: 14px; }
.topbar__divider { width: 3px; height: 3px; border-radius: 50%; background: var(--lime); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,253,249,.86); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(23,37,31,.05); }
.site-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand__mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 14px; background: var(--green); color: var(--lime); }
.brand__mark svg { width: 25px; height: 25px; stroke-width: 2; }
.brand__name { font-size: 21px; letter-spacing: -.04em; }
.brand__name span { color: var(--orange); }
.brand--light { color: white; }
.main-nav__list { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.main-nav a { color: var(--ink-2); font-size: 14px; font-weight: 700; }
.main-nav a:hover { color: var(--green); }
.site-header__actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 14px; background: var(--cream); padding: 11px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s ease; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 15px; padding: 0 22px; font-weight: 800; line-height: 1; transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 0 17px; border-radius: 13px; font-size: 13px; }
.button--primary { background: var(--green); color: white; box-shadow: 0 12px 30px rgba(35,92,69,.22); }
.button--primary:hover { background: var(--green-2); }
.button--secondary { border-color: var(--ink); background: transparent; color: var(--ink); }
.button--secondary:hover { background: var(--ink); color: white; }
.button--ghost { border-color: var(--line); background: rgba(255,255,255,.65); color: var(--ink); }
.button--ghost:hover { border-color: rgba(23,37,31,.28); }
.button--light { background: white; color: var(--green-2); box-shadow: 0 14px 35px rgba(0,0,0,.12); }
.button--accent { background: var(--lime); color: var(--ink); }
.button--outline-light { color: white; border-color: rgba(255,255,255,.42); background: transparent; }
.button--search svg { width: 20px; height: 20px; }

.section--hero { padding: 76px 0 0; overflow: hidden; background: radial-gradient(circle at 88% 8%, rgba(223,245,164,.7), transparent 24%), linear-gradient(180deg, #fffdf9 0%, #f7f2e9 100%); }
.hero__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; min-height: 570px; }
.hero__content { position: relative; z-index: 2; padding-bottom: 70px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow { padding: 8px 12px; border: 1px solid rgba(35,92,69,.16); border-radius: 99px; background: rgba(255,255,255,.7); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,112,72,.12); }
.kicker--light { color: var(--lime); }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.04em; }
h1, h2 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; }
.hero h1 { max-width: 660px; margin: 22px 0 22px; font-size: clamp(50px, 5.5vw, 78px); }
.hero__lead { max-width: 610px; margin: 0; color: var(--muted); font-size: 18px; }
.hero__proof { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.hero__proof p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.hero__proof strong { color: var(--ink); }
.avatar-stack { display: flex; }
.avatar-stack span { width: 36px; height: 36px; display: grid; place-items: center; margin-left: -7px; border: 3px solid var(--paper); border-radius: 50%; background: var(--sage); color: var(--green); font-size: 10px; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: var(--green); color: white; }
.avatar-stack span:last-child { background: var(--orange); color: white; }
.hero__visual { position: relative; min-height: 560px; }
.hero-card { position: absolute; overflow: hidden; border: 7px solid rgba(255,255,255,.9); background: white; box-shadow: var(--shadow); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--main { inset: 20px 18px 35px 95px; border-radius: 48% 30px 30px 30px; }
.hero-card--main::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55)); }
.hero-card__label { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 22px; display: flex; align-items: end; justify-content: space-between; color: white; }
.hero-card__label span { font-size: 13px; font-weight: 700; }
.hero-card__label strong { font-size: 22px; }
.hero-card--mini { width: 170px; height: 150px; border-radius: 25px; }
.hero-card--top { top: 0; right: -18px; transform: rotate(4deg); }
.hero-card--bottom { left: 0; bottom: 30px; transform: rotate(-4deg); }
.floating-badge { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; min-width: 205px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.75); border-radius: 17px; background: rgba(255,255,255,.91); color: var(--ink); box-shadow: 0 18px 50px rgba(23,37,31,.15); backdrop-filter: blur(15px); text-align: left; }
.floating-badge--safe { top: 42%; left: 28px; }
.floating-badge--value { right: 24px; bottom: 55px; border: 0; }
.floating-badge__icon { width: 34px; height: 34px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 12px; background: var(--sage); color: var(--green); font-weight: 900; }
.floating-badge strong, .floating-badge small { display: block; }
.floating-badge strong { font-size: 12px; }
.floating-badge small { color: var(--muted); font-size: 10px; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .6; }
.hero__orb--one { width: 240px; height: 240px; right: -80px; top: 220px; background: var(--orange); filter: blur(120px); }
.hero__orb--two { width: 200px; height: 200px; left: 30%; bottom: 20px; background: var(--lime); filter: blur(100px); }

.search-shell { position: relative; z-index: 5; margin-bottom: -86px; }
.search-panel { padding: 15px; border: 1px solid rgba(23,37,31,.08); border-radius: 25px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.search-tabs { display: flex; gap: 5px; padding: 0 0 11px 7px; }
.search-tabs button { padding: 8px 14px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); font-size: 13px; font-weight: 800; }
.search-tabs button.is-active { background: var(--ink); color: white; }
.search-form { display: grid; grid-template-columns: 1.15fr 1fr 1fr auto; align-items: stretch; border: 1px solid var(--line); border-radius: 17px; overflow: hidden; }
.field { position: relative; min-height: 78px; display: flex; flex-direction: column; justify-content: center; padding: 11px 18px; border-right: 1px solid var(--line); background: white; }
.field span { margin-bottom: 2px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.field select { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-weight: 700; }
.search-form .button { margin: 8px; }
.quick-links { display: flex; flex-wrap: wrap; gap: 14px; padding: 12px 6px 0; color: var(--muted); font-size: 11px; }
.quick-links span { font-weight: 800; }
.quick-links a { text-decoration: underline; text-underline-offset: 3px; }

.trust-strip { padding: 145px 0 55px; background: var(--white); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-strip__grid div { display: flex; align-items: center; gap: 11px; justify-content: center; }
.trust-strip strong { color: var(--green); font-family: "DM Serif Display", Georgia, serif; font-size: 28px; font-weight: 400; }
.trust-strip span { max-width: 130px; color: var(--muted); font-size: 11px; font-weight: 700; line-height: 1.35; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.section-heading--center { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 10px 0 0; font-size: clamp(38px, 4.2vw, 58px); }
.section-heading p { max-width: 430px; margin: 0 0 7px; color: var(--muted); }
.intent-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 18px; }
.intent-card { position: relative; min-height: 310px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; color: var(--ink); text-align: left; transition: .25s ease; }
button.intent-card { width: 100%; }
.intent-card:hover { transform: translateY(-5px); border-color: rgba(35,92,69,.3); box-shadow: var(--shadow-sm); }
.intent-card--large { grid-row: span 2; min-height: 638px; justify-content: flex-end; background: linear-gradient(160deg, #224e3b, #122b21); color: white; }
.intent-card--large::before { position: absolute; inset: 28px 28px auto auto; width: 210px; height: 210px; content: ""; border: 1px solid rgba(223,245,164,.35); border-radius: 50%; box-shadow: 0 0 0 42px rgba(223,245,164,.04), 0 0 0 84px rgba(223,245,164,.03); }
.intent-card--large::after { position: absolute; top: 90px; right: 80px; width: 80px; height: 95px; content: "⌂"; color: var(--lime); font-family: Georgia, serif; font-size: 92px; opacity: .9; }
.intent-card--wide { grid-column: 2 / span 2; min-height: 310px; display: grid; grid-template-columns: 1fr 45%; gap: 22px; }
.intent-card--wide img { position: absolute; top: 18px; right: 18px; bottom: 18px; width: 42%; height: calc(100% - 36px); border-radius: 18px; object-fit: cover; }
.intent-card__icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 44px; border-radius: 15px; background: var(--cream); color: var(--green); font-size: 21px; font-weight: 800; }
.intent-card--large .intent-card__icon { position: absolute; top: 28px; left: 28px; background: rgba(255,255,255,.1); color: var(--lime); }
.intent-card__tag { margin-bottom: 8px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.intent-card--large .intent-card__tag { color: var(--lime); }
.intent-card h3 { max-width: 360px; margin-bottom: 10px; font-size: 27px; }
.intent-card--large h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 44px; font-weight: 400; }
.intent-card p { max-width: 390px; margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.intent-card--large p { color: rgba(255,255,255,.68); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; }
.text-link b { transition: transform .2s ease; }
.text-link:hover b { transform: translateX(4px); }
.text-link--top { margin-bottom: 10px; }

.filter-pills { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.filter-pills button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 99px; background: white; color: var(--muted); font-size: 12px; font-weight: 800; }
.filter-pills button.is-active { border-color: var(--ink); background: var(--ink); color: white; }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.property-card { overflow: hidden; border: 1px solid rgba(23,37,31,.08); border-radius: var(--radius); background: white; transition: .25s ease; }
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.property-card.is-hidden { display: none; }
.property-card__media { position: relative; aspect-ratio: 1.35; margin: 9px; overflow: hidden; border-radius: 18px; }
.property-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.property-card:hover img { transform: scale(1.045); }
.property-card__badge { position: absolute; top: 12px; left: 12px; padding: 7px 10px; border-radius: 9px; background: var(--lime); color: var(--ink); font-size: 10px; font-weight: 900; }
.property-card__badge--new { background: var(--orange); color: white; }
.property-card__media button { position: absolute; top: 12px; right: 12px; width: 35px; height: 35px; border: 0; border-radius: 50%; background: rgba(255,255,255,.88); font-size: 20px; }
.property-card__body { padding: 12px 20px 20px; }
.property-card__meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.property-card h3 { min-height: 52px; margin: 9px 0 14px; font-size: 21px; }
.property-card__features { display: flex; gap: 16px; color: var(--muted); font-size: 11px; }
.property-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--line); }
.property-card__footer strong { font-size: 19px; }
.property-card__footer a { color: var(--green); font-size: 11px; font-weight: 800; }
.centered-action { display: flex; flex-direction: column; align-items: center; gap: 11px; margin-top: 38px; }
.centered-action small, .demo-note { color: var(--muted); font-size: 10px; }

.method-section { background: white; }
.method-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 95px; align-items: center; }
.method-visual { position: relative; min-height: 650px; }
.method-photo { position: absolute; inset: 0 45px 35px 0; overflow: hidden; border-radius: 170px 35px 35px 35px; }
.method-photo img { width: 100%; height: 100%; object-fit: cover; }
.method-score { position: absolute; right: 0; bottom: 0; width: 255px; padding: 23px; border-radius: 22px; background: white; box-shadow: var(--shadow); }
.method-score > span, .method-score small { display: block; color: var(--muted); font-size: 10px; font-weight: 700; }
.method-score strong { display: block; margin: 8px 0; color: var(--green); font-family: "DM Serif Display", Georgia, serif; font-size: 52px; font-weight: 400; line-height: 1; }
.method-score strong span { font-size: 17px; }
.score-bar { height: 7px; margin-bottom: 9px; overflow: hidden; border-radius: 99px; background: var(--cream); }
.score-bar i { display: block; height: 100%; border-radius: inherit; background: var(--green); }
.method-content h2 { margin: 10px 0 18px; font-size: clamp(40px, 4.3vw, 60px); }
.method-intro { color: var(--muted); }
.method-steps { margin: 28px 0 30px; padding: 0; list-style: none; }
.method-steps li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.method-steps button { width: 100%; display: flex; align-items: center; gap: 15px; border: 0; background: transparent; color: var(--ink); text-align: left; }
.method-steps button span { color: var(--orange); font-size: 11px; font-weight: 900; }
.method-steps button strong { font-size: 15px; }
.method-steps li p { max-height: 0; margin: 0 0 0 35px; overflow: hidden; color: var(--muted); font-size: 12px; transition: .3s ease; }
.method-steps li.is-active p { max-height: 80px; margin-top: 8px; }

.valuation-section { padding-top: 30px; }
.valuation-card { display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, #1c563f, #123626); color: white; }
.valuation-card__copy { padding: 70px; }
.valuation-card h2 { max-width: 620px; margin: 10px 0 16px; font-size: clamp(40px, 4vw, 57px); }
.valuation-card p { max-width: 570px; color: rgba(255,255,255,.68); }
.valuation-card__benefits { display: flex; flex-wrap: wrap; gap: 15px; margin: 25px 0; color: rgba(255,255,255,.82); font-size: 11px; font-weight: 800; }
.valuation-card__preview { position: relative; min-height: 520px; display: grid; place-items: center; padding: 50px; background: radial-gradient(circle at 50% 30%, rgba(223,245,164,.23), transparent 38%); }
.valuation-card__preview::before, .valuation-card__preview::after { position: absolute; content: ""; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.valuation-card__preview::before { width: 390px; height: 390px; }
.valuation-card__preview::after { width: 300px; height: 300px; }
.mini-dashboard { position: relative; z-index: 2; width: min(100%, 380px); padding: 28px; border: 1px solid rgba(255,255,255,.5); border-radius: 24px; background: rgba(255,255,255,.95); color: var(--ink); box-shadow: 0 30px 70px rgba(0,0,0,.2); transform: rotate(2deg); }
.mini-dashboard__top, .mini-dashboard__footer { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 800; }
.status-dot { color: var(--green); }
.status-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #52bd78; }
.mini-dashboard > strong { display: block; margin: 20px 0 3px; font-size: 26px; }
.mini-dashboard > p { margin: 0; color: var(--muted); font-size: 11px; }
.mini-chart { height: 120px; display: flex; align-items: end; gap: 9px; margin: 26px 0; padding: 0 4px; border-bottom: 1px solid var(--line); }
.mini-chart i { flex: 1; min-height: 12px; border-radius: 5px 5px 0 0; background: var(--sage); }
.mini-chart i:nth-child(6), .mini-chart i:nth-child(7) { background: var(--green); }

.auction-section { overflow: hidden; background: #111b17; color: white; }
.auction-glow { position: absolute; width: 500px; height: 500px; right: -150px; top: -200px; border-radius: 50%; background: rgba(255,112,72,.18); filter: blur(90px); }
.auction-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.auction-copy h2 { margin: 12px 0 18px; font-size: clamp(42px, 4.4vw, 61px); }
.auction-copy > p { max-width: 560px; color: rgba(255,255,255,.63); }
.auction-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; }
.auction-points span { padding: 13px 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; }
.auction-dashboard { position: relative; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: rgba(255,255,255,.06); box-shadow: 0 34px 90px rgba(0,0,0,.28); }
.auction-dashboard__header { display: flex; justify-content: space-between; align-items: center; padding: 10px 8px 18px; }
.auction-dashboard__header small, .auction-dashboard__header strong { display: block; }
.auction-dashboard__header small { color: rgba(255,255,255,.5); font-size: 10px; }
.auction-dashboard__header strong { font-size: 35px; }
.auction-dashboard__header strong span { font-size: 13px; color: rgba(255,255,255,.45); }
.auction-chip { padding: 8px 10px; border-radius: 9px; background: rgba(223,245,164,.15); color: var(--lime); font-size: 10px; font-weight: 800; }
.auction-dashboard img { width: 100%; aspect-ratio: 1.9; object-fit: cover; border-radius: 18px; }
.auction-dashboard__body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 18px 0 10px; }
.auction-dashboard__body div { padding: 12px; border-right: 1px solid rgba(255,255,255,.1); }
.auction-dashboard__body div:last-child { border-right: 0; }
.auction-dashboard__body small, .auction-dashboard__body strong { display: block; }
.auction-dashboard__body small { color: rgba(255,255,255,.45); font-size: 9px; }
.auction-dashboard__body strong { margin-top: 4px; font-size: 14px; }
.auction-risk { padding: 15px; border-radius: 14px; background: rgba(255,255,255,.06); }
.auction-risk span, .auction-risk b { font-size: 9px; }
.auction-risk b { float: right; color: var(--lime); }
.auction-risk div { height: 5px; margin: 8px 0 3px; overflow: hidden; border-radius: 9px; background: rgba(255,255,255,.1); }
.auction-risk i { display: block; height: 100%; background: var(--lime); }

.services-bento { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.service-card { position: relative; min-height: 330px; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.service-card--primary { grid-row: span 2; min-height: 678px; background: var(--green); color: white; }
.service-card--primary::after { position: absolute; width: 360px; height: 360px; right: -100px; bottom: -100px; content: ""; border: 1px solid rgba(223,245,164,.3); border-radius: 50%; box-shadow: 0 0 0 50px rgba(223,245,164,.04), 0 0 0 100px rgba(223,245,164,.03); }
.service-card--image { grid-column: 2 / span 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 25px; }
.service-card--image img { width: 100%; height: 100%; border-radius: 18px; object-fit: cover; }
.service-card--accent { background: var(--lime); }
.service-card__number { position: absolute; top: 22px; right: 24px; color: var(--muted); font-size: 10px; font-weight: 800; }
.service-card--primary .service-card__number { color: rgba(255,255,255,.5); }
.service-card__icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 85px; border-radius: 17px; background: var(--cream); color: var(--green); font-weight: 900; }
.service-card--primary .service-card__icon { margin-bottom: 290px; background: rgba(255,255,255,.1); color: var(--lime); }
.service-card h3 { margin-bottom: 11px; font-size: 26px; }
.service-card--primary h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 43px; font-weight: 400; }
.service-card p { color: var(--muted); font-size: 13px; }
.service-card--primary p { color: rgba(255,255,255,.65); }
.service-card a { position: absolute; left: 29px; bottom: 26px; font-size: 11px; font-weight: 800; }
.service-card--image a { position: static; }

.zone-scroller { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.zone-card { position: relative; min-height: 410px; overflow: hidden; border-radius: 24px; color: white; }
.zone-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(0,0,0,.02) 35%, rgba(0,0,0,.78)); }
.zone-card img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.zone-card:hover img { transform: scale(1.06); }
.zone-card > span { position: absolute; z-index: 2; top: 18px; left: 18px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); backdrop-filter: blur(10px); font-size: 10px; font-weight: 800; }
.zone-card div { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; }
.zone-card h3 { margin-bottom: 4px; font-family: "DM Serif Display", Georgia, serif; font-size: 29px; font-weight: 400; }
.zone-card p { margin: 0; color: rgba(255,255,255,.65); font-size: 11px; }

.testimonial-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.testimonial-copy h2 { margin: 12px 0 18px; font-size: clamp(40px, 4vw, 57px); }
.testimonial-copy > p { color: var(--muted); }
.rating { display: grid; grid-template-columns: auto 1fr; gap: 0 12px; align-items: center; margin-top: 30px; }
.rating strong { grid-row: span 2; font-family: "DM Serif Display", Georgia, serif; font-size: 50px; font-weight: 400; }
.rating span { color: #efaa2f; letter-spacing: 3px; }
.rating small { color: var(--muted); font-size: 9px; }
.testimonial-cards { position: relative; min-height: 510px; }
.testimonial-cards blockquote { position: absolute; width: 82%; margin: 0; padding: 32px; border: 1px solid var(--line); border-radius: 25px; background: white; box-shadow: var(--shadow-sm); }
.testimonial-cards blockquote:first-child { top: 0; left: 0; transform: rotate(-2deg); }
.testimonial-cards blockquote:nth-child(2) { right: 0; bottom: 35px; transform: rotate(2deg); }
.quote-mark { color: var(--orange); font-family: Georgia, serif; font-size: 52px; line-height: .8; }
.testimonial-cards blockquote p { font-family: "DM Serif Display", Georgia, serif; font-size: 22px; line-height: 1.35; }
.testimonial-cards footer { display: flex; flex-direction: column; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial-cards footer span { font-size: 12px; font-weight: 800; }
.testimonial-cards footer small { color: var(--muted); font-size: 10px; }
.testimonial-cards > .demo-note { position: absolute; right: 8px; bottom: 0; }

.partner-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; padding: 65px; border-radius: var(--radius-lg); background: var(--cream); }
.partner-card h2 { margin: 12px 0 16px; font-size: clamp(39px, 4vw, 55px); }
.partner-card p { margin-bottom: 28px; color: var(--muted); }
.partner-tiers { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 10px; }
.partner-tiers article { position: relative; min-height: 260px; display: flex; flex-direction: column; justify-content: center; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.7); }
.partner-tiers article.is-featured { min-height: 310px; background: var(--green); color: white; box-shadow: var(--shadow); }
.partner-tiers span { color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.partner-tiers strong { margin: 10px 0; font-size: 17px; }
.partner-tiers small { color: var(--muted); font-size: 10px; }
.partner-tiers .is-featured span { color: var(--lime); }
.partner-tiers .is-featured small { color: rgba(255,255,255,.6); }
.partner-tiers b { position: absolute; top: 12px; right: 12px; padding: 5px 7px; border-radius: 7px; background: var(--lime); color: var(--ink); font-size: 8px; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.article-card__media { display: block; aspect-ratio: 1.55; overflow: hidden; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.article-card:hover img { transform: scale(1.05); }
.article-card__body { padding: 24px; }
.article-card__meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.article-card__meta span { color: var(--orange); }
.article-card h3 { min-height: 54px; margin: 12px 0 10px; font-size: 21px; }
.article-card p { min-height: 60px; color: var(--muted); font-size: 12px; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-grid h2 { margin: 12px 0 16px; font-size: clamp(40px, 4vw, 55px); }
.faq-grid > div:first-child p { color: var(--muted); }
.accordion article { border-bottom: 1px solid var(--line); }
.accordion button { width: 100%; min-height: 74px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 0; border: 0; background: transparent; color: var(--ink); font-weight: 800; text-align: left; }
.accordion button span { font-size: 24px; font-weight: 400; transition: .2s ease; }
.accordion article > div { max-height: 0; overflow: hidden; transition: .3s ease; }
.accordion article p { margin: 0 0 22px; color: var(--muted); font-size: 13px; }
.accordion article.is-open > div { max-height: 150px; }
.accordion article.is-open button span { transform: rotate(45deg); }

.final-cta { padding: 70px 0; background: var(--orange); color: white; }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta span { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.final-cta h2 { margin: 5px 0 0; font-size: clamp(38px, 4vw, 56px); }
.final-cta__inner > div:last-child { display: flex; gap: 10px; flex: 0 0 auto; }

.site-footer { padding: 75px 0 25px; background: var(--ink); color: white; }
.site-footer__grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 60px; }
.site-footer__brand p { max-width: 340px; color: rgba(255,255,255,.55); font-size: 13px; }
.site-footer__contact { display: flex; flex-direction: column; margin-top: 20px; font-size: 12px; font-weight: 800; }
.site-footer h3 { margin-bottom: 18px; font-size: 13px; }
.site-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.site-footer__grid > div:not(:first-child) a { color: rgba(255,255,255,.55); font-size: 11px; }
.site-footer__bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 9px; }
.site-footer__bottom div { display: flex; gap: 16px; }
.mobile-cta { display: none; }

.wizard { position: fixed; inset: 0; z-index: 5000; visibility: hidden; opacity: 0; transition: .25s ease; }
.wizard.is-open { visibility: visible; opacity: 1; }
.wizard__backdrop { position: absolute; inset: 0; background: rgba(10,19,15,.72); backdrop-filter: blur(8px); }
.wizard__dialog { position: absolute; top: 50%; left: 50%; width: min(780px, calc(100vw - 30px)); max-height: min(850px, calc(100vh - 30px)); overflow: auto; transform: translate(-50%, calc(-50% + 30px)); border-radius: 28px; background: var(--paper); box-shadow: 0 40px 120px rgba(0,0,0,.35); transition: .3s ease; }
.wizard.is-open .wizard__dialog { transform: translate(-50%, -50%); }
.wizard__close { position: absolute; z-index: 3; top: 16px; right: 16px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); font-size: 24px; }
.wizard__brand { display: flex; align-items: center; gap: 10px; padding: 24px 30px 15px; font-size: 13px; font-weight: 800; }
.wizard__brand .brand__mark { width: 32px; height: 32px; border-radius: 11px; }
.wizard__brand svg { width: 19px; height: 19px; }
.wizard__progress { height: 4px; background: var(--cream); }
.wizard__progress i { display: block; height: 100%; background: var(--orange); transition: .3s ease; }
.wizard__step { display: none; min-height: 570px; padding: 42px 55px 35px; }
.wizard__step.is-active { display: block; animation: stepIn .3s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.wizard__counter { color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.wizard h2 { margin: 8px 0 8px; font-size: 40px; }
.wizard__step > p { margin-top: 0; color: var(--muted); font-size: 13px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.choice-grid input { position: absolute; opacity: 0; }
.choice-grid label span { min-height: 130px; display: flex; flex-direction: column; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: white; transition: .2s ease; }
.choice-grid label:hover span, .choice-grid input:checked + span { border-color: var(--green); box-shadow: 0 10px 28px rgba(35,92,69,.1); }
.choice-grid input:checked + span { background: rgba(219,232,223,.45); }
.choice-grid b { width: 35px; height: 35px; display: grid; place-items: center; margin-bottom: 12px; border-radius: 11px; background: var(--cream); color: var(--green); }
.choice-grid strong { font-size: 13px; }
.choice-grid small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.wizard__actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 25px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field > span { color: var(--muted); font-size: 10px; font-weight: 800; }
.form-field input, .form-field select { width: 100%; height: 53px; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; outline: none; background: white; color: var(--ink); }
.form-field input:focus, .form-field select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(35,92,69,.08); }
.input-suffix { position: relative; }
.input-suffix b { position: absolute; top: 50%; right: 14px; transform: translateY(-50%); color: var(--muted); font-size: 12px; }
.feature-checks { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 17px; }
.feature-checks input { position: absolute; opacity: 0; }
.feature-checks span { display: block; padding: 9px 13px; border: 1px solid var(--line); border-radius: 99px; background: white; color: var(--muted); font-size: 10px; font-weight: 800; }
.feature-checks input:checked + span { border-color: var(--green); background: var(--sage); color: var(--green); }
.estimate-preview { margin-bottom: 24px; padding: 18px; border: 1px solid rgba(35,92,69,.14); border-radius: 16px; background: var(--sage); }
.estimate-preview span, .estimate-preview small, .estimate-preview strong { display: block; }
.estimate-preview span { color: var(--green); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.estimate-preview strong { margin: 5px 0; font-size: 25px; }
.estimate-preview small { color: var(--muted); font-size: 9px; }
.privacy-check { display: flex; gap: 9px; align-items: flex-start; margin-top: 14px; color: var(--muted); font-size: 9px; }
.privacy-check input { margin-top: 3px; }

.toast { position: fixed; z-index: 6000; left: 50%; bottom: 25px; max-width: min(420px, calc(100vw - 30px)); padding: 13px 17px; transform: translate(-50%, 30px); border-radius: 13px; background: var(--ink); color: white; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .25s ease; font-size: 12px; font-weight: 700; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

.content-shell { min-height: 70vh; padding: 95px 0; }
.content-narrow { max-width: 820px; }
.content-card { margin-bottom: 18px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.content-card h2 { font-size: 32px; }
.single-content header { margin-bottom: 35px; }
.single-content h1 { margin: 10px 0; font-size: clamp(46px, 6vw, 72px); }
.single-content__lead { color: var(--muted); font-size: 19px; }
.single-content__image { margin: 35px 0; overflow: hidden; border-radius: var(--radius); }
.single-content h2 { margin-top: 45px; font-size: 38px; }
.single-content p, .single-content li { color: var(--ink-2); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal--delay { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--late { transition-delay: .22s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .main-nav { display: none; }
    .menu-toggle { display: block; }
    .site-header__actions .button--ghost { display: none; }
    .main-nav.is-open { position: absolute; top: 81px; left: 20px; right: 20px; display: block; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); }
    .main-nav.is-open .main-nav__list { flex-direction: column; align-items: flex-start; }
    .hero__grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .hero h1 { font-size: 57px; }
    .search-form { grid-template-columns: 1fr 1fr; }
    .field:nth-child(2) { border-right: 0; }
    .search-form .button { min-height: 60px; }
    .intent-grid { grid-template-columns: 1fr 1fr; }
    .intent-card--large { grid-row: auto; min-height: 460px; }
    .intent-card--wide { grid-column: 1 / -1; }
    .method-grid, .auction-grid, .testimonial-grid, .partner-card, .faq-grid { gap: 50px; }
    .services-bento { grid-template-columns: 1fr 1fr; }
    .service-card--primary { grid-row: auto; min-height: 500px; }
    .service-card--image { grid-column: 1 / -1; }
    .zone-scroller { grid-template-columns: 1fr 1fr; }
    .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .site-footer__grid > div:last-child { display: none; }
}

@media (max-width: 820px) {
    :root { --container: min(100% - 28px, 720px); }
    .section { padding: 82px 0; }
    .topbar__inner span:nth-of-type(2), .topbar__inner span:nth-of-type(3), .topbar__divider:nth-of-type(2) { display: none; }
    .site-header__inner { min-height: 70px; }
    .site-header__actions { display: none; }
    .main-nav.is-open { top: 69px; }
    .section--hero { padding-top: 45px; }
    .hero__grid { grid-template-columns: 1fr; min-height: auto; }
    .hero__content { padding-bottom: 10px; }
    .hero h1 { font-size: clamp(47px, 12vw, 68px); }
    .hero__visual { min-height: 470px; }
    .hero-card--main { inset: 15px 15px 20px 55px; }
    .hero-card--mini { width: 125px; height: 110px; }
    .floating-badge--safe { left: 0; }
    .floating-badge--value { right: 0; }
    .search-shell { margin-bottom: -130px; }
    .search-form { display: grid; grid-template-columns: 1fr 1fr; }
    .search-form .button { grid-column: 1 / -1; }
    .trust-strip { padding-top: 190px; }
    .trust-strip__grid { grid-template-columns: 1fr 1fr; }
    .section-heading { display: block; }
    .section-heading p { margin-top: 18px; }
    .intent-grid { grid-template-columns: 1fr; }
    .intent-card--wide { grid-column: auto; grid-template-columns: 1fr; min-height: 440px; padding-bottom: 210px; }
    .intent-card--wide img { top: auto; left: 18px; bottom: 18px; width: calc(100% - 36px); height: 180px; }
    .property-grid, .article-grid { grid-template-columns: 1fr 1fr; }
    .property-card:last-child, .article-card:last-child { grid-column: 1 / -1; }
    .method-grid, .auction-grid, .testimonial-grid, .partner-card, .faq-grid, .valuation-card { grid-template-columns: 1fr; }
    .method-visual { min-height: 540px; }
    .valuation-card__copy { padding: 48px; }
    .valuation-card__preview { min-height: 430px; }
    .auction-dashboard { max-width: 580px; }
    .services-bento { grid-template-columns: 1fr 1fr; }
    .service-card--primary { grid-column: 1 / -1; }
    .service-card--primary .service-card__icon { margin-bottom: 150px; }
    .partner-card { padding: 45px; }
    .partner-tiers { max-width: 650px; }
    .testimonial-cards { min-height: 530px; }
    .final-cta__inner { display: block; }
    .final-cta__inner > div:last-child { margin-top: 25px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__brand { grid-column: 1 / -1; }
    .mobile-cta { position: fixed; z-index: 2000; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: 1fr 1.35fr; padding: 5px; border: 1px solid rgba(255,255,255,.6); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: 0 20px 60px rgba(0,0,0,.2); backdrop-filter: blur(15px); }
    .mobile-cta button, .mobile-cta a { min-height: 47px; display: grid; place-items: center; border: 0; border-radius: 12px; font-size: 11px; font-weight: 800; }
    .mobile-cta button { background: transparent; color: var(--ink); }
    .mobile-cta a { background: var(--green); color: white; }
    .site-footer { padding-bottom: 95px; }
}

@media (max-width: 560px) {
    .brand__name { font-size: 19px; }
    .hero__lead { font-size: 16px; }
    .hero__visual { min-height: 380px; }
    .hero-card--main { inset: 10px 0 20px 28px; border-radius: 110px 24px 24px 24px; }
    .hero-card--top { right: -5px; }
    .hero-card--bottom { display: none; }
    .floating-badge { min-width: 170px; padding: 9px; }
    .floating-badge--safe { top: 47%; }
    .floating-badge--value { bottom: 5px; }
    .search-form { display: block; border: 0; }
    .field { min-height: 64px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px; }
    .search-form .button { width: calc(100% - 16px); margin: 8px; }
    .quick-links { display: none; }
    .search-shell { margin-bottom: -165px; }
    .trust-strip { padding-top: 220px; }
    .trust-strip__grid div { justify-content: flex-start; }
    .section-heading h2, .method-content h2, .auction-copy h2, .testimonial-copy h2, .partner-card h2, .faq-grid h2 { font-size: 39px; }
    .intent-card--large { min-height: 430px; }
    .filter-pills { justify-content: flex-start; overflow-x: auto; padding-bottom: 5px; }
    .filter-pills button { flex: 0 0 auto; }
    .property-grid, .article-grid { grid-template-columns: 1fr; }
    .property-card:last-child, .article-card:last-child { grid-column: auto; }
    .method-visual { min-height: 430px; }
    .method-photo { right: 15px; border-radius: 100px 24px 24px 24px; }
    .method-score { width: 215px; padding: 18px; }
    .valuation-card__copy { padding: 38px 27px; }
    .valuation-card__preview { min-height: 370px; padding: 25px; }
    .auction-grid { gap: 45px; }
    .auction-points { grid-template-columns: 1fr; }
    .auction-dashboard__body { grid-template-columns: 1fr 1fr; }
    .auction-dashboard__body div:nth-child(2) { border-right: 0; }
    .auction-dashboard__body div:last-child { grid-column: 1 / -1; }
    .services-bento { grid-template-columns: 1fr; }
    .service-card--primary, .service-card--image { grid-column: auto; }
    .service-card--image { display: block; min-height: 520px; }
    .service-card--image img { height: 220px; margin-bottom: 22px; }
    .zone-scroller { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
    .zone-card { flex: 0 0 84%; scroll-snap-align: start; }
    .testimonial-cards { min-height: auto; display: grid; gap: 15px; }
    .testimonial-cards blockquote { position: static; width: 100%; transform: none !important; }
    .testimonial-cards > .demo-note { position: static; }
    .partner-card { padding: 34px 23px; }
    .partner-tiers { grid-template-columns: 1fr; }
    .partner-tiers article, .partner-tiers article.is-featured { min-height: 180px; }
    .final-cta__inner > div:last-child { flex-direction: column; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__brand { grid-column: auto; }
    .site-footer__bottom { display: block; }
    .site-footer__bottom div { margin-top: 12px; }
    .wizard__dialog { width: 100%; max-height: 92vh; top: auto; bottom: 0; left: 0; transform: translateY(100%); border-radius: 25px 25px 0 0; }
    .wizard.is-open .wizard__dialog { transform: none; }
    .wizard__step { min-height: 590px; padding: 34px 22px 30px; }
    .wizard h2 { font-size: 34px; }
    .choice-grid, .form-grid { grid-template-columns: 1fr; }
    .form-field--full { grid-column: auto; }
    .choice-grid label span { min-height: 105px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Ardea Casa Growth 5.0 */
.growth-hero{position:relative;min-height:720px;display:flex;align-items:center;overflow:hidden;background:#0c302d;color:#fff}.growth-hero__media{position:absolute;inset:0}.growth-hero__media img{width:100%;height:100%;object-fit:cover}.growth-hero__media:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,31,33,.95) 0%,rgba(7,31,33,.78) 47%,rgba(7,31,33,.2) 78%,rgba(7,31,33,.32) 100%)}.growth-hero__media span{position:absolute;z-index:1;width:420px;height:420px;border-radius:50%;background:rgba(223,245,164,.18);filter:blur(100px);right:8%;top:6%}.growth-hero__inner{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.1fr) minmax(300px,.55fr);gap:70px;align-items:center;padding-top:90px;padding-bottom:125px}.growth-hero__copy{max-width:760px}.growth-hero .kicker{color:var(--lime)}.growth-hero h1{max-width:800px;margin:16px 0 21px;color:#fff;font-size:clamp(55px,7vw,94px);line-height:.93;letter-spacing:-.058em}.growth-hero__copy>p{max-width:660px;margin:0;color:rgba(255,255,255,.76);font-size:19px;line-height:1.65}.growth-hero__actions{display:flex;flex-wrap:wrap;gap:11px;margin-top:30px}.growth-hero__trust{display:flex;flex-wrap:wrap;gap:16px;margin-top:27px;color:rgba(255,255,255,.72);font-size:12px;font-weight:750}.growth-hero__card{align-self:end;padding:27px;border:1px solid rgba(255,255,255,.22);border-radius:26px;background:rgba(255,255,255,.1);backdrop-filter:blur(18px);box-shadow:0 26px 70px rgba(0,0,0,.18)}.growth-hero__card>span{color:var(--lime);font-size:10px;font-weight:850;letter-spacing:.12em;text-transform:uppercase}.growth-hero__card strong{display:block;margin:9px 0 12px;font-family:"DM Serif Display",Georgia,serif;font-size:29px;font-weight:400;line-height:1.12}.growth-hero__card p{color:rgba(255,255,255,.7);font-size:13px}.growth-hero__card a{color:var(--lime);font-size:12px;font-weight:850}.growth-search-wrap{position:relative;z-index:10;margin-top:-76px}.growth-search-wrap .ac-smart-search{max-width:1180px;margin:auto}.growth-ad-slot{padding-top:34px}.growth-ad-slot .ac-ad-slot{margin:0}.suite-missing{padding:30px;border:1px solid #e0e8e5;border-radius:24px;background:#fff;box-shadow:var(--shadow-sm)}
.growth-promise{padding-top:95px}.growth-promise__grid>.section-heading{display:grid;grid-template-columns:1.05fr .75fr;align-items:end}.growth-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:17px}.growth-steps article{min-height:260px;padding:28px;border:1px solid var(--line);border-radius:25px;background:#fff;transition:.28s ease}.growth-steps article:hover{transform:translateY(-5px);box-shadow:var(--shadow-sm)}.growth-steps b{display:grid;place-items:center;width:42px;height:42px;margin-bottom:48px;border-radius:14px;background:var(--sage);color:var(--green);font-size:11px}.growth-steps h3{font-size:24px;margin-bottom:10px}.growth-steps p{margin:0;color:var(--muted);font-size:14px}.growth-property-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.growth-empty{display:grid;grid-template-columns:.8fr 1.2fr;align-items:center;overflow:hidden;border-radius:32px;background:#183e35;color:#fff}.growth-empty img{width:100%;height:360px;object-fit:cover}.growth-empty>div{padding:50px}.growth-empty span{color:var(--lime);font-size:11px;font-weight:850;text-transform:uppercase;letter-spacing:.12em}.growth-empty h3{font-family:"DM Serif Display",Georgia,serif;font-size:45px;font-weight:400;margin:9px 0}.growth-empty p{color:rgba(255,255,255,.7)}
.growth-tools{background:#fff}.growth-tool-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.growth-tool-card{position:relative;overflow:hidden;min-height:500px;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;padding:28px;border-radius:28px;background:#102e2a;color:#fff;box-shadow:var(--shadow-sm);transition:.3s ease}.growth-tool-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(3,25,26,.04),rgba(3,25,26,.93))}.growth-tool-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:.6s ease}.growth-tool-card:hover{transform:translateY(-6px)}.growth-tool-card:hover img{transform:scale(1.06)}.growth-tool-card>*:not(img){position:relative;z-index:2}.growth-tool-card>span{color:var(--lime);font-size:10px;font-weight:850;letter-spacing:.1em;text-transform:uppercase}.growth-tool-card h3{font-family:"DM Serif Display",Georgia,serif;font-size:35px;font-weight:400;margin:8px 0 10px}.growth-tool-card p{margin:0 0 18px;color:rgba(255,255,255,.72);font-size:13px}.growth-tool-card b{font-size:12px;color:#fff}.growth-technical{padding-top:45px}.growth-technical__grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:82px;align-items:center}.growth-technical__image{position:relative;min-height:620px}.growth-technical__image img{width:100%;height:620px;object-fit:cover;border-radius:180px 35px 35px 35px}.growth-technical__image span{position:absolute;right:-28px;bottom:35px;max-width:230px;padding:20px;border-radius:20px;background:#fff;color:var(--green);font-family:"DM Serif Display",Georgia,serif;font-size:23px;line-height:1.12;box-shadow:var(--shadow)}.growth-technical__copy h2{font-size:clamp(42px,4.4vw,62px);margin:11px 0 18px}.growth-technical__copy>p{color:var(--muted);font-size:17px}.growth-technical__copy ul{display:grid;gap:10px;margin:26px 0;padding:0;list-style:none}.growth-technical__copy li{position:relative;padding-left:29px;font-weight:700}.growth-technical__copy li:before{content:"✓";position:absolute;left:0;top:0;width:20px;height:20px;border-radius:50%;display:grid;place-items:center;background:var(--sage);color:var(--green);font-size:11px}.growth-technical__copy>div{display:flex;flex-wrap:wrap;gap:18px;align-items:center}.growth-zone-section{background:var(--cream)}
.growth-network{background:#fff}.growth-network__grid{display:grid;grid-template-columns:1fr 1fr;gap:21px}.growth-network__card{display:grid;grid-template-columns:44% 1fr;overflow:hidden;min-height:350px;border:1px solid var(--line);border-radius:28px;background:#fff;transition:.3s ease}.growth-network__card:hover{transform:translateY(-5px);box-shadow:var(--shadow-sm)}.growth-network__card img{width:100%;height:100%;object-fit:cover}.growth-network__card>div{padding:32px;display:flex;flex-direction:column;justify-content:center}.growth-network__card span{color:var(--orange);font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.1em}.growth-network__card h3{font-family:"DM Serif Display",Georgia,serif;font-size:35px;font-weight:400;margin:7px 0 10px}.growth-network__card p{color:var(--muted);font-size:13px}.growth-network__card b{margin-top:15px;color:var(--green);font-size:12px}.growth-technical-alert{margin:14px 0 20px;padding:14px;border-radius:15px;background:#f5f1df}.growth-technical-alert strong{display:block;color:#3e4e45}.growth-technical-alert p{margin:4px 0 0;color:#6e786f;font-size:12px}.estimate-preview strong{font-size:clamp(25px,5vw,40px)!important}.final-cta__inner p{max-width:620px;color:rgba(255,255,255,.7)}
.ardea-growth-theme .ac-property-card-v2,.ardea-growth-theme .ac-auction-card{font-family:Inter,Aptos,"Segoe UI",system-ui,sans-serif}.ardea-growth-theme .ac-property-card-v2{height:100%}.ardea-growth-theme .ac-auction-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.ardea-growth-theme .ac-auctions-page .ac-auction-card{box-shadow:0 12px 35px rgba(23,37,31,.08)}
@media(max-width:1050px){.growth-hero__inner{grid-template-columns:1fr;gap:25px}.growth-hero__card{max-width:520px;align-self:auto}.growth-promise__grid>.section-heading{grid-template-columns:1fr}.growth-property-grid,.growth-tool-grid,.ardea-growth-theme .ac-auction-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.growth-technical__grid{gap:45px}.growth-network__card{grid-template-columns:1fr}.growth-network__card img{height:220px}.growth-network__card>div{padding:26px}}
@media(max-width:760px){:root{--container:min(100% - 28px,1180px)}.topbar__inner{overflow-x:auto;justify-content:flex-start;white-space:nowrap}.growth-hero{min-height:auto}.growth-hero__inner{padding-top:70px;padding-bottom:120px}.growth-hero h1{font-size:clamp(47px,15vw,68px)}.growth-hero__copy>p{font-size:16px}.growth-hero__actions{display:grid}.growth-hero__actions .button{width:100%}.growth-hero__trust{display:grid;gap:7px}.growth-hero__card{padding:21px}.growth-search-wrap{margin-top:-75px}.growth-promise{padding-top:70px}.growth-steps,.growth-property-grid,.growth-tool-grid,.growth-network__grid,.ardea-growth-theme .ac-auction-grid{grid-template-columns:1fr}.growth-steps article{min-height:220px}.growth-steps b{margin-bottom:28px}.growth-empty{grid-template-columns:1fr}.growth-empty img{height:240px}.growth-empty>div{padding:30px}.growth-tool-card{min-height:420px}.growth-technical__grid{grid-template-columns:1fr}.growth-technical__image,.growth-technical__image img{min-height:440px;height:440px}.growth-technical__image span{right:12px;bottom:18px}.growth-technical__copy>div{align-items:flex-start;flex-direction:column}.growth-network__card{grid-template-columns:1fr}.section{padding:78px 0}.section-heading{display:block}.section-heading p{margin-top:20px}.growth-ad-slot{padding-top:20px}}
@media(max-width:480px){.growth-hero h1{font-size:46px}.growth-hero__card strong{font-size:24px}.growth-tool-card{min-height:370px}.growth-technical__image,.growth-technical__image img{height:360px;min-height:360px}.growth-technical__image img{border-radius:90px 25px 25px}.growth-technical__image span{max-width:190px;font-size:19px}.growth-network__card h3{font-size:30px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.reveal,.growth-tool-card,.growth-tool-card img,.growth-steps article,.growth-network__card{transition:none!important;animation:none!important;transform:none!important}}
