:root {
  --ink: #17212b;
  --muted: #5d6874;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --coral: #e95f45;
  --gold: #c9972d;
  --blue: #315f9d;
  --line: rgba(23, 33, 43, 0.14);
  --shadow: 0 24px 70px rgba(23, 33, 43, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(23, 33, 43, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 200ms ease, background 200ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.93);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: transparent;
  background: url("assets/bluegrass-icon-48.png") center / cover no-repeat;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 7px;
  color: rgba(23, 33, 43, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--teal-dark);
  background: rgba(15, 118, 110, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 7px;
  background: rgba(23, 33, 43, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 132px 24px 38px;
  overflow: hidden;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(11, 21, 27, 0.9) 0%, rgba(11, 21, 27, 0.7) 38%, rgba(11, 21, 27, 0.24) 70%),
    linear-gradient(0deg, rgba(11, 21, 27, 0.72), rgba(11, 21, 27, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb36a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions,
.filter-bar,
.billing-toggle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.32);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.13);
}

.button.ghost {
  color: var(--teal-dark);
  border-color: rgba(15, 118, 110, 0.25);
  background: rgba(15, 118, 110, 0.08);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(790px, 100%);
  gap: 1px;
  margin: 44px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.quick-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.quick-stats dt {
  font-size: 1.05rem;
  font-weight: 900;
}

.quick-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  background: var(--ink);
}

.trust-band span,
.trust-band a {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 750;
}

.trust-band a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-hero {
  min-height: auto;
  align-items: end;
  padding-top: 150px;
}

.page-hero .hero-content {
  max-width: 920px;
}

.page-hero h1 {
  max-width: 880px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.page-copy {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.page-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.06);
  font-weight: 800;
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.landing-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(23, 33, 43, 0.08);
}

.landing-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.landing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.review-panel,
.landing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(185, 220, 213, 0.28));
  box-shadow: var(--shadow);
}

.review-panel h2,
.landing-cta h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.02;
}

.review-panel p:not(.eyebrow),
.landing-cta p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.62;
}

.problem-grid,
.services-grid,
.included-grid,
.about-grid,
.promise-grid,
.portfolio-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.included-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-grid {
  grid-template-columns: 1fr 1fr 0.9fr;
}

.promise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-card,
.service-card,
.included-item,
.about-panel,
.promise-card,
.portfolio-card,
.price-card,
.estimator,
.contact-form,
.faq-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(23, 33, 43, 0.08);
}

.problem-card,
.service-card,
.included-item,
.about-panel,
.promise-card,
.portfolio-card,
.price-card {
  padding: 22px;
}

.problem-card h3,
.service-card h3,
.about-panel h3,
.promise-card h3,
.portfolio-card h3,
.price-card h3,
.timeline h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.problem-card p,
.service-card p,
.included-item p,
.about-panel p,
.promise-card p,
.portfolio-card p,
.price-card p,
.timeline p,
.estimate-result span,
.form-status {
  color: var(--muted);
  line-height: 1.62;
}

.card-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.service-card {
  min-height: 172px;
}

.included-section {
  width: 100%;
  max-width: none;
  padding: 78px max(20px, calc((100% - 1120px) / 2));
  background: #fff;
}

.included-item {
  min-height: 190px;
  box-shadow: none;
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
}

.included-item span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal-dark);
  font-weight: 950;
}

.proof-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.proof-strip div {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: #fff;
  font-size: 1.15rem;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.about-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.about-section .section-heading {
  margin-bottom: 0;
}

.about-panel {
  min-height: 220px;
}

.about-panel.accent {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--ink));
}

.about-panel.accent span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}

.about-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  line-height: 1.45;
}

.about-panel li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.promise-section {
  width: 100%;
  max-width: none;
  padding: 78px max(20px, calc((100% - 1120px) / 2));
  background: #fff;
}

.promise-card {
  box-shadow: none;
  background: #f8fbfa;
}

.filter-bar {
  margin-bottom: 20px;
}

