:root {
  --green: #13b119;
  --green-dark: #0b7e11;
  --black: #050505;
  --ink: #121612;
  --muted: #616a61;
  --line: #dfe7df;
  --soft: #f4f8f4;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 12px;
  color: var(--black);
  background: var(--green);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  color: rgba(255, 255, 255, 0.84);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}

.top-strip .container {
  min-height: 42px;
  padding: 8px 0;
}

.top-strip .container,
.nav,
.cta-layout,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip a,
.nav a,
.footer a {
  text-decoration: none;
}

.weekly-offer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.weekly-offer > span {
  padding-left: 12px;
  color: var(--green);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.nav {
  min-height: 76px;
}

.logo img {
  width: 220px;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
}

.nav-links a:hover {
  color: var(--green);
}

.call-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 17px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
}

.call-button,
.primary-button {
  color: var(--black);
  background: linear-gradient(105deg, var(--green) 0%, #47d14d 56%, #a6efa9 100%);
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.08),
    0 12px 28px rgba(19, 177, 25, 0.24);
}

.secondary-button {
  color: var(--black);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.7) 48%, rgba(0, 0, 0, 0.34)),
    url("optimized/ceramic-hero-desktop.jpg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--green);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  grid-template-areas:
    "copy form"
    "points form";
  gap: 34px;
  align-items: center;
  padding: 76px 0 64px;
}

.hero-copy {
  grid-area: copy;
  max-width: 690px;
}

.eyebrow,
.section-kicker,
.package-label,
.form-header p {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 12px;
  font-size: clamp(16px, 1.45vw, 21px);
}

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

h1,
h2,
h3 {
  color: inherit;
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5.3vw, 64px);
}

.headline-line {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.55;
}

.hero-lede-mobile {
  display: none;
}

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

.lead-form {
  grid-area: form;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-header {
  padding: 24px 26px;
  background: linear-gradient(180deg, #f5fff5, var(--white));
}

.form-header h2 {
  margin: 0;
  color: var(--black);
  font-size: 28px;
}

.form-title-mobile {
  display: none;
}

.lead-form form {
  display: grid;
  gap: 16px;
  padding: 24px 26px 26px;
}

.form-status,
.form-step {
  display: grid;
  gap: 13px;
}

.form-status > div:first-child,
.form-status > div:nth-child(2) {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.form-status span,
.consent,
.form-callout {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.completion-track {
  height: 9px;
  overflow: hidden;
  background: #dfe5dc;
  border-radius: 999px;
}

.completion-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
  transition: width 0.2s ease;
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
}

label {
  display: block;
  margin-bottom: 6px;
  color: #334033;
  font-size: 13px;
  font-weight: 950;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #cdd8cd;
  border-radius: 7px;
  font: inherit;
}

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

.price-preview {
  padding: 12px 13px;
  color: #063f09;
  background: #e8fae9;
  border: 1px solid rgba(19, 177, 25, 0.26);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
}

.secondary-form-button {
  min-height: 48px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.form-success {
  display: none;
  margin: 0;
  padding: 10px 12px;
  color: #06450a;
  background: #e4fae5;
  border: 1px solid rgba(19, 177, 25, 0.3);
  border-radius: 7px;
  font-weight: 850;
}

.form-success.is-visible {
  display: block;
}

.hero-points {
  grid-area: points;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 15px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 760;
}

.hero-points span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-band {
  background: linear-gradient(180deg, var(--white), var(--soft));
  border-bottom: 1px solid var(--line);
}

.trust-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 0;
}

.trust-item {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.055);
}

.trust-number {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--black);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 0.9;
  font-weight: 950;
}

.rating-number::after {
  align-self: center;
  margin-left: 8px;
  color: var(--green);
  content: "★★★★★";
  font-size: 15px;
  letter-spacing: 0;
}

.trust-number span {
  color: var(--green);
  font-size: 0.45em;
}

.trust-number.compact {
  font-size: clamp(30px, 3.5vw, 42px);
}

.trust-item strong {
  display: block;
  margin-top: 8px;
  color: var(--black);
  font-size: 18px;
}

.trust-item p,
.section-header p,
.difference-grid p,
.faq-answer {
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

#packages,
.proof-section,
#work,
.reviews-section,
.difference-section,
.cta-band,
#faq,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  color: var(--white);
  background: #071007;
}

.section-header {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-header h2,
.proof-copy h2,
.difference-heading h2,
.cta-band h2 {
  color: var(--black);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.03;
}

.section-header p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: 17px;
  line-height: 1.55;
}

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

.package-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.package-card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 26px 60px rgba(19, 177, 25, 0.16);
}

