:root {
  color-scheme: dark;
  --ink: #f7f5ef;
  --muted: #c7d1c7;
  --dim: #819186;
  --paper: #f4fff8;
  --charcoal: #07110d;
  --cedar: #0b1711;
  --panel: #0f1c16;
  --panel-2: #14261d;
  --moss: #5ddc91;
  --teal: #047857;
  --teal-bright: #34f5a4;
  --gold: #b8f06a;
  --coral: #76e4f7;
  --wine: #14532d;
  --line: rgba(247, 245, 239, 0.16);
  --line-strong: rgba(247, 245, 239, 0.26);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(7, 17, 13, 0.98), rgba(9, 32, 22, 0.96) 44%, rgba(7, 17, 13, 1)),
    var(--charcoal);
  color: var(--ink);
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 13, 0.78);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto auto;
  left: 0;
  min-height: 66px;
  padding: 12px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(52, 245, 164, 0.98), rgba(184, 240, 106, 0.95)),
    var(--teal-bright);
  border-radius: 7px;
  color: #071110;
  display: inline-flex;
  flex: 0 0 34px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: center;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--ink);
}

.header-cta,
.primary-btn,
.secondary-btn,
.menu-toggle {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
}

.header-cta,
.primary-btn {
  background: linear-gradient(135deg, var(--paper), #bff8d8);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(52, 245, 164, 0.22);
  color: #101410;
  min-height: 46px;
  padding: 0 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.secondary-btn {
  background: rgba(247, 245, 239, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 0 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.primary-btn:hover {
  box-shadow: 0 16px 44px rgba(52, 245, 164, 0.28);
}

.secondary-btn:hover {
  background: rgba(247, 245, 239, 0.12);
  border-color: var(--line-strong);
}

.header-cta svg,
.primary-btn svg,
.secondary-btn svg,
.menu-toggle svg,
article svg,
.quote svg {
  height: 18px;
  width: 18px;
}

.menu-toggle {
  background: rgba(247, 245, 239, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: none;
  height: 44px;
  width: 44px;
}

.mobile-nav {
  background: rgba(7, 17, 13, 0.96);
  border-bottom: 1px solid var(--line);
  display: none;
  gap: 18px;
  left: 0;
  padding: 92px 24px 24px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.hero {
  display: grid;
  min-height: 720px;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 76px) 42px;
  place-items: center start;
  position: relative;
}

.hero-media,
.hero-media img,
.hero-shade {
  inset: 0;
  position: absolute;
}

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

.hero-shade {
  background:
    radial-gradient(circle at 78% 28%, rgba(52, 245, 164, 0.28), transparent 31%),
    radial-gradient(circle at 48% 78%, rgba(118, 228, 247, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(7, 17, 13, 0.96) 0%, rgba(7, 17, 13, 0.74) 38%, rgba(7, 17, 13, 0.1) 80%),
    linear-gradient(0deg, rgba(7, 17, 13, 0.88) 0%, rgba(7, 17, 13, 0.02) 42%);
}

.hero-content {
  max-width: 820px;
  position: relative;
  width: min(100%, 840px);
  z-index: 1;
}

.eyebrow {
  color: var(--teal-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.hero .eyebrow::before {
  background: var(--teal-bright);
  content: "";
  display: inline-block;
  height: 1px;
  width: 42px;
}

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

h1 {
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-family: Sora, Manrope, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 20px;
  max-width: 880px;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.55;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  max-width: 760px;
  padding-top: 18px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--paper);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 5px;
}

.included-strip {
  align-items: center;
  background: rgba(247, 245, 239, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  max-width: 840px;
  padding: 9px;
}

.included-strip span {
  align-items: center;
  background: rgba(52, 245, 164, 0.08);
  border: 1px solid rgba(52, 245, 164, 0.18);
  border-radius: 7px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 6px;
  min-height: 32px;
  padding: 0 9px;
}

.included-strip svg {
  color: var(--teal-bright);
  height: 15px;
  width: 15px;
}

.proof-band {
  background: linear-gradient(90deg, var(--paper), #d8ffe7);
  color: #141713;
  display: grid;
  font-size: 0.88rem;
  font-weight: 900;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 14px clamp(18px, 5vw, 76px);
  text-align: center;
}

.standards-section {
  background: #f4fff8;
  border-bottom: 1px solid rgba(7, 17, 13, 0.1);
  color: #07110d;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(18px, 5vw, 76px) 32px;
}

.standards-section div {
  background: linear-gradient(180deg, #ffffff, #eafff2);
  border: 1px solid rgba(7, 17, 13, 0.1);
  border-radius: 8px;
  min-height: 156px;
  padding: 22px;
}

.standards-section span {
  color: var(--teal);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.standards-section strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.standards-section p {
  color: #405248;
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

.section {
  padding: clamp(46px, 6vw, 74px) clamp(18px, 5vw, 76px);
}

.section-heading {
  display: block;
  margin-bottom: 22px;
  max-width: 880px;
}

.intro-section {
  padding-top: clamp(42px, 5vw, 64px);
}

.intro-section .section-heading {
  margin-bottom: 20px;
  max-width: 930px;
}

.intro-section .section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  line-height: 1.08;
  max-width: 860px;
}

.section-heading h2,
.quote-panel h2 {
  font-family: Sora, Manrope, Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 0;
}

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

.intro-grid {
  gap: 12px;
}

.intro-grid article,
.price-card {
  background:
    linear-gradient(180deg, rgba(52, 245, 164, 0.07), rgba(247, 245, 239, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-height: 220px;
  padding: 24px;
  position: relative;
}

.intro-grid article {
  min-height: 174px;
  padding: 20px;
}

.intro-grid article::after,
.price-card::after {
  background: linear-gradient(90deg, var(--teal-bright), var(--gold), var(--coral));
  content: "";
  height: 3px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.intro-grid svg,
.service-list svg {
  color: var(--gold);
}

.intro-grid h3,
.service-list h3,
.price-card h3,
.case-copy h3,
.timeline h3 {
  font-family: Sora, Manrope, Arial, sans-serif;
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.intro-grid h3 {
  font-size: 1.05rem;
}

.intro-grid p,
.service-list p,
.price-card p,
.case-copy p,
.timeline p,
.quote-panel p,
.site-footer {
  color: var(--muted);
  line-height: 1.55;
}

.work-section,
.pricing-section {
  background:
    linear-gradient(135deg, rgba(52, 245, 164, 0.12), transparent 38%),
    linear-gradient(180deg, #08150f, #0f1f17);
}

.work-section {
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(50px, 7vw, 82px);
}

.services-section,
.pricing-section,
.process-section,
.handoff-section {
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.work-section .section-heading {
  margin-bottom: 22px;
  max-width: 840px;
}

.case-study {
  align-items: center;
  display: grid;
  gap: clamp(22px, 3.5vw, 42px);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.case-copy .eyebrow {
  margin-bottom: 10px;
}

.case-copy h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.14;
}

.case-copy p {
  max-width: 560px;
}

.browser-frame {
  background: #0c0f0d;
  border: 1px solid rgba(247, 245, 239, 0.22);
  border-radius: 8px;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(52, 245, 164, 0.08);
  overflow: hidden;
  transform: perspective(1200px) rotateY(3deg) rotateX(1deg);
  transform-origin: center;
}

.browser-bar {
  align-items: center;
  background: linear-gradient(90deg, #20261f, #151a17);
  display: flex;
  gap: 7px;
  height: 38px;
  padding-left: 16px;
}

.browser-bar span {
  background: var(--dim);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.mock-site {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(120deg, rgba(4, 120, 87, 0.38), transparent 42%),
    linear-gradient(160deg, rgba(52, 245, 164, 0.34), transparent 45%),
    #f4fff8;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.1fr 0.9fr;
  padding: clamp(18px, 4vw, 46px);
}

.mock-hero {
  background:
    linear-gradient(145deg, rgba(4, 120, 87, 0.74), rgba(7, 17, 13, 0.96)),
    #111513;
  border-radius: 8px;
  grid-row: span 2;
}

.mock-lines,
.mock-grid {
  display: grid;
  gap: 12px;
}

.mock-lines span,
.mock-grid span {
  background: rgba(7, 17, 13, 0.18);
  border-radius: 8px;
}

.mock-lines span {
  height: 24px;
}

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

.mock-grid span {
  min-height: 110px;
}

.quote {
  align-items: center;
  background: rgba(52, 245, 164, 0.11);
  border: 1px solid rgba(52, 245, 164, 0.3);
  border-radius: 8px;
  color: var(--paper);
  display: flex;
  gap: 12px;
  margin-top: 22px;
  padding: 16px;
}

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

.service-list article {
  align-items: flex-start;
  background:
    linear-gradient(180deg, rgba(52, 245, 164, 0.055), rgba(247, 245, 239, 0.018)),
    rgba(247, 245, 239, 0.02);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 18px;
  min-height: 146px;
  padding: 22px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-list article:hover,
.intro-grid article:hover,
.price-card:hover {
  border-color: rgba(52, 245, 164, 0.34);
  transform: translateY(-2px);
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-tag {
  align-self: flex-start;
  background: rgba(251, 247, 237, 0.12);
  border: 1px solid rgba(251, 247, 237, 0.22);
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  padding: 7px 11px;
  text-transform: uppercase;
}

.price-card.featured {
  background:
    linear-gradient(145deg, rgba(4, 120, 87, 0.5), rgba(52, 245, 164, 0.12) 58%, rgba(15, 28, 22, 0.96)),
    var(--panel);
  border-color: rgba(52, 245, 164, 0.44);
  box-shadow:
    0 24px 80px rgba(52, 245, 164, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
}

.price-card ul {
  color: var(--muted);
  line-height: 1.72;
  margin: 18px 0 0;
  padding-left: 20px;
}

.timeline {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline div {
  background:
    linear-gradient(180deg, rgba(52, 245, 164, 0.052), rgba(247, 245, 239, 0.018)),
    var(--panel);
  border: 1px solid var(--line);
  min-height: 188px;
  padding: 24px;
}

.timeline span {
  color: var(--teal-bright);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.handoff-section {
  background:
    linear-gradient(135deg, rgba(52, 245, 164, 0.08), transparent 40%),
    #0b1510;
}

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

.handoff-layout article {
  background:
    linear-gradient(180deg, rgba(52, 245, 164, 0.06), rgba(247, 245, 239, 0.018)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 210px;
  padding: 24px;
}

.handoff-layout svg {
  color: var(--teal-bright);
  margin-bottom: 26px;
}

.handoff-layout h3 {
  font-family: Sora, Manrope, Arial, sans-serif;
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.handoff-layout p {
  color: var(--muted);
  line-height: 1.55;
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(52, 245, 164, 0.16), transparent 32%),
    linear-gradient(90deg, var(--paper), #d8ffe7);
  color: #111513;
  padding: clamp(48px, 6vw, 78px) clamp(18px, 5vw, 76px);
}

.quote-section .eyebrow {
  color: var(--teal);
}

.quote-panel {
  align-items: start;
  display: grid;
  gap: clamp(26px, 4vw, 52px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1fr);
}

.quote-panel p {
  color: #4b5049;
  font-size: 1.05rem;
}

.quote-form {
  background: #ffffff;
  border: 1px solid rgba(17, 21, 19, 0.12);
  border-radius: 8px;
  box-shadow:
    0 20px 70px rgba(17, 21, 19, 0.14),
    0 0 0 6px rgba(52, 245, 164, 0.08);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 22px;
}

.quote-form label {
  color: #2b302a;
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 8px;
}

.quote-form .full-field,
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form label:has(textarea) {
  grid-column: 1 / -1;
}

.color-field {
  border: 0;
  margin: 0;
  padding: 0;
}

.color-field legend {
  color: #2b302a;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.color-field legend span {
  color: #69736a;
  font-weight: 700;
  margin-left: 6px;
}

.spectrum-picker {
  background: #f5f2ea;
  border: 1px solid rgba(17, 21, 19, 0.12);
  border-radius: 7px;
  display: grid;
  gap: 10px;
  padding: 11px;
}

.spectrum-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 52px 1fr;
}

.color-input {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 42px;
  padding: 0;
  width: 52px;
}

.add-color-btn {
  background: #111513;
  border: 0;
  border-radius: 7px;
  color: var(--paper);
  cursor: pointer;
  font-weight: 900;
}

.spectrum-bar {
  background: linear-gradient(90deg, #ef4444, #f97316, #facc15, #22c55e, #06b6d4, #3b82f6, #8b5cf6, #ec4899, #ef4444);
  border-radius: 999px;
  height: 9px;
}

.selected-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 32px;
}

.selected-color {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(17, 21, 19, 0.12);
  border-radius: 999px;
  color: #111513;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px 0 7px;
}

.selected-color::before {
  background: var(--selected-color);
  border: 1px solid rgba(17, 21, 19, 0.18);
  border-radius: 999px;
  content: "";
  height: 16px;
  width: 16px;
}

.selected-color button {
  background: transparent;
  border: 0;
  color: #69736a;
  cursor: pointer;
  font-weight: 900;
  padding: 0;
}

.empty-color-note {
  color: #69736a;
  font-size: 0.84rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: #f5f2ea;
  border: 1px solid rgba(17, 21, 19, 0.12);
  border-radius: 7px;
  color: #111513;
  min-height: 44px;
  padding: 11px 12px;
  resize: vertical;
  width: 100%;
}

.quote-form .primary-btn {
  background: #111513;
  color: var(--paper);
  margin-top: 4px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 76px);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 78% 18%, rgba(52, 245, 164, 0.18), transparent 36%),
      linear-gradient(90deg, rgba(7, 17, 13, 0.96) 0%, rgba(7, 17, 13, 0.72) 100%),
      linear-gradient(0deg, rgba(7, 17, 13, 0.9), rgba(7, 17, 13, 0.12));
  }

  .proof-band,
  .standards-section,
  .intro-grid,
  .pricing-grid,
  .timeline,
  .service-list,
  .handoff-layout,
  .case-study,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    max-width: 760px;
  }

  .proof-band {
    text-align: left;
  }

  .standards-section {
    padding-bottom: 18px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
  }

  .hero-stats strong {
    font-size: 1rem;
  }

  .hero-stats span {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .mock-site {
    grid-template-columns: 1fr;
  }

  .mock-hero {
    min-height: 180px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .section,
  .services-section,
  .pricing-section,
  .process-section,
  .work-section,
  .quote-section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading h2,
  .intro-section .section-heading h2,
  .quote-panel h2 {
    font-size: clamp(1.65rem, 7.5vw, 2.2rem);
  }

  .brand span:last-child {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2.28rem, 10.8vw, 3.05rem);
    line-height: 1;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 26px;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.48;
  }

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

  .hero-stats {
    margin-top: 22px;
    padding-top: 14px;
  }

  .included-strip {
    margin-top: 16px;
    gap: 7px;
    padding: 8px;
  }

  .included-strip span {
    flex: 1 1 calc(50% - 7px);
    font-size: 0.78rem;
    justify-content: center;
    min-height: 32px;
    padding: 0 7px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions a,
  .quote-form .primary-btn {
    width: 100%;
  }

  .intro-grid article,
  .standards-section div,
  .price-card,
  .service-list article,
  .timeline div,
  .handoff-layout article,
  .quote-form {
    padding: 18px;
  }
}
