:root {
  --ink: #19201f;
  --muted: #60706b;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: #ded8ce;
  --teal: #1f736b;
  --teal-dark: #174f4b;
  --gold: #c98a2f;
  --sage: #dce9df;
  --shadow: 0 24px 70px rgba(25, 32, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  padding: 10px clamp(20px, 5vw, 64px);
  color: var(--ink);
  background: rgba(247, 244, 238, 0.86);
  border-bottom: 1px solid rgba(25, 32, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-call {
  position: relative;
  z-index: 1;
}

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

.brand-mark {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-name {
  width: auto;
  height: 43px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a,
.header-call {
  text-decoration: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(23, 79, 75, 0.9);
  border-radius: 8px;
  font-weight: 800;
  background: var(--teal-dark);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(23, 79, 75, 0.24);
}

.header-call svg {
  width: 17px;
  height: 17px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-call span {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 0.95rem;
  white-space: nowrap;
}

.hero {
  aspect-ratio: 1672 / 941;
  width: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  background: #f7f1e8;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(247, 241, 232, 0.72) 0%, rgba(247, 241, 232, 0.5) 31%, rgba(247, 241, 232, 0) 50%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 10%;
  left: 3.4%;
  z-index: 2;
  width: 100%;
  max-width: 36%;
  margin-left: 0;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 15px;
  font-size: clamp(2.1rem, 4.15vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 100%;
  color: #384642;
  font-size: clamp(0.88rem, 1.1vw, 1.22rem);
  line-height: 1.52;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.primary,
.strong {
  background: var(--gold);
  color: #1f170d;
}

.secondary {
  border: 1px solid #111716;
  color: #ffffff;
  background: #111716;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.35vw, 18px);
  max-width: min(300px, 32vw);
  margin-top: 28px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 128px;
  min-width: 112px;
}

.trust-row svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(67vw, 1080px);
  min-height: clamp(520px, 46vw, 690px);
  margin: 0 -6vw 0 -1vw;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14)),
    radial-gradient(circle at 50% 100%, rgba(25, 32, 31, 0.15), rgba(25, 32, 31, 0) 34%);
  box-shadow: 0 36px 90px rgba(25, 32, 31, 0.14);
}

.device {
  position: absolute;
  color: #101817;
  background: #101817;
  box-shadow: 0 28px 58px rgba(25, 32, 31, 0.22);
}

.desktop-demo {
  top: 7%;
  right: 5%;
  width: 76%;
  padding: 15px 15px 34px;
  border-radius: 16px 16px 7px 7px;
}

.desktop-demo::after {
  content: "";
  position: absolute;
  left: 42%;
  bottom: -92px;
  width: 16%;
  height: 92px;
  background: linear-gradient(90deg, #bcb7ad, #eee9df 50%, #aca69c);
  clip-path: polygon(27% 0, 73% 0, 100% 100%, 0 100%);
}

.desktop-demo::before {
  content: "";
  position: absolute;
  left: 28%;
  bottom: -112px;
  width: 44%;
  height: 22px;
  border-radius: 50%;
  background: rgba(25, 32, 31, 0.22);
  filter: blur(8px);
}

.tablet-demo {
  left: 6%;
  bottom: 5%;
  width: 38%;
  padding: 12px;
  border-radius: 18px;
  transform: rotate(-2.4deg);
}

.phone-demo {
  right: 2%;
  bottom: 2%;
  width: 19%;
  min-width: 160px;
  padding: 10px;
  border-radius: 24px;
  transform: rotate(1.4deg);
}

.demo-browser {
  overflow: hidden;
  border-radius: 7px;
  background: #ffffff;
}

.phone-demo .demo-browser {
  border-radius: 18px;
}

.demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 13px 18px;
  background: #f7f8f7;
  font-size: clamp(0.43rem, 0.58vw, 0.68rem);
  font-weight: 800;
  text-transform: uppercase;
}

.demo-topbar.compact {
  min-height: 38px;
  padding: 8px 12px;
  font-size: clamp(0.34rem, 0.5vw, 0.52rem);
}

.demo-topbar nav {
  display: flex;
  gap: clamp(10px, 1.3vw, 24px);
}

.demo-logo {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 7px;
  align-items: center;
  min-width: 132px;
  text-transform: none;
}

.demo-logo strong {
  display: block;
  font-size: clamp(0.72rem, 1.1vw, 1.05rem);
  line-height: 0.9;
}

.demo-logo small {
  grid-column: 2;
  color: #4d5b58;
  font-size: clamp(0.38rem, 0.56vw, 0.62rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compact .demo-logo {
  min-width: 92px;
  column-gap: 5px;
}

.compact .demo-logo strong {
  font-size: clamp(0.48rem, 0.78vw, 0.68rem);
}

.compact .demo-logo small {
  font-size: clamp(0.28rem, 0.43vw, 0.4rem);
}

.logo-symbol {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #ffffff;
  background: #235c86;
  font-weight: 900;
}

.compact .logo-symbol {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.paint-logo .logo-symbol {
  background: #5f8c36;
}

.landscape-logo .logo-symbol {
  background: #4d812f;
}

.demo-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 8px 13px;
  border-radius: 5px;
  color: #ffffff;
  background: #1d5a9e;
  white-space: nowrap;
}

.demo-call.green {
  background: #4d812f;
}

.demo-hero {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
  padding: 36px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.demo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 21, 0.82), rgba(7, 16, 21, 0.28) 60%, rgba(7, 16, 21, 0));
}

.demo-hero > div {
  position: relative;
  max-width: 280px;
}

.demo-hero h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(1.2rem, 2.1vw, 2.4rem);
  line-height: 1.02;
}

.demo-hero p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.58rem, 0.9vw, 0.9rem);
  line-height: 1.45;
}

.demo-hero span {
  display: inline-flex;
  padding: 11px 16px;
  border-radius: 5px;
  background: #1d5a9e;
  font-size: clamp(0.55rem, 0.9vw, 0.84rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hvac-photo {
  background-image:
    linear-gradient(90deg, rgba(12, 24, 31, 0.5), rgba(12, 24, 31, 0)),
    url("assets/collvate-hero.png");
  background-position: 62% center;
}

.paint-photo {
  min-height: 168px;
  padding: 28px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    url("assets/collvate-examples.png");
  background-position: 23% 42%;
  color: #111716;
}

.paint-photo::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08));
}

.paint-photo h3,
.paint-photo p {
  color: #111716;
}

.paint-photo span,
.lawn-photo span {
  background: #4d812f;
}

.lawn-photo {
  min-height: 190px;
  padding: 20px;
  background-image:
    linear-gradient(90deg, rgba(9, 35, 19, 0.68), rgba(9, 35, 19, 0.1)),
    url("assets/collvate-examples.png");
  background-position: 88% 42%;
}

.lawn-photo h3 {
  font-size: clamp(0.86rem, 1.35vw, 1.12rem);
}

.lawn-photo p {
  font-size: clamp(0.48rem, 0.72vw, 0.64rem);
}

.demo-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 20px;
  background: #f8f8f6;
}