.package-offer-row {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.popular,
.discount-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 7px 10px;
  color: var(--black);
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.discount-badge {
  color: #07500a;
  background: #e7f9e8;
  border: 1px solid rgba(19, 177, 25, 0.3);
}

.package-card h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(25px, 2.6vw, 36px);
}

.price {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.original-price {
  width: fit-content;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.original-price del {
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
}

.sale-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--green-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sale-price strong {
  color: var(--black);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.package-card ul,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.package-card li,
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 820;
}

.package-card li::before,
.check-list li::before {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 13px;
  font-weight: 950;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.proof-copy h2,
.difference-heading h2,
.cta-band h2 {
  color: var(--white);
}

.proof-copy p,
.proof-copy li {
  color: rgba(255, 255, 255, 0.76);
}

.proof-mobile {
  display: none;
}

.proof-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

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

.difference-grid article,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-section {
  min-height: 0;
}

.process-pin {
  position: static;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 96px;
  gap: 18px;
  overflow: hidden;
  min-height: 360px;
  padding: 48px 34px 34px;
  color: var(--white);
  background: #111711;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-timeline::before,
.process-timeline::after {
  position: absolute;
  top: 84px;
  left: 70px;
  right: 82px;
  height: 4px;
  content: "";
  border-radius: 999px;
}

.process-timeline::before {
  background: rgba(255, 255, 255, 0.18);
}

.process-timeline::after {
  right: auto;
  width: var(--timeline-progress);
  max-width: calc(100% - 152px);
  background: var(--green);
  box-shadow: 0 0 24px rgba(19, 177, 25, 0.44);
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  padding-top: 76px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-marker {
  position: absolute;
  top: 12px;
  left: 0;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: #263126;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 950;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.process-step.active .process-marker {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 14px 30px rgba(19, 177, 25, 0.24);
  transform: scale(1.04);
}

.process-content {
  flex: 1;
  max-width: none;
  min-height: 194px;
  padding: 22px 18px 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.process-content > span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-content h3 {
  max-width: 12ch;
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.04;
}

.process-content p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.process-finish {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  padding-top: 5px;
}

.process-finish::before {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(19, 177, 25, 0.28);
  content: "✓";
  font-size: 28px;
  font-weight: 950;
}

.process-finish span {
  max-width: 9ch;
  margin-top: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.difference-grid h3 {
  color: var(--black);
  font-size: 24px;
}

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

.work-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--black);
}

.work-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.work-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-weight: 900;
}

.difference-section {
  color: var(--white);
  background: var(--black);
}

.difference-heading {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.difference-heading p {
  color: rgba(255, 255, 255, 0.76);
}

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

.difference-grid article {
  padding: 28px;
}

.difference-mobile {
  display: none;
}

.reviews-section {
  overflow: hidden;
}

.review-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.review-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviewMarquee 32s linear infinite;
  will-change: transform;
}

.review-slide {
  flex: 0 0 280px;
  min-height: 318px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 22px;
  text-align: center;
  background: #fbfcff;
  border: 1px solid #edf1f5;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.review-slide img {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  object-fit: cover;
  border: 4px solid #122b57;
  border-radius: 50%;
}

.review-slide p {
  display: -webkit-box;
  min-height: 82px;
  overflow: hidden;
  color: #172f5f;
  font-weight: 700;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-slide h3 {
  margin: 0 0 4px;
  color: #172f5f;
  font-size: 18px;
}

.review-slide span {
  color: #172f5f;
  font-size: 13px;
  font-weight: 800;
}

.review-slide strong {
  color: #f2a43a;
  letter-spacing: 0;
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--review-set-width, 1490px)));
  }
}

.cta-band {
  padding: 46px 0;
  color: var(--white);
  background: var(--black);
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  background: var(--black);
  border-color: #1f251f;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.faq-button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  color: var(--white);
  background: var(--black);
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 19px;
  font-weight: 950;
  text-align: left;
}

.faq-button span {
  color: var(--green);
  font-size: 25px;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

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

.footer {
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.1fr) auto;
  grid-template-areas:
    "brand links actions"
    "summary links actions";
  align-items: center;
  gap: 8px clamp(28px, 4vw, 56px);
  padding: 34px 0 26px;
}

.footer-brand {
  grid-area: brand;
  display: inline-flex;
  width: fit-content;
}

.footer-brand img {
  display: block;
  width: 190px;
  height: auto;
}

.footer-summary {
  grid-area: summary;
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.footer-links {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 850;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

.footer-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-phone,
.footer-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.footer-phone {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-cta {
  color: var(--black);
  background: var(--green);
}

.footer-bottom {
  padding: 15px 0 20px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  z-index: 55;
  right: 22px;
  bottom: 22px;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.sticky-cta.is-visible {
  display: none;
}

.sticky-cta span {
  padding-left: 12px;
  font-size: 13px;
  font-weight: 900;
}

.sticky-cta a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--black);
  background: var(--green);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
}

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

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

  .package-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "summary actions"
      "links links";
  }

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

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .hero {
    order: 1;
  }

  .trust-band {
    order: 2;
  }

  .reviews-section {
    order: 3;
  }

  #packages {
    order: 4;
  }

  .proof-section {
    order: 5;
  }

  #process {
    order: 6;
  }

  #work {
    order: 7;
  }

  .difference-section {
    order: 8;
  }

  .cta-band {
    order: 9;
  }

  #faq {
    order: 10;
  }

  .container {
    width: calc(100% - 28px);
  }

  .top-strip {
    font-size: 12px;
  }

  .top-strip .container {
    min-height: 38px;
    justify-content: center;
    padding: 6px 0;
  }

  .top-strip .container > a {
    display: none;
  }

  .weekly-offer {
    gap: 7px;
  }

  .weekly-offer > span {
    padding-left: 7px;
  }

  .nav {
    min-height: 62px;
  }

  .logo img {
    width: 142px;
  }

  .header-call {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.94) 54%, rgba(0, 0, 0, 0.98)),
      url("optimized/ceramic-hero-mobile.jpg") center top / cover no-repeat;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "points";
    gap: 14px;
    padding: 28px 0 42px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.2vw, 38px);
  }

  .hero-copy p {
    max-width: 40ch;
    font-size: 14px;
    line-height: 1.4;
  }

  .hero-lede-desktop {
    display: none;
  }

  .hero-lede-mobile {
    display: block;
  }

  .hero-actions {
    display: none;
  }

  .form-header {
    padding: 18px 20px;
  }

  .form-header h2 {
    font-size: 21px;
    line-height: 1.08;
  }

  .form-title-desktop {
    display: none;
  }

  .form-title-mobile {
    display: block;
    white-space: nowrap;
    font-size: clamp(16px, 4.5vw, 18px) !important;
    letter-spacing: -0.035em;
  }

  .lead-form form {
    gap: 11px;
    padding: 20px;
  }

  .form-step {
    gap: 10px;
  }

  .form-step[data-step="1"] .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  label {
    margin-bottom: 5px;
    font-size: 12px;
  }

  input,
  select {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .trust-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 0;
  }

  .trust-item {
    min-height: 118px;
    padding: 14px;
  }

  .trust-item p {
    display: none;
  }

  .trust-number {
    font-size: clamp(30px, 9vw, 38px);
  }

  .section {
    padding: 54px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2,
  .proof-copy h2,
  .difference-heading h2,
  .cta-band h2 {
    max-width: 16ch;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.06;
  }

  .section-header p {
    font-size: 14px;
    line-height: 1.42;
  }

  .proof-section {
    padding: 40px 0;
  }

  .proof-layout {
    gap: 18px;
  }

  .proof-copy > h2,
  .proof-copy > p,
  .proof-copy > .check-list {
    display: none;
  }

  .proof-copy .section-kicker {
    margin-bottom: 0;
  }

  .proof-mobile {
    display: grid;
    gap: 0;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .proof-mobile li {
    position: relative;
    padding: 13px 0 13px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .proof-mobile li::before {
    position: absolute;
    top: 20px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    content: "";
  }

  .proof-mobile strong,
  .proof-mobile span {
    display: block;
  }

  .proof-mobile strong {
    color: var(--white);
    font-size: 17px;
    line-height: 1.2;
  }

  .proof-mobile span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.35;
  }

  .proof-media img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: center 44%;
  }

  .package-card,
  .difference-grid article {
    padding: 22px;
  }

  .difference-section {
    padding: 40px 0 0;
  }

  .difference-heading {
    margin-bottom: 18px;
    text-align: left;
  }

  .difference-heading .section-kicker {
    margin-bottom: 0;
  }

  .difference-heading h2,
  .difference-heading p,
  .difference-grid {
    display: none;
  }

  .difference-mobile {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .difference-mobile li {
    position: relative;
    padding: 15px 0 15px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .difference-mobile li::before {
    position: absolute;
    top: 22px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    content: "";
  }

  .difference-mobile strong,
  .difference-mobile span {
    display: block;
  }

  .difference-mobile strong {
    color: var(--white);
    font-size: 18px;
    line-height: 1.2;
  }

  .difference-mobile span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.35;
  }

  .cta-band {
    padding: 24px 0 40px;
  }

  .package-offer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-section {
    min-height: 0;
  }

  .process-pin {
    position: static;
  }

  .process-timeline {
    display: block;
    min-height: 0;
    padding: 24px 18px 26px;
  }

  .process-timeline::before,
  .process-timeline::after {
    top: 54px;
    bottom: 54px;
    left: 42px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-timeline::after {
    width: 2px;
    height: var(--timeline-progress);
    max-height: calc(100% - 108px);
  }

  .process-step {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 0;
    padding-top: 0;
    padding-bottom: 22px;
  }

  .process-marker {
    position: relative;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    font-size: 13px;
  }

  .process-content {
    min-height: 0;
    padding: 2px 0 0 12px;
    background: transparent;
    border: 0;
  }

  .process-content > span {
    margin-bottom: 9px;
    font-size: 10px;
  }

  .process-content h3 {
    margin-bottom: 8px;
    font-size: clamp(22px, 6.4vw, 29px);
  }

  .process-content p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.42;
  }

  .process-finish {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    justify-items: start;
    padding-top: 0;
  }

  .process-finish::before {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .process-finish span {
    max-width: none;
    margin-top: 4px;
    padding-left: 12px;
    font-size: 12px;
    line-height: 50px;
    text-align: left;
  }

  .popular {
    position: static;
    width: fit-content;
  }

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

  .work-card,
  .work-card.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .prep-work-card {
    min-height: 0;
    aspect-ratio: 4 / 5;
    background: #111;
  }

  .prep-work-card img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .review-slide {
    flex-basis: calc(84vw - 20px);
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 10px;
  }

  .faq-button {
    min-height: 54px;
    padding: 15px 16px;
    gap: 10px;
    font-size: 15px;
    line-height: 1.25;
  }

  .faq-button span {
    font-size: 22px;
  }

  .faq-answer {
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.45;
  }

  .cta-layout {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "summary"
      "links"
      "actions";
    gap: 16px;
    padding: 28px 0 20px;
  }

  .footer-brand img {
    width: 172px;
  }

  .footer-links {
    justify-content: flex-start;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .footer-phone,
  .footer-cta {
    padding-right: 10px;
    padding-left: 10px;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 14px 0 88px;
    font-size: 12px;
  }

  .sticky-cta.is-visible {
    display: flex;
    right: 14px;
    bottom: 12px;
    left: 14px;
    justify-content: space-between;
    border-radius: var(--radius);
  }
}

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

  .review-track {
    animation: none;
  }
}
