:root {
  --ink: #061423;
  --ink-soft: #10243d;
  --sky: #1b84ff;
  --aqua: #76efff;
  --mist: #f4f8fc;
  --mist-strong: #deedf9;
  --sand: #dcc3a9;
  --leaf: #86d3a9;
  --line: rgba(7, 22, 38, 0.1);
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 80px rgba(6, 20, 35, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(118, 239, 255, 0.55), transparent 28%),
    radial-gradient(circle at 10% 18%, rgba(27, 132, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #edf4fb 55%, #f7fbff 100%);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    linear-gradient(rgba(7, 22, 38, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 22, 38, 0.03) 1px, transparent 1px);
  background-size: auto, 90px 90px, 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 80%);
}

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

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

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

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button {
  cursor: pointer;
}

.page-shell {
  overflow: clip;
}

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 16px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px);
  box-shadow:
    0 18px 56px rgba(6, 20, 35, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  object-fit: contain;
}

.brand-copy strong,
.header-cta,
.eyebrow,
.viewer-kicker,
.spec-kicker,
.surface-card span,
.story-copy p,
.success-tag {
  font-family: "Space Grotesk", sans-serif;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.site-nav a,
.header-cta {
  font-size: 1rem;
  font-weight: 800;
}

.site-nav a {
  color: rgba(6, 20, 35, 0.68);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--ink);
}

.header-cta {
  padding: 13px 22px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--ink), #12355e);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
  align-items: center;
  padding: 56px 0 34px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(242, 247, 252, 0.92) 42%, rgba(233, 244, 251, 0.78) 100%),
    url("assets/backgrounds/pressure-washing-bg.jpg") center center / cover no-repeat;
  opacity: 0.82;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(118, 239, 255, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.desktop-main,
.desktop-main-copy,
.desktop-main-image {
  min-width: 0;
}

.hero-copy,
.hero-visual,
.section-heading,
.surface-card,
.feature-copy,
.feature-media,
.gallery-intro,
.comparison-card,
.story-card,
.quote-panel {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(6, 20, 35, 0.54);
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.quote-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 5.7vw, 5.8rem);
  line-height: 0.94;
}

.hero-text,
.feature-copy p,
.quote-copy p,
.viewer-copy,
.spec-card p,
.surface-card p,
.story-copy span,
.form-caption,
.site-footer span {
  color: rgba(6, 20, 35, 0.72);
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.18rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: default;
  opacity: 0.92;
  transform: none;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--ink), #14365d);
  box-shadow: 0 18px 40px rgba(6, 20, 35, 0.2);
}

.button-secondary {
  border-color: rgba(6, 20, 35, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.spec-card,
.surface-card,
.comparison-card,
.story-card,
.quote-panel,
.feature-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow:
    0 24px 72px rgba(6, 20, 35, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.spec-card {
  min-height: 100%;
  padding: 18px 18px 20px;
  border-radius: 26px;
}

.spec-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(6, 20, 35, 0.5);
}

.spec-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.3;
}

.spec-card p {
  margin: 12px 0 0;
  line-height: 1.55;
  font-size: 0.99rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 14px;
}

.desktop-shell {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 0%, rgba(118, 239, 255, 0.34), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(236, 244, 252, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 38px 94px rgba(6, 20, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.desktop-main {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 20px;
  align-items: end;
}

.desktop-main-copy {
  display: grid;
  gap: 10px;
}

.desktop-main-copy h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3.2vw, 3.1rem);
  line-height: 1;
}

.desktop-main-image {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(231, 240, 249, 0.8));
}

.desktop-main-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.desktop-main-compare {
  gap: 12px;
  padding: 0;
}

.desktop-main-compare img {
  aspect-ratio: 4 / 5.25;
}

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

.hero-proof,
.result-gallery {
  border: 1px solid rgba(6, 20, 35, 0.08);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 26px;
}

.hero-proof {
  padding: 16px;
}

.hero-proof header {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.hero-proof header span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(6, 20, 35, 0.5);
}

.hero-proof header strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-proof-copy {
  margin: 0;
  color: rgba(6, 20, 35, 0.72);
  line-height: 1.6;
}

.mini-compare,
.result-grid {
  display: grid;
  gap: 12px;
}

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

.mini-compare figure,
.result-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.mini-compare img,
.result-tile img {
  object-fit: cover;
}

.mini-compare img {
  aspect-ratio: 4 / 4.85;
}

.mini-compare figcaption,
.result-tile figcaption {
  padding: 12px 14px 14px;
  font-size: 0.84rem;
  font-weight: 800;
}

.viewer-shell {
  position: relative;
  padding: 24px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 0%, rgba(118, 239, 255, 0.4), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(236, 244, 252, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 40px 100px rgba(6, 20, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.viewer-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.viewer-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(6, 20, 35, 0.48);
}

.viewer-topline h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.viewer-mode {
  flex-shrink: 0;
  align-self: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--ink);
  background: rgba(6, 20, 35, 0.06);
}

.viewer-frame {
  position: relative;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 5 / 6.1;
  background: linear-gradient(180deg, rgba(6, 20, 35, 0.04), rgba(6, 20, 35, 0.01));
}

.viewer-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(6, 20, 35, 0.28));
  pointer-events: none;
}

