/* ============================================
   LAIDOUT FLOORING — MAIN STYLESHEET
   ============================================ */

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

:root {
  --red: #D41C2C;
  --red-dark: #A81520;
  --red-glow: rgba(212, 28, 44, 0.12);
  --black: #0A0A0A;
  --surface: #141414;
  --surface2: #1C1C1C;
  --off-white: #F5F5F0;
  --muted: #888880;
  --muted-light: #AAAAAA;
  --border: #2A2A2A;
  --border-light: #363636;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

.bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section { padding: 90px 0; }
.section-dark { background: var(--surface); }
.section-black { background: var(--black); }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--off-white);
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted-light);
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================
   NAVIGATION
   ============================================ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}

.logo-text-wrap { display: flex; flex-direction: column; }

.logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--off-white);
  line-height: 1;
}

.logo-tagline {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

.nav-cta-link {
  background: var(--red) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  transition: background 0.2s !important;
}

.nav-cta-link:hover { background: var(--red-dark) !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--off-white);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: border-color 0.2s;
}

.nav-hamburger:hover { border-color: var(--muted); }

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--surface);
  z-index: 300;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  border-left: 1px solid var(--border);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul { list-style: none; }

.mobile-menu li { border-bottom: 1px solid var(--border); }

.mobile-link {
  display: block;
  padding: 16px 0;
  color: var(--off-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-link:hover { color: var(--red); }

.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 299;
  display: none;
}

.mobile-overlay.open { display: block; }

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background: var(--black);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-diagonal {
  position: absolute;
  right: -10%;
  top: 0;
  bottom: 0;
  width: 55%;
  background: var(--surface);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 6.5vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hero-headline .red { color: var(--red); }

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted-light);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.badge i { color: var(--red); font-size: 15px; }

/* Hero Visual */
.hero-visual { position: relative; }

.hero-logo-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 16px;
}

.hero-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 0;
  display: block;
  margin: 0 auto 16px;
}

.hero-logo-tagline {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar { background: var(--red); padding: 14px 5%; }

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.trust-item i { font-size: 17px; opacity: 0.85; }

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 15px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--off-white);
  padding: 15px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover { border-color: var(--off-white); background: rgba(255,255,255,0.05); }

.btn-white {
  background: #fff;
  color: var(--red);
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-white:hover { background: var(--off-white); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ============================================
   SERVICES
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--surface);
  padding: 36px 28px;
  transition: background 0.2s;
}

.service-card:hover { background: var(--surface2); }

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--red-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i { color: var(--red); font-size: 24px; }

.service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.service-list { list-style: none; color: var(--muted-light); font-size: 13px; line-height: 2.1; }
.service-list li::before { content: "→ "; color: var(--red); }

/* ============================================
   CARPET TYPES
   ============================================ */

.carpet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.carpet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.carpet-card:hover { border-color: var(--red); transform: translateY(-3px); }

.carpet-swatch {
  height: 140px;
  position: relative;
  overflow: hidden;
  background: var(--surface2);
}

.carpet-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.carpet-card:hover .carpet-swatch img {
  transform: scale(1.05);
}

.carpet-body { padding: 22px 24px; }

.carpet-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }

.carpet-desc { font-size: 13px; color: var(--muted-light); line-height: 1.75; margin-bottom: 14px; }

.carpet-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  padding: 4px 10px;
  background: var(--red-glow);
  border: 1px solid rgba(212, 28, 44, 0.22);
  border-radius: 3px;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ============================================
   PROCESS
   ============================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-step { padding: 24px; text-align: center; position: relative; }

.step-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.02em;
  background: var(--surface);
  position: relative;
  z-index: 2;
  transition: border-color 0.3s, color 0.3s;
}

.process-step:hover .step-circle { border-color: var(--red); color: var(--red); }

/* Connector lines between steps */
.step-connector {
  position: absolute;
  top: 62px;
  left: calc(50% + 38px);
  right: calc(-50% + 38px);
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.step-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--muted-light); line-height: 1.75; max-width: 260px; margin: 0 auto; }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover { border-color: rgba(212, 28, 44, 0.4); }

.stars { color: var(--red); font-size: 15px; margin-bottom: 14px; letter-spacing: 3px; }

.testimonial-text {
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red-glow);
  border: 1px solid rgba(212,28,44,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--red);
  flex-shrink: 0;
}