.demo-services div {
  min-height: 94px;
  padding: 15px;
  border: 1px solid rgba(25, 32, 31, 0.08);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(25, 32, 31, 0.05);
}

.demo-services b {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(0.54rem, 0.82vw, 0.78rem);
}

.demo-services p {
  margin: 0;
  color: #465450;
  font-size: clamp(0.42rem, 0.62vw, 0.62rem);
  line-height: 1.35;
}

.demo-services.three {
  gap: 0;
  padding: 0;
}

.demo-services.three div {
  min-height: 92px;
  border-top: 0;
  border-left: 0;
  box-shadow: none;
}

.demo-browser h4 {
  margin: 0;
  padding: 18px 24px 10px;
  font-size: clamp(0.82rem, 1vw, 1.05rem);
}

.demo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 24px 24px;
}

.demo-gallery span {
  min-height: 64px;
  border-radius: 5px;
  background-image: url("assets/collvate-examples.png");
  background-size: 260%;
}

.demo-gallery span:nth-child(1) {
  background-position: 35% 78%;
}

.demo-gallery span:nth-child(2) {
  background-position: 62% 78%;
}

.demo-gallery span:nth-child(3) {
  background-position: 82% 78%;
}

.phone-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8ede5;
}

.phone-services span {
  padding: 15px 6px;
  background: #ffffff;
  color: #3f4e49;
  font-size: clamp(0.36rem, 0.58vw, 0.52rem);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(36px, 6vw, 80px);
  background: #ffffff;
}

.intro h2,
.examples h2,
.care h2,
.contact h2 {
  margin-bottom: 0;
}

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

