/* =========================
   Variables
========================= */
:root {
  --primary-color: #111318;
  --secondary-color: #656b76;
  --accent-color: #6d5dfc;
  --accent-2: #d6ff4b;
  --background-color: #ffffff;
  --surface-color: #f5f5f2;
  --surface-dark: #171a20;
  --text-color: #111318;
  --border-color: #dedfd9;
  --muted: #8a8f98;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 12px 40px rgba(17,19,24,.07);
  --shadow-lg: 0 28px 80px rgba(17,19,24,.14);
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Manrope", system-ui, sans-serif;
  --section-space: clamp(5rem, 9vw, 9rem);
}

/* =========================
   Reset & Base
========================= */
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text-color); background: var(--background-color); font-family: var(--font-body); font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--accent-2); color: #111; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent-color) 65%, white); outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 9999; background: #fff; color: #111; padding: .75rem 1rem; border-radius: 8px; box-shadow: var(--shadow-sm); transition: top .2s ease; }
.skip-link:focus { top: 1rem; }
.section-space { padding-block: var(--section-space); }
.bg-soft { background: var(--surface-color); }

/* =========================
   Typography
========================= */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); letter-spacing: -.045em; line-height: 1.06; font-weight: 800; }
h2 { font-size: clamp(2.35rem, 5vw, 4.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { color: var(--secondary-color); }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.35rem; color: #40444c; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.eyebrow::before { content: ""; width: 23px; height: 1px; background: currentColor; }
.light-eye { color: rgba(255,255,255,.72); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; margin-bottom: 3.75rem; }
.section-heading h2 { margin: 0; }
.section-intro { width: min(100%, 390px); margin: 0 0 .75rem; font-size: 1.07rem; }
.section-center { max-width: 760px; margin-inline: auto; margin-bottom: 4rem; }
.text-link { font-weight: 700; white-space: nowrap; padding-bottom: .25rem; border-bottom: 1px solid var(--text-color); }
.text-link i { margin-left: .35rem; }

/* =========================
   Buttons
========================= */
.btn { --bs-btn-border-radius: 999px; font-weight: 700; letter-spacing: -.015em; padding: .8rem 1.4rem; transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease; }
.btn-lg { padding: 1rem 1.65rem; font-size: .98rem; }
.btn-dark { --bs-btn-bg: #111318; --bs-btn-border-color: #111318; }
.btn:hover { transform: translateY(-2px); }
.btn-dark:hover { box-shadow: 0 12px 30px rgba(17,19,24,.2); }

/* =========================
   Header
========================= */
.site-header { position: sticky; top: 0; z-index: 1030; background: rgba(255,255,255,.86); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled { border-color: rgba(17,19,24,.08); box-shadow: 0 8px 30px rgba(17,19,24,.04); }
.navbar { min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-heading); font-size: 1.08rem; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { width: 30px; height: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; transform: rotate(-8deg); }
.brand-mark span { background: var(--text-color); border-radius: 4px; }
.brand-mark span:first-child { height: 72%; align-self: end; }
.brand-mark span:last-child { height: 100%; }
.nav-link { color: #545962; font-size: .94rem; font-weight: 600; padding-inline: .8rem !important; }
.nav-link:hover { color: #111318; }
.mobile-links { display: flex; flex-direction: column; }
.mobile-links a { padding: 1rem 0; font-family: var(--font-heading); font-size: 1.55rem; font-weight: 700; border-bottom: 1px solid var(--border-color); }

/* =========================
   Hero
========================= */
.hero-section { padding-top: clamp(4rem, 7vw, 7rem); }
.hero-title { font-size: clamp(3.35rem, 7.4vw, 7.4rem); line-height: .91; margin-bottom: 1.8rem; max-width: 960px; }
@media (min-width: 992px) { .hero-title { font-size: clamp(4rem, 5.6vw, 6.3rem); } }
.hero-title span { color: #737881; }
.hero-copy { font-size: clamp(1.08rem, 1.4vw, 1.28rem); max-width: 620px; }
.hero-actions { margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; margin-top: 2rem; color: #626771; font-size: .85rem; font-weight: 600; }
.hero-trust i { color: var(--accent-color); margin-right: .35rem; }
.hero-gallery { min-height: 590px; position: relative; margin-left: 1.5rem; }
.browser-card { position: absolute; overflow: hidden; border: 1px solid rgba(17,19,24,.12); border-radius: 18px; background: white; box-shadow: var(--shadow-lg); }
.browser-main { width: 78%; left: 6%; top: 80px; transform: rotate(-2deg); }
.browser-small { width: 45%; }
.top-card { right: -3%; top: 0; transform: rotate(4deg); }
.bottom-card { right: -7%; bottom: 28px; transform: rotate(3deg); }
.browser-bar { height: 36px; display: flex; align-items: center; gap: 5px; padding: 0 10px; background: #f5f5f3; border-bottom: 1px solid rgba(17,19,24,.08); }
.browser-bar span { width: 7px; height: 7px; border-radius: 50%; background: #c9c9c4; }
.browser-url { margin-left: 10px; flex: 1; background: white; border-radius: 7px; padding: 3px 8px; font-size: 7px; color: #9a9a95; text-align: center; }
.browser-bar.mini { height: 25px; }
.browser-bar.mini span { width: 5px; height: 5px; }
.site-preview { position: relative; overflow: hidden; }
.preview-roofing { height: 410px; background: #d6d9d2; }
.preview-nav { height: 55px; display: flex; justify-content: space-between; align-items: center; padding: 0 24px; color: #1b211d; }
.preview-nav strong { font-family: var(--font-heading); font-size: 11px; }
.preview-nav small { font-size: 6px; letter-spacing: .06em; }
.preview-hero-content { position: relative; z-index: 3; padding: 70px 24px 0; }
.tiny-pill { font-size: 6px; font-weight: 700; letter-spacing: .12em; }
.preview-hero-content h3 { margin: 10px 0 18px; font-size: 35px; line-height: .95; }
.preview-hero-content button, .shot-copy button, .compact-copy button, .landscape-copy button, .phone-page button { border: 0; padding: 9px 13px; background: #18201c; color: white; border-radius: 999px; font-size: 7px; font-weight: 700; }
.preview-house { position: absolute; width: 230px; height: 200px; right: -38px; bottom: -18px; }
.preview-house .wall { position: absolute; width: 150px; height: 120px; right: 25px; bottom: 0; background: #f1eee3; box-shadow: -28px 0 0 #c8c4b8; }
.preview-house .roof { position: absolute; z-index: 2; width: 190px; height: 95px; right: 8px; top: 8px; background: #39443e; clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.preview-cafe { height: 245px; display: grid; place-items: end start; padding: 24px; background: radial-gradient(circle at 75% 28%, #e8bb73 0 16%, transparent 16.5%), linear-gradient(135deg,#4c3022 0 45%,#d7a66b 45% 100%); color: #fff7ec; }
.preview-cafe small { font-size: 6px; letter-spacing: .12em; }
.preview-cafe h4 { margin: 6px 0; font-size: 25px; }
.preview-cafe span { font-size: 7px; }
.preview-clean { height: 210px; padding: 28px; background: #ebf3f6; color: #173545; }
.clean-circle { width: 66px; height: 66px; display: grid; place-items: center; margin-left: auto; border-radius: 50%; background: #c7e4ee; font-size: 23px; }
.preview-clean small { font-size: 6px; letter-spacing: .12em; }
.preview-clean h4 { font-size: 21px; margin-top: 8px; }
.float-badge { position: absolute; z-index: 5; left: -5%; bottom: 12px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(17,19,24,.1); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); }
.float-badge > i { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 9px; background: #111318; color: white; }
.float-badge span { display: flex; flex-direction: column; }
.float-badge strong { font-size: .77rem; }
.float-badge small { color: #8b9098; font-size: .66rem; }

/* =========================
   Proof Strip
========================= */
.proof-strip { background: #fbfbfa; }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-grid > div { padding: 1.7rem 1.5rem; display: flex; align-items: baseline; gap: .7rem; border-right: 1px solid var(--border-color); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { font-family: var(--font-heading); font-size: 1.4rem; }
.proof-grid span { color: #777c84; font-size: .78rem; }

/* =========================
   Categories
========================= */
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--border-color); border-left: 1px solid var(--border-color); }
.category-card { position: relative; min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; border-right: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); transition: background-color .25s ease, transform .25s ease; }
.category-card > i:first-child { position: absolute; top: 1.5rem; left: 1.5rem; font-size: 1.5rem; }
.category-card span { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; }
.category-card small { color: #92969d; margin-top: .25rem; }
.category-card .arrow { position: absolute; top: 1.5rem; right: 1.5rem; opacity: .25; transition: opacity .25s ease, transform .25s ease; }
.category-card:hover { background: var(--accent-2); }
.category-card:hover .arrow { opacity: 1; transform: translate(2px,-2px); }

/* =========================
   Template Grid
========================= */
.template-card { height: 100%; padding: .75rem; border: 1px solid #dedfd9; border-radius: 22px; background: #fff; transition: transform .3s ease, box-shadow .3s ease; }
.template-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.template-shot { position: relative; min-height: 390px; overflow: hidden; border-radius: 15px; }
.shot-browser { height: 28px; display: flex; align-items: center; gap: 5px; padding-left: 12px; background: rgba(255,255,255,.76); border-bottom: 1px solid rgba(0,0,0,.08); }
.shot-browser span { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,.22); }
.shot-topnav { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; padding: 17px 22px; }
.shot-topnav strong { font-size: 10px; }
.shot-topnav small { font-size: 6px; letter-spacing: .06em; }
.shot-topnav b { padding: 7px 9px; border-radius: 999px; background: #161a1b; color: white; font-size: 6px; }
.shot-copy { position: relative; z-index: 3; padding: 65px 30px; }
.shot-copy span { font-size: 7px; font-weight: 700; letter-spacing: .13em; }
.shot-copy h3 { font-size: 40px; margin: 9px 0; }
.shot-copy p { color: inherit; font-size: 8px; }
.shot-construction { background: #d9d5c8; color: #1b1b18; }
.shot-construction .shot-shape { position: absolute; width: 300px; height: 300px; right: -80px; bottom: -70px; background: #8c9288; clip-path: polygon(0 100%, 15% 32%, 52% 0, 100% 28%, 100% 100%); }
.shot-salon { background: #1f1c1c; color: #f3ece6; }
.shot-topnav.light b { color: #1f1c1c; background: #f3ece6; }
.salon-orb { position: absolute; right: -50px; bottom: -70px; width: 310px; height: 310px; border-radius: 50%; background: radial-gradient(circle at 35% 30%,#f2c4b1,#b76e67 48%,#5f3434 100%); filter: saturate(.8); }
.dark-copy p { color: #d6cbca; }
.dark-copy button { background: #f3ece6; color: #1f1c1c; }
.template-meta { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem .65rem 1rem; }
.template-meta h3 { margin: .35rem 0 .45rem; font-size: 1.22rem; }
.template-meta p { max-width: 90%; margin: 0; font-size: .88rem; }
.template-category { color: #8a8e96; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.price { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; }
.template-footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .9rem .65rem .2rem; border-top: 1px solid var(--border-color); }
.tech-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tech-tags span { padding: .35rem .55rem; border-radius: 999px; background: #f3f3f0; color: #747982; font-size: .66rem; font-weight: 700; }
.template-actions { display: flex; align-items: center; gap: 1rem; font-size: .78rem; font-weight: 700; }
.template-actions a:hover { text-decoration: underline; }
.compact-card .template-shot { min-height: 280px; }
.compact-card .template-meta { align-items: flex-start; }
.compact-card .template-meta h3 { font-size: 1.05rem; }
.shot-plumber { background: #d9edf7; color: #13344a; }
.compact-brand { position: absolute; top: 48px; left: 20px; font-family: var(--font-heading); font-weight: 800; font-size: 12px; }
.compact-brand span { color: #1f7fb9; }
.compact-copy { position: absolute; left: 22px; bottom: 28px; z-index: 2; }
.compact-copy small { font-size: 6px; font-weight: 700; letter-spacing: .12em; }
.compact-copy h4 { margin: 7px 0 14px; font-size: 30px; }
.compact-copy button { background: #13344a; }
.pipe-art { position: absolute; right: -25px; top: 68px; width: 150px; height: 150px; display: grid; place-items: center; border: 18px solid #77b4d3; border-radius: 42px; font-size: 45px; color: #277fb0; transform: rotate(20deg); }
.shot-cafe-card { background: #50352b; color: #f4debc; }
.cafe-logo { position: absolute; left: 22px; top: 55px; font-family: Georgia, serif; font-size: 24px; line-height: .8; font-style: italic; }
.cafe-logo span { font-family: var(--font-body); font-size: 6px; letter-spacing: .18em; font-style: normal; }
.coffee-cup { position: absolute; right: 30px; top: 86px; font-size: 92px; color: #d8a76f; transform: rotate(-8deg); }
.cafe-bottom { position: absolute; bottom: 25px; left: 22px; font-size: 6px; letter-spacing: .12em; }
.shot-realty { background: #ece7dc; color: #1d2820; }
.realty-grid { position: absolute; inset: 50px 25px 20px 45%; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; transform: rotate(4deg); }
.realty-grid div { background: #8a9f90; }
.realty-grid div:nth-child(2) { background: #c3b596; }
.realty-grid div:nth-child(3) { background: #576c61; }
.realty-grid div:nth-child(4) { background: #aa7f61; }
.realty-copy { position: absolute; left: 22px; bottom: 30px; z-index: 2; }
.realty-copy small { font-size: 6px; letter-spacing: .11em; }
.realty-copy h4 { margin-top: 8px; font-size: 29px; }

/* =========================
   Benefits
========================= */
.sticky-title { font-size: clamp(2.6rem,4.5vw,4.4rem); }
.benefit-list { border-top: 1px solid var(--border-color); }
.benefit-item { display: grid; grid-template-columns: 45px 70px 1fr; gap: 1.25rem; padding: 2.2rem 0; border-bottom: 1px solid var(--border-color); }
.benefit-number { color: #9b9fa5; font-size: .75rem; }
.benefit-icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--border-color); border-radius: 50%; font-size: 1.2rem; }
.benefit-item h3 { margin-bottom: .7rem; }
.benefit-item p { margin: 0; max-width: 650px; }

/* =========================
   Code Section
========================= */
.code-section { background: var(--surface-dark); color: white; }
.code-section h2 { color: white; }
.code-section p { color: #aaaeb6; font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: .75rem; }
.check-list li { color: #d4d6da; }
.check-list i { color: var(--accent-2); margin-right: .6rem; }
.code-window { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: #101217; box-shadow: 0 30px 70px rgba(0,0,0,.35); }
.code-top { height: 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.1); color: #858b94; }
.code-top > div { display: flex; gap: 6px; }
.code-top span { width: 8px; height: 8px; border-radius: 50%; background: #4c5059; }
.code-top i { justify-self: end; }
.code-window pre { margin: 0; padding: 2rem; overflow-x: auto; color: #e6e8ed; font-size: clamp(.72rem,1.2vw,.9rem); line-height: 1.8; }
.code-blue { color: #87b7ff; }
.code-gold { color: #e5c07b; }
.code-green { color: #a8d585; }
.code-muted { color: #686f7a; }

/* =========================
   Folder / Included
========================= */
.folder-card { max-width: 520px; filter: drop-shadow(0 25px 45px rgba(17,19,24,.09)); }
.folder-tab { width: 34%; padding: 1rem 1.3rem .8rem; border-radius: 18px 18px 0 0; background: #d6ff4b; font-family: var(--font-heading); font-size: .85rem; font-weight: 800; }
.folder-body { display: grid; gap: .85rem; padding: 2rem; border-radius: 0 22px 22px 22px; background: #fff; border: 1px solid var(--border-color); }
.folder-body > div { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; min-height: 34px; }
.folder-body i { color: #7a7f87; }
.folder-body span { font-weight: 700; }
.folder-body small { color: #9b9fa5; }
.folder-indent { padding-left: 1.2rem; }
.folder-indent-2 { padding-left: 2.4rem; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.2rem; margin-top: 2rem; }
.included-grid span { font-size: .92rem; font-weight: 600; }
.included-grid i { color: var(--accent-color); margin-right: .45rem; }

/* =========================
   Steps
========================= */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border-color); border-radius: 24px; overflow: hidden; }
.step-card { position: relative; min-height: 340px; padding: 2rem; border-right: 1px solid var(--border-color); }
.step-card:last-child { border-right: 0; }
.step-card > span { position: absolute; right: 1.5rem; top: 1.4rem; color: #a2a6ad; font-size: .75rem; }
.step-icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 5rem; border-radius: 18px; background: var(--surface-color); font-size: 1.4rem; }
.step-card h3 { font-size: 1.5rem; }
.step-card p { max-width: 290px; }

/* =========================
   Showcase
========================= */
.showcase-section { background: #c7d5b7; color: #182019; overflow: hidden; }
.showcase-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; margin-bottom: 3.5rem; }
.showcase-header .light-eye { color: #4e5e4c; }
.showcase-header p { max-width: 430px; margin: 0 0 .6rem; color: #495746; }
.showcase-stage { position: relative; width: min(1300px,95%); margin-inline: auto; padding-right: 80px; }
.showcase-browser { overflow: hidden; border: 1px solid rgba(24,32,25,.18); border-radius: 18px; background: white; box-shadow: 0 40px 90px rgba(50,70,45,.22); }
.landscape-demo { position: relative; height: 590px; overflow: hidden; background: #f2eee2; }
.landscape-nav { position: relative; z-index: 3; height: 70px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 3rem; }
.landscape-nav strong { font-size: .8rem; letter-spacing: .02em; }
.landscape-nav div { font-size: .7rem; font-weight: 600; }
.landscape-nav button { justify-self: end; border: 0; border-radius: 999px; background: #203326; color: white; padding: .65rem 1rem; font-size: .68rem; font-weight: 700; }
.landscape-copy { position: relative; z-index: 4; padding: 90px 3rem; }
.landscape-copy small { font-weight: 700; font-size: .65rem; letter-spacing: .13em; }
.landscape-copy h3 { margin: .8rem 0 1rem; font-size: clamp(4rem,7vw,7rem); line-height: .85; color: #203326; }
.landscape-copy p { max-width: 330px; color: #59665a; }
.landscape-copy button { font-size: .72rem; padding: .8rem 1.2rem; }
.landscape-art { position: absolute; inset: 0; overflow: hidden; }
.sun { position: absolute; width: 250px; height: 250px; border-radius: 50%; background: #e6d46a; right: 13%; top: 90px; }
.hill { position: absolute; bottom: -170px; border-radius: 50% 50% 0 0; }
.hill-1 { width: 65%; height: 420px; right: -5%; background: #7d9a6e; transform: rotate(-7deg); }
.hill-2 { width: 58%; height: 330px; right: 24%; background: #42624c; transform: rotate(7deg); }
.tree { position: absolute; bottom: 80px; width: 18px; height: 120px; background: #2e4536; border-radius: 50% 50% 8px 8px; }
.tree::before { content: ""; position: absolute; left: 50%; bottom: 80px; transform: translateX(-50%); width: 90px; height: 130px; background: #587961; border-radius: 50%; }
.t1 { right: 17%; transform: scale(1.3); }
.t2 { right: 34%; transform: scale(.8); }
.t3 { right: 5%; transform: scale(.68); }
.phone-preview { position: absolute; right: 0; bottom: -65px; width: 210px; height: 430px; padding: 8px; border: 4px solid #202020; border-radius: 34px; background: #151515; box-shadow: 0 25px 55px rgba(0,0,0,.28); }
.phone-notch { position: absolute; z-index: 4; width: 75px; height: 17px; top: 11px; left: 50%; transform: translateX(-50%); background: #151515; border-radius: 0 0 12px 12px; }
.phone-page { height: 100%; overflow: hidden; border-radius: 24px; background: #f2eee2; padding: 34px 16px 16px; }
.phone-page strong { font-size: 8px; }
.mobile-landscape-art { height: 130px; margin: 18px -16px; overflow: hidden; position: relative; background: #7d9a6e; }
.mobile-landscape-art div { width: 150px; height: 150px; border-radius: 50%; background: #e6d46a; position: absolute; right: -35px; top: -30px; box-shadow: -90px 75px 0 35px #42624c; }
.phone-page small { font-size: 5px; letter-spacing: .1em; }
.phone-page h4 { margin: 8px 0 15px; font-size: 33px; color: #203326; }
.phone-page button { background: #203326; }

/* =========================
   Audience
========================= */
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.audience-card { position: relative; min-height: 300px; padding: 1.6rem; border: 1px solid var(--border-color); border-radius: 18px; }
.audience-card > i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--surface-color); font-size: 1.2rem; }
.audience-card > span { position: absolute; right: 1.3rem; top: 1.3rem; color: #a1a5ab; font-size: .72rem; }
.audience-card h3 { margin-top: 5.2rem; }
.audience-card p { font-size: .92rem; }

/* =========================
   Comparison
========================= */
.comparison-wrap { overflow-x: auto; border: 1px solid var(--border-color); border-radius: 20px; background: white; }
.comparison-table { width: 100%; min-width: 740px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 1.15rem 1.3rem; border-bottom: 1px solid var(--border-color); text-align: center; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table thead th { font-family: var(--font-heading); font-size: .86rem; }
.comparison-table tbody td { color: #6f747c; font-size: .9rem; }
.comparison-table tbody td:first-child { color: #252931; font-weight: 600; }
.comparison-table .featured-col { background: #f5ffd2; color: #1c2419; }
.comparison-table thead .featured-col span { display: inline-block; padding: .4rem .7rem; border-radius: 999px; background: #1c2419; color: white; }
.comparison-table tr:last-child td { border-bottom: 0; }

/* =========================
   Pricing
========================= */
.pricing-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr; min-height: 520px; padding: clamp(2.5rem,5vw,5rem); border-radius: 28px; background: #6d5dfc; color: white; }
.pricing-copy { position: relative; z-index: 2; align-self: center; }
.pricing-copy .eyebrow { color: #d8d3ff; }
.pricing-copy p { max-width: 600px; color: #ddd9ff; font-size: 1.05rem; }
.pricing-copy .btn { margin-top: 1rem; }
.pricing-visual { display: grid; place-items: center; }
.price-orbit { position: relative; width: min(360px,80vw); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.price-orbit::before { content: ""; position: absolute; inset: 45px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.price-core { width: 185px; height: 185px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: #fff; color: #17171a; box-shadow: 0 20px 50px rgba(42,27,140,.3); }
.price-core small { font-size: .72rem; color: #7b7e87; }
.price-core strong { font-family: var(--font-heading); font-size: 4rem; line-height: 1; letter-spacing: -.07em; }
.price-core span { color: #6d5dfc; font-size: .72rem; font-weight: 700; }
.orbit-badge { position: absolute; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px); font-size: 1.35rem; }
.badge-a { left: 10px; top: 68px; transform: rotate(-8deg); }
.badge-b { right: 12px; top: 105px; transform: rotate(7deg); }
.badge-c { right: 52px; bottom: 18px; transform: rotate(-5deg); }

/* =========================
   Testimonials
========================= */
.quote-card { height: 100%; min-height: 330px; display: flex; flex-direction: column; margin: 0; padding: 2rem; border: 1px solid var(--border-color); border-radius: 20px; background: white; }
.quote-mark { font-family: Georgia, serif; font-size: 4.5rem; line-height: .7; color: #d3d4cf; }
.quote-card > p { margin: 2rem 0; color: #333740; font-size: 1.05rem; }
.quote-card footer { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-color); font-size: .7rem; font-weight: 800; }
.quote-card footer div:last-child { display: flex; flex-direction: column; }
.quote-card footer strong { font-size: .85rem; }
.quote-card footer span { color: #8a8e96; font-size: .72rem; }

/* =========================
   FAQ
========================= */
.custom-accordion { --bs-accordion-bg: transparent; --bs-accordion-border-color: var(--border-color); --bs-accordion-btn-focus-box-shadow: none; --bs-accordion-active-bg: transparent; --bs-accordion-active-color: #111318; }
.custom-accordion .accordion-item { border-bottom: 1px solid var(--border-color); }
.custom-accordion .accordion-button { padding: 1.5rem 0; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; letter-spacing: -.025em; }
.custom-accordion .accordion-body { padding: 0 2.5rem 1.6rem 0; color: #70757d; }

/* =========================
   Final CTA & Footer
========================= */
.final-cta { background: #171a20; color: white; }
.final-cta h2 { color: white; font-size: clamp(3rem,6vw,6rem); }
.final-cta p { max-width: 620px; margin: 1.5rem auto 2.4rem; color: #adb1b9; font-size: 1.1rem; }
.site-footer { background: #0f1115; color: #f2f2f0; padding: 4.5rem 0 1.5rem; }
.footer-top { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; padding-bottom: 4rem; }
.footer-brand { color: white; }
.light-mark span { background: white; }
.footer-top > div:first-child p { max-width: 370px; color: #8d929b; margin-top: 1.2rem; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-links > div { display: flex; flex-direction: column; gap: .7rem; }
.footer-links strong { margin-bottom: .5rem; font-size: .78rem; color: white; }
.footer-links a { color: #92969e; font-size: .85rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); color: #747982; font-size: .75rem; }
.social-links { display: flex; gap: .75rem; }
.social-links a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; color: #b4b7bd; }
.social-links a:hover { color: white; border-color: rgba(255,255,255,.35); }

/* =========================
   Reveal Animation
========================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================
   Responsive Styles
========================= */
@media (max-width: 1199.98px) {
  .hero-gallery { min-height: 520px; }
  .preview-roofing { height: 360px; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 991.98px) {
  :root { --section-space: clamp(4.5rem,11vw,6.5rem); }
  .hero-gallery { max-width: 680px; margin-inline: auto; min-height: 600px; }
  .browser-main { width: 73%; }
  .top-card { right: 3%; }
  .bottom-card { right: 1%; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--border-color); }
  .section-heading, .showcase-header { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .template-shot { min-height: 360px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--border-color); }
  .step-card:last-child { border-bottom: 0; }
  .step-icon { margin-bottom: 3rem; }
  .showcase-stage { padding-right: 50px; }
  .landscape-demo { height: 500px; }
  .landscape-art { opacity: .85; }
  .pricing-panel { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-copy { text-align: center; }
  .pricing-copy p { margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 767.98px) {
  .hero-section { padding-top: 3.3rem; }
  .hero-title { font-size: clamp(3.15rem,15vw,5.5rem); }
  .hero-gallery { min-height: 430px; margin-left: 0; }
  .browser-main { width: 78%; left: 0; top: 65px; }
  .browser-small { width: 42%; }
  .preview-roofing { height: 280px; }
  .preview-hero-content { padding-top: 42px; }
  .preview-hero-content h3 { font-size: 27px; }
  .preview-nav small { display: none; }
  .preview-house { transform: scale(.75); transform-origin: right bottom; }
  .top-card { right: 0; }
  .bottom-card { right: 0; bottom: 5px; }
  .preview-cafe { height: 185px; }
  .preview-cafe h4 { font-size: 18px; }
  .preview-clean { height: 160px; padding: 18px; }
  .preview-clean h4 { font-size: 15px; }
  .clean-circle { width: 45px; height: 45px; font-size: 16px; }
  .float-badge { display: none; }
  .proof-grid > div { flex-direction: column; gap: .1rem; }
  .section-heading { margin-bottom: 2.5rem; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 150px; }
  .benefit-item { grid-template-columns: 35px 1fr; }
  .benefit-icon { display: none; }
  .code-window pre { padding: 1.2rem; }
  .included-grid { grid-template-columns: 1fr; }
  .folder-body { padding: 1.4rem; }
  .folder-indent, .folder-indent-2 { padding-left: .7rem; }
  .showcase-stage { width: 100%; padding-right: 0; padding-bottom: 40px; }
  .landscape-demo { height: 420px; }
  .landscape-nav { padding: 0 1.2rem; grid-template-columns: 1fr auto; }
  .landscape-nav div { display: none; }
  .landscape-copy { padding: 65px 1.2rem; }
  .landscape-copy h3 { font-size: 4.2rem; }
  .landscape-art { transform: translateX(25%); }
  .phone-preview { width: 155px; height: 320px; right: -8px; bottom: 0; border-radius: 27px; }
  .phone-page { border-radius: 19px; padding: 30px 12px 12px; }
  .mobile-landscape-art { height: 95px; margin-inline: -12px; }
  .phone-page h4 { font-size: 25px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 260px; }
  .pricing-panel { padding: 2rem 1.3rem; border-radius: 22px; }
  .price-orbit { width: 280px; }
  .price-core { width: 150px; height: 150px; }
  .price-core strong { font-size: 3.2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 575.98px) {
  .container { --bs-gutter-x: 1.5rem; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: .65rem 1rem; }
  .hero-gallery { min-height: 360px; }
  .browser-main { width: 86%; }
  .top-card { width: 40%; }
  .bottom-card { width: 43%; }
  .preview-roofing { height: 235px; }
  .preview-hero-content h3 { font-size: 22px; }
  .preview-house { transform: scale(.6); }
  .preview-cafe { height: 150px; padding: 14px; }
  .preview-clean { height: 130px; }
  .template-shot { min-height: 300px; }
  .shot-topnav small { display: none; }
  .shot-copy { padding: 48px 20px; }
  .shot-copy h3 { font-size: 34px; }
  .template-meta { padding-inline: .25rem; }
  .template-footer { align-items: flex-start; flex-direction: column; padding-inline: .25rem; }
  .template-actions { width: 100%; justify-content: space-between; }
  .compact-card .template-shot { min-height: 240px; }
  .showcase-browser .browser-bar { height: 30px; }
  .landscape-demo { height: 380px; }
  .landscape-copy h3 { font-size: 3.55rem; }
  .phone-preview { display: none; }
  .landscape-art { transform: translateX(32%); }
  .footer-links { grid-template-columns: 1fr; }
}

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