.author-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.author-type { font-size: 11px; color: var(--muted); }

/* ============================================
   WHY
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.why-item { display: flex; gap: 16px; align-items: flex-start; }

.why-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--red-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i { color: var(--red); font-size: 22px; }
.why-title { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.why-desc { font-size: 13px; color: var(--muted-light); line-height: 1.65; }

/* ============================================
   QUOTE FORM
   ============================================ */

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.quote-info { position: sticky; top: 90px; }

.quote-desc {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.quote-contacts { display: flex; flex-direction: column; gap: 14px; }

.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted-light);
  text-decoration: none;
  transition: color 0.2s;
}

a.quote-contact-item:hover { color: var(--off-white); }

.quote-contact-item i { color: var(--red); font-size: 19px; width: 22px; flex-shrink: 0; }

/* Form */
.form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 8px;
}

.req { color: var(--red); }

.form-input {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border-light);
  border-radius: 5px;
  padding: 13px 15px;
  font-size: 14px;
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,28,44,0.12);
}

.form-input::placeholder { color: #444; }
.form-input.error { border-color: #e05555; }

.form-textarea { resize: vertical; min-height: 96px; }

/* Radio fieldsets */
.radio-fieldset { border: none; }

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--black);
  border: 1px solid var(--border-light);
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-light);
  transition: all 0.2s;
  user-select: none;
}

.radio-card:hover { border-color: rgba(212,28,44,0.4); color: var(--off-white); }

.radio-card input[type="radio"] {
  accent-color: var(--red);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}

.radio-card.selected {
  border-color: var(--red);
  background: var(--red-glow);
  color: var(--off-white);
}

/* Field errors */
.field-error {
  display: block;
  font-size: 12px;
  color: #e05555;
  margin-top: 5px;
  min-height: 18px;
}

.form-submit-error {
  background: rgba(224,85,85,0.1);
  border: 1px solid rgba(224,85,85,0.3);
  border-radius: 5px;
  padding: 12px 16px;
  font-size: 13px;
  color: #e08888;
  margin-bottom: 16px;
}

/* Submit button */
.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 17px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
}

.btn-submit:hover { background: var(--red-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* Spinner */
.spin { animation: spin 0.8s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success */
.form-success {
  text-align: center;
  padding: 60px 20px;
}

.success-icon { margin-bottom: 20px; }
.success-icon i { font-size: 64px; color: var(--red); }

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 8px;
}

.success-sub a { color: var(--red); text-decoration: none; }
.success-sub a:hover { text-decoration: underline; }

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  background: var(--red);
  padding: 80px 5%;
  text-align: center;
}

.final-cta-inner { max-width: 700px; margin: 0 auto; }

.final-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.final-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.7;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.footer-logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.footer-logo-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 3px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--off-white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a, .footer-contact span {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 5%;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .quote-layout { grid-template-columns: 1fr; gap: 40px; }
  .quote-info { position: static; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-top: 60px; }
  .hero-diagonal { display: none; }
  .hero-headline { font-size: clamp(46px, 10vw, 72px); }
  .hero-visual { max-width: 420px; }
  .hero-logo-img { width: 160px; height: 160px; }
  .process-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .trust-inner { justify-content: center; gap: 14px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .radio-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .stat-num { font-size: 26px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .form-wrapper { padding: 24px 20px; }
  .radio-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE NOTE (turnaround card)
   ============================================ */

.service-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ============================================
   TURNAROUND BAR (process section)
   ============================================ */

.turnaround-bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
  flex-wrap: wrap;
}

.turnaround-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 28px;
  flex: 1;
  min-width: 200px;
}

.turnaround-item i {
  color: var(--muted);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.turnaround-item--upgrade i { color: var(--red); }

.turnaround-item div { display: flex; flex-direction: column; gap: 4px; }

.turnaround-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--off-white);
}

.turnaround-item--upgrade strong { color: var(--red); }

.turnaround-item span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.turnaround-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ============================================
   CARPET FEATURED CARDS (Premium / Rent-Ready)
   ============================================ */

.carpet-card--featured {
  border-color: rgba(212, 28, 44, 0.3);
}

.swatch-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.swatch-badge--alt {
  background: var(--surface2);
  color: var(--off-white);
  border: 1px solid var(--border-light);
}

.carpet-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

/* ============================================
   FIELD HINT (form helper text)
   ============================================ */

.field-hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
  font-style: italic;
}