.intro-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--sage);
}

.mini-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-grid p,
.examples-copy p,
.price-note,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.examples {
  padding-inline: clamp(12px, 3vw, 36px);
  background: #edf3ee;
}

.examples-copy {
  max-width: 860px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.examples-copy .eyebrow {
  color: var(--gold);
}

.examples-copy h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.examples-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.portfolio-grid {
  display: grid;
  gap: 20px;
  width: 100%;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid rgba(31, 115, 107, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 76px rgba(25, 32, 31, 0.18);
}

.portfolio-preview {
  display: grid;
  position: relative;
  color: inherit;
  text-decoration: none;
  background: #f5f1e8;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(25, 32, 31, 0.08);
  background: #ffffff;
}

.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.browser-bar i:nth-child(1) {
  background: #e66f5f;
}

.browser-bar i:nth-child(2) {
  background: #e8b84f;
}

.browser-bar i:nth-child(3) {
  background: #67b978;
}

.portfolio-preview img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.portfolio-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 3vw, 28px);
  border-top: 1px solid rgba(25, 32, 31, 0.08);
  background: #ffffff;
}

.portfolio-action p {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-action h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.portfolio-button {
  min-height: 44px;
  white-space: nowrap;
  color: #ffffff;
  background: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(23, 79, 75, 0.18);
}

.pricing {
  background: var(--paper);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.pricing-proof {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  margin: 22px 0 0;
  padding: 16px 20px;
  border: 1px solid rgba(31, 115, 107, 0.24);
  border-left: 6px solid var(--teal-dark);
  border-radius: 8px;
  color: var(--teal-dark);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(25, 32, 31, 0.08);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 900;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(25, 32, 31, 0.06);
}

.price-card.featured {
  border-color: rgba(31, 115, 107, 0.42);
  background: #f8fffb;
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: -1px;
  right: 18px;
  margin: 0;
  padding: 9px 13px;
  border-radius: 0 0 8px 8px;
  color: #1f170d;
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(201, 138, 47, 0.22);
}

.price {
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
  color: var(--teal-dark);
}

.price-card ul,
.care-panel ul {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card li,
.care-panel li {
  position: relative;
  padding-left: 28px;
  color: #31403c;
  font-weight: 600;
}

.price-card li::before,
.care-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.card-button {
  width: 100%;
  border: 1px solid rgba(23, 79, 75, 0.32);
  color: var(--teal-dark);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(23, 79, 75, 0.06);
}

.card-button.strong {
  border-color: var(--teal-dark);
  color: #ffffff;
  background: var(--teal-dark);
  box-shadow: 0 12px 26px rgba(23, 79, 75, 0.18);
}

.care {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 185, 103, 0.18), rgba(240, 185, 103, 0) 22%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #123f3c 0%, var(--teal-dark) 58%, #0f3634 100%);
}

.care .eyebrow {
  color: #f0b967;
}

.care-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.care-panel {
  display: grid;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.care-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.care-option {
  position: relative;
  min-height: 190px;
  padding: 42px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.care-option.featured {
  border-color: rgba(240, 185, 103, 0.75);
  background: rgba(240, 185, 103, 0.12);
}

.option-banner {
  position: absolute;
  top: -1px;
  right: 14px;
  padding: 8px 11px;
  border-radius: 0 0 8px 8px;
  color: #1f170d;
  background: #f0b967;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.option-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.care-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: clamp(2.35rem, 4.2vw, 3.7rem);
  line-height: 1;
  font-weight: 800;
}

.care-price span {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  transform: translateY(-0.12em);
}

.care-panel li {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.care-panel ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 0;
}

.contact {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: #ffffff;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-copy p:last-child {
  max-width: 620px;
}

.contact-actions {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #111716;
}

.footer p {
  margin: 0;
}

.footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1400px) and (min-width: 981px) {
  .trust-row {
    max-width: 280px;
  }
}

@media (max-width: 1200px) and (min-width: 981px) {
  .intro {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid article {
    position: relative;
    min-height: 150px;
    padding: 30px 30px 30px 132px;
  }

  .intro-grid .mini-icon {
    position: absolute;
    top: 50%;
    left: 30px;
    width: 76px;
    height: 76px;
    margin-bottom: 0;
    transform: translateY(-50%);
  }

  .intro-grid .mini-icon svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    top: 6.8%;
    left: 5.2%;
    max-width: 35%;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(247, 241, 232, 0.86) 0%, rgba(247, 241, 232, 0.7) 34%, rgba(247, 241, 232, 0) 50%);
  }

  h1 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 4.7vw, 2.8rem);
  }

  .hero-copy {
    max-width: 100%;
    font-size: clamp(0.72rem, 1.55vw, 0.92rem);
    line-height: 1.35;
  }

  .button {
    min-height: 42px;
    padding: 11px 18px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 18px;
  }

  .trust-row {
    gap: 10px;
    max-width: 100%;
    margin-top: 18px;
    font-size: 0.76rem;
  }

  .trust-row span {
    flex-basis: auto;
    gap: 6px;
    min-width: 88px;
  }

  .trust-row svg {
    width: 26px;
    height: 26px;
  }

  .intro,
  .examples,
  .care,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid article {
    position: relative;
    min-height: 170px;
    padding: 32px 28px 32px 160px;
  }

  .intro-grid .mini-icon {
    position: absolute;
    top: 50%;
    left: 34px;
    width: 92px;
    height: 92px;
    margin-bottom: 0;
    transform: translateY(-50%);
    opacity: 0.92;
  }

  .intro-grid .mini-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.45;
  }

  .price-card {
    min-height: auto;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact::before {
    width: min(58vw, 420px);
    opacity: 0.34;
  }
}