.filter {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.filter.active {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  transition: opacity 180ms ease, transform 180ms ease;
}

.portfolio-card.live-project {
  grid-column: span 2;
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: var(--shadow);
}

.portfolio-card.hidden {
  display: none;
}

.site-preview {
  display: grid;
  min-height: 220px;
  align-content: end;
  gap: 8px;
  margin: -8px -8px 18px;
  padding: 18px;
  border-radius: 7px;
  color: #fff;
  overflow: hidden;
}

.site-preview span {
  font-size: 1.25rem;
  font-weight: 900;
}

.site-preview strong {
  font-size: 0.86rem;
  line-height: 1.35;
}

.diner-preview {
  background:
    linear-gradient(135deg, rgba(36, 38, 47, 0.1), rgba(36, 38, 47, 0.8)),
    repeating-linear-gradient(90deg, #d84e39 0 16px, #f7f0e2 16px 32px);
}

.trade-preview {
  background:
    linear-gradient(140deg, rgba(15, 49, 72, 0.18), rgba(15, 49, 72, 0.9)),
    linear-gradient(45deg, #204b64 0 48%, #d8ab47 48% 56%, #e9e9e5 56%);
}

.shop-preview {
  background:
    radial-gradient(circle at 72% 22%, #f9c77f 0 14%, transparent 15%),
    linear-gradient(135deg, #1f2a35 0 38%, #0f766e 38% 70%, #ef7558 70%);
}

.wellness-preview {
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.34) 0 18%, transparent 19%),
    linear-gradient(135deg, #203344, #5d877d 52%, #c9972d);
}

.psychology-preview {
  background:
    linear-gradient(135deg, rgba(23, 33, 43, 0.1), rgba(23, 33, 43, 0.72)),
    linear-gradient(120deg, #f5faf8 0 28%, #b9dcd5 28% 54%, #315f9d 54% 72%, #0f766e 72%);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.project-meta a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.project-badge,
.concept-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-badge {
  color: #fff;
  background: var(--teal);
}

.project-result {
  margin: 6px 0 0;
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  background: rgba(201, 151, 45, 0.12);
  font-weight: 900;
  color: var(--ink) !important;
}

.concept-label {
  margin-bottom: 14px;
  color: var(--muted);
  background: rgba(23, 33, 43, 0.08);
}

.concept-open {
  width: fit-content;
  margin-top: auto;
}

.concept-modal[hidden] {
  display: none;
}

.concept-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.concept-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 21, 27, 0.72);
  backdrop-filter: blur(10px);
}

.concept-dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.concept-toolbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--line);
}

.concept-toolbar h2 {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2.35rem);
  line-height: 1;
}

.modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.concept-browser {
  margin: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  background: #eef2f1;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d84e39;
}

.browser-top span:nth-child(2) {
  background: var(--gold);
}

.browser-top span:nth-child(3) {
  background: var(--teal);
}

.browser-top p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.concept-page {
  background: #fff;
}

.mini-site {
  min-height: 560px;
  color: #fff;
}

.mini-site nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px;
}

.mini-site nav strong {
  font-size: 1.12rem;
}

.mini-site nav span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.mini-site nav button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
}

.mini-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 16px;
  padding: 62px 22px 84px;
  align-items: end;
}

.mini-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  text-transform: uppercase;
}

.mini-hero h3 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.mini-hero button {
  width: fit-content;
  min-height: 46px;
  padding: 12px 16px;
  border: 0;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
}

.mini-hero aside,
.promo-card {
  display: grid;
  gap: 8px;
  min-height: 180px;
  align-content: end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.mini-hero aside span,
.promo-card span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  text-transform: uppercase;
}

.mini-hero aside strong,
.promo-card strong {
  font-size: 1.6rem;
  line-height: 1.1;
}

.mini-hero small,
.mini-split p,
.service-strip p,
.membership-row small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.mini-grid,
.mini-proof,
.product-row,
.schedule-row,
.menu-feature,
.membership-row,
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 22px 22px;
}

.mini-grid div,
.mini-proof div,
.product-row div,
.schedule-row div,
.menu-feature div,
.membership-row div,
.service-strip div {
  min-height: 150px;
  padding: 20px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.14);
}

.mini-grid span,
.schedule-row span,
.product-row span,
.menu-feature span,
.membership-row span,
.service-strip span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.mini-grid strong,
.schedule-row strong,
.menu-feature strong,
.membership-row strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.35;
}

.menu-feature small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.mini-proof strong {
  display: block;
  font-size: 2.6rem;
}

.mini-proof span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.product-row i {
  display: block;
  height: 86px;
  margin-bottom: 16px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
}

.product-row strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
}

.mini-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 0 22px 22px;
}