.viewer-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 480ms ease,
    opacity 260ms ease;
}

.viewer-frame img.is-switching {
  opacity: 0.8;
  transform: scale(1.03);
}

.viewer-copy {
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.72;
}

.viewer-controls {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.viewer-tabs,
.viewer-state,
.quote-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.toggle,
.quote-points span {
  padding: 11px 14px;
  border: 1px solid rgba(6, 20, 35, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.chip,
.toggle {
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.chip:hover,
.chip:focus-visible,
.toggle:hover,
.toggle:focus-visible {
  transform: translateY(-1px);
}

.chip.is-active,
.toggle.is-active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--ink), var(--sky));
}

.floating-note {
  position: static;
  width: 100%;
  padding: 16px 18px;
  border-radius: 24px;
  color: white;
  background: linear-gradient(135deg, rgba(6, 20, 35, 0.92), rgba(17, 50, 87, 0.88));
  box-shadow: 0 28px 60px rgba(6, 20, 35, 0.28);
}

.floating-note span {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
}

.floating-note strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.35;
}

@media (max-width: 1320px) {
  .hero {
    padding-left: 18px;
    padding-right: 18px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: 100%;
    max-width: 920px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.2rem, 7vw, 5.1rem);
  }
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
}

.section-heading h2,
.feature-copy h2,
.quote-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.surface-grid {
  padding: 60px 0 12px;
}

.surface-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.surface-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.surface-card span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.86rem;
  color: rgba(6, 20, 35, 0.45);
}

.surface-card h3,
.comparison-card h3,
.story-card h3,
.form-success h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.surface-card p {
  margin: 16px 0 0;
  line-height: 1.62;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 34px;
  align-items: center;
  margin-top: 56px;
  padding: 26px;
  border-radius: 38px;
}

.feature-panel-text {
  grid-template-columns: 1fr;
}

.feature-panel-text .feature-copy {
  max-width: 840px;
}

.feature-copy {
  padding: 8px 6px 8px 4px;
}