@media (max-width: 980px) {
  .hero {
    display: grid;
    aspect-ratio: auto;
    min-height: 0;
    padding: 34px clamp(20px, 5vw, 44px) 0;
    background: #f7f1e8;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    position: relative;
    order: 1;
    top: auto;
    left: auto;
    right: auto;
    max-width: 620px;
  }

  .hero-image {
    position: relative;
    order: 2;
    inset: auto;
    z-index: 0;
    width: calc(100% + clamp(40px, 10vw, 88px));
    height: auto;
    max-width: none;
    margin: 30px calc(clamp(20px, 5vw, 44px) * -1) 0;
    object-fit: contain;
  }

  h1 {
    max-width: 620px;
    font-size: clamp(3rem, 8vw, 4.8rem);
  }

  .hero-copy {
    max-width: 620px;
    font-size: 1rem;
  }

  .trust-row {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .site-header {
    flex-wrap: wrap;
    min-height: 70px;
    gap: 10px 14px;
    padding: 10px 16px 12px;
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    height: 31px;
  }

  .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding-top: 2px;
    font-size: 0.82rem;
  }

  .header-call {
    flex: 0 0 auto;
    padding: 9px 10px;
    font-size: 0.82rem;
  }

  .header-call span {
    display: none;
  }

  .header-call strong {
    font-size: 0.82rem;
  }

  .hero {
    min-height: 0;
    padding: 28px 16px 0;
  }

  .hero::before {
    display: none;
  }

  .hero-image {
    width: calc(100% + 32px);
    height: auto;
    object-fit: contain;
    object-position: center center;
    margin: 26px -16px 0;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    max-width: none;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.7rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    max-width: 430px;
    font-size: 0.76rem;
  }

  .trust-row span {
    flex-basis: auto;
    min-width: 108px;
    gap: 6px;
  }

  .trust-row svg {
    width: 24px;
    height: 24px;
  }

  .intro-grid article {
    min-height: auto;
    padding: 22px;
  }

  .intro-grid .mini-icon {
    position: static;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    transform: none;
  }

  .intro-grid .mini-icon svg {
    width: 38px;
    height: 38px;
    stroke-width: 1.5;
  }

  .section {
    padding: 66px 16px;
  }

  .examples {
    padding-inline: 0;
  }

  .examples-copy {
    margin-inline: 16px;
  }

  .portfolio-card {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .portfolio-action {
    align-items: stretch;
    flex-direction: column;
  }

  .portfolio-button {
    width: 100%;
  }

  .intro-grid article,
  .price-card,
  .care-panel,
  .contact-card {
    padding: 22px;
  }

  .care-options,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 9px 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    height: 27px;
  }

  .header-call {
    gap: 7px;
    padding: 8px 9px;
  }

  .header-call svg {
    width: 15px;
    height: 15px;
  }

  .header-call strong {
    font-size: 0.78rem;
  }

  .nav-links {
    font-size: 0.78rem;
  }
}