.mini-split div {
  min-height: 170px;
  padding: 22px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-split h4 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.mini-split p {
  margin: 0;
}

.mini-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.mini-form input,
.mini-form select {
  min-height: 42px;
  border: 1px solid rgba(23, 33, 43, 0.16);
  border-radius: 7px;
  padding: 10px;
}

.mini-form button {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.service-strip span {
  color: #fff;
  font-size: 1.1rem;
}

.service-strip p {
  margin: 0;
}

.mini-restaurant {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.2) 0 12%, transparent 13%),
    linear-gradient(135deg, rgba(49, 33, 28, 0.22), rgba(49, 33, 28, 0.94)),
    linear-gradient(120deg, #8b2e24, #c9972d 52%, #203344);
}

.mini-contractor {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 20%, transparent 20% 40%, rgba(255, 255, 255, 0.06) 40% 58%, transparent 58%),
    linear-gradient(135deg, rgba(15, 49, 72, 0.18), rgba(15, 49, 72, 0.96)),
    linear-gradient(120deg, #315f9d, #c9972d 48%, #17212b);
}

.mini-retail {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.28) 0 16%, transparent 17%),
    linear-gradient(135deg, rgba(23, 33, 43, 0.2), rgba(23, 33, 43, 0.86)),
    linear-gradient(120deg, #0f766e, #e95f45 55%, #f4c96e);
}

.mini-fitness {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 88px),
    linear-gradient(135deg, rgba(23, 33, 43, 0.2), rgba(23, 33, 43, 0.88)),
    linear-gradient(120deg, #203344, #0f766e 45%, #315f9d);
}

.billing-toggle {
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 800;
}

.pricing-note {
  max-width: 680px;
  margin: -8px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.switch {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 32px;
}

.switch input {
  opacity: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(23, 33, 43, 0.16);
  cursor: pointer;
}

.switch span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(23, 33, 43, 0.24);
  transition: transform 180ms ease;
}

.switch input:checked + span {
  background: var(--teal);
}

.switch input:checked + span::before {
  transform: translateX(28px);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card.featured {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: var(--shadow);
}

.plan {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.price-card .button {
  margin-top: auto;
}

.estimator {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  padding: 24px;
}

.estimator-controls {
  display: grid;
  gap: 20px;
}

.estimator label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

input[type="range"] {
  padding: 0;
  accent-color: var(--teal);
}

output {
  color: var(--teal-dark);
  font-weight: 900;
}

.checks {
  display: grid;
  gap: 8px;
}

.checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.checks input {
  width: auto;
}

.estimate-result {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 260px;
  padding: 26px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.9), rgba(23, 33, 43, 0.95)),
    linear-gradient(45deg, var(--coral), var(--gold));
}

.estimate-result p,
.estimate-result span {
  color: rgba(255, 255, 255, 0.76);
}

.estimate-result strong {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  min-height: 240px;
  padding: 22px;
  border-top: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.6);
}

.timeline span {
  display: block;
  margin-bottom: 34px;
  color: var(--coral);
  font-weight: 950;
}

.faq-list {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}

.faq-question span {
  font-size: 1.4rem;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
  background: #fff;
}

.faq-answer.open {
  display: block;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.privacy-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 38px 24px 44px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
  text-align: center;
}

.site-footer .brand {
  color: #fff;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  max-width: 760px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer > a:last-child {
  color: #fff;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .split-section,
  .about-section,
  .contact-section,
  .page-intro,
  .estimator {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .services-grid,
  .included-grid,
  .about-grid,
  .promise-grid,
  .pricing-grid,
  .portfolio-grid,
  .landing-card-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-panel,
  .landing-cta {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .portfolio-card.live-project {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 1120px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 10px;
    left: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 15px;
  }

  .hero {
    min-height: 96svh;
    padding: 112px 18px 24px;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(11, 21, 27, 0.9), rgba(11, 21, 27, 0.42)),
      linear-gradient(90deg, rgba(11, 21, 27, 0.82), rgba(11, 21, 27, 0.24));
  }

  .quick-stats,
  .problem-grid,
  .services-grid,
  .included-grid,
  .about-grid,
  .promise-grid,
  .pricing-grid,
  .portfolio-grid,
  .landing-card-grid,
  .timeline,
  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .review-panel,
  .landing-cta {
    padding: 22px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 62px 0;
  }

  .site-preview {
    min-height: 190px;
  }

  .estimate-result {
    min-height: 210px;
  }

  .portfolio-card.live-project {
    grid-column: span 1;
  }

  .concept-modal {
    padding: 12px;
  }

  .concept-dialog {
    max-height: calc(100svh - 24px);
  }

  .concept-browser {
    margin: 12px;
  }

  .mini-grid,
  .mini-proof,
  .product-row,
  .schedule-row,
  .menu-feature,
  .membership-row,
  .service-strip,
  .mini-split,
  .mini-hero {
    grid-template-columns: 1fr;
  }

  .mini-hero {
    padding: 42px 18px 56px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