.feature-copy p {
  margin-top: 20px;
  line-height: 1.72;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.feature-list div {
  padding: 16px 18px;
  border: 1px solid rgba(6, 20, 35, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.feature-list strong {
  display: block;
  margin-bottom: 8px;
}

.feature-list span {
  color: rgba(6, 20, 35, 0.66);
  line-height: 1.55;
}

.feature-media {
  overflow: hidden;
  border-radius: 30px;
}

.feature-media img {
  aspect-ratio: 5 / 6.2;
  object-fit: cover;
}

.feature-media-wide img {
  aspect-ratio: 16 / 11;
}

.comparison-section {
  padding: 88px 0 0;
}

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

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

.comparison-card {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.comparison-card-feature {
  padding: 22px;
}

.comparison-card header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.comparison-card header p,
.story-copy p,
.success-tag {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(6, 20, 35, 0.5);
}

.comparison-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.comparison-images figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.comparison-images img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.comparison-images figcaption {
  padding: 12px 14px 14px;
  font-size: 0.88rem;
  font-weight: 800;
}

.result-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  margin-top: 24px;
  padding: 22px;
}

.result-gallery-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.result-gallery-copy h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.result-gallery-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(6, 20, 35, 0.72);
  line-height: 1.65;
}

.result-gallery-note {
  font-size: 0.94rem;
}

.result-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

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

.result-tile-large {
  grid-row: span 2;
}

.result-tile img {
  aspect-ratio: 4 / 3.6;
}

.result-grid-two .result-tile img {
  aspect-ratio: 4 / 4.8;
}

.result-tile-large img {
  aspect-ratio: 4 / 7.65;
}

.gallery-section {
  padding: 88px 0 0;
}

.gallery-pitch {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}

.gallery-pitch-copy {
  display: grid;
  gap: 16px;
}

.gallery-intro {
  max-width: 70ch;
  margin: 0;
  color: rgba(6, 20, 35, 0.72);
  line-height: 1.75;
  font-size: 1.03rem;
}

.story-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.story-layout-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 28px;
}

.story-layout-proof .story-card {
  grid-column: auto;
  padding: 20px;
}

.story-layout-proof .story-card-proof-wide {
  grid-column: 1 / -1;
}

.story-card-wide {
  grid-column: span 7;
}

.story-card:not(.story-card-wide) {
  grid-column: span 5;
}

.story-card:nth-child(3),
.story-card:nth-child(4),
.story-card:nth-child(5) {
  grid-column: span 4;
}

.story-copy {
  display: grid;
  gap: 10px;
}

.story-copy h3 {
  font-size: 1.34rem;
  line-height: 1.18;
}

.story-copy span {
  line-height: 1.65;
}

.story-card img {
  border-radius: 22px;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
}

.story-card-wide img {
  aspect-ratio: 7 / 4.3;
}

.comparison-images-story img {
  aspect-ratio: 4 / 4.8;
}

.quote-section {
  padding: 92px 0 100px;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 32px;
  border-radius: 42px;
}

.quote-copy {
  padding: 12px 6px 12px 0;
}

.quote-copy p:not(.eyebrow) {
  margin-top: 18px;
  line-height: 1.72;
}

.quote-email {
  margin-top: 10px !important;
  font-weight: 700;
}

.quote-email-address {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

.quote-email-address:hover,
.quote-email-address:focus-visible {
  color: var(--sky);
}

.quote-offers {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.price-beat-card,
.quote-detail {
  padding: 18px 20px;
  border: 1px solid rgba(6, 20, 35, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.price-beat-kicker {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(6, 20, 35, 0.48);
}

.price-beat-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.3;
}

.price-beat-card span {
  display: block;
  margin-top: 10px;
  color: rgba(6, 20, 35, 0.72);
  line-height: 1.6;
}

.quote-detail {
  padding: 10px;
}

.quote-detail[open] {
  background: rgba(255, 255, 255, 0.84);
}

.quote-detail summary {
  list-style: none;
}

.quote-detail summary::-webkit-details-marker {
  display: none;
}

.quote-detail-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 0 12px;
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
}

.quote-detail-trigger::after {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(6, 20, 35, 0.58);
}

.quote-detail[open] .quote-detail-trigger::after {
  content: "-";
}

.quote-detail-body {
  display: grid;
  gap: 12px;
  padding: 8px 12px 6px;
}

.quote-detail-body p {
  margin: 0;
  color: rgba(6, 20, 35, 0.72);
  line-height: 1.65;
}

.quote-detail-static {
  padding: 18px 20px;
}

.quote-detail-static .quote-detail-trigger {
  min-height: auto;
  padding: 0;
  cursor: default;
}

.quote-detail-static .quote-detail-trigger::after {
  content: none;
}

.quote-detail-trigger-static::after {
  content: none !important;
  display: none !important;
}

.quote-detail-static .quote-detail-body {
  padding: 10px 0 0;
}

.quote-form,
.form-success {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 20, 35, 0.07);
  box-shadow:
    0 18px 48px rgba(6, 20, 35, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quote-form {
  display: grid;
  gap: 14px;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(6, 20, 35, 0.12);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(249, 252, 255, 0.95);
  outline: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(27, 132, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(27, 132, 255, 0.1);
  background: white;
}

.quote-form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  margin: 6px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 700;
}

.form-status.is-success {
  color: #0e6b48;
}

.form-status.is-error {
  color: #9d2f2f;
}

.form-caption {
  margin: 0;
  font-size: 0.9rem;
}

.form-success {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.form-success p {
  margin: 0;
  line-height: 1.65;
  color: rgba(6, 20, 35, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto 34px;
  padding-top: 6px;
  border-top: 1px solid rgba(6, 20, 35, 0.08);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.footer-note {
  max-width: 48ch;
  color: rgba(6, 20, 35, 0.62);
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .hero,
  .feature-panel,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

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

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

  .desktop-main,
  .result-gallery {
    grid-template-columns: 1fr;
  }

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

  .result-tile-large {
    grid-row: auto;
  }

  .result-tile-large img {
    aspect-ratio: 4 / 3.6;
  }

  .story-card-wide,
  .story-card:not(.story-card-wide),
  .story-card:nth-child(3),
  .story-card:nth-child(4),
  .story-card:nth-child(5) {
    grid-column: span 6;
  }

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

  .gallery-pitch {
    grid-template-columns: 1fr;
  }

  .story-layout-proof .story-card {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    border-radius: 28px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    flex-wrap: wrap;
    gap: 16px;
  }

  .brand-logo {
    width: clamp(150px, 32vw, 220px);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-specs,
  .comparison-grid,
  .comparison-grid-paired,
  .hero-proof-grid,
  .mini-compare,
  .result-grid {
    grid-template-columns: 1fr;
  }

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

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

  .story-card-wide,
  .story-card:not(.story-card-wide),
  .story-card:nth-child(3),
  .story-card:nth-child(4),
  .story-card:nth-child(5) {
    grid-column: span 12;
  }

  .story-layout-proof .comparison-images {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .site-header,
  .site-footer {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .site-header {
    margin-top: 10px;
    padding: 14px;
  }

  .brand-logo {
    width: min(180px, 48vw);
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .viewer-shell,
  .desktop-shell,
  .feature-panel,
  .quote-panel {
    padding: 18px;
  }

  .desktop-main-image img {
    aspect-ratio: 4 / 5.1;
  }

  .viewer-frame {
    aspect-ratio: 5 / 6.8;
  }

  .comparison-images {
    grid-template-columns: 1fr;
  }

  .surface-cards {
    grid-template-columns: 1fr;
  }

  .story-card img,
  .story-card-wide img,
  .feature-media img {
    aspect-ratio: 4 / 4.8;
  }

  .site-footer {
    flex-direction: column;
    padding-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
