
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --ink: #111827;
  --ink-2: #17212f;
  --cream: #f7f1e8;
  --paper: #fffaf2;
  --white: #ffffff;
  --muted: #64748b;
  --line: #e7dccd;
  --teal: #0f766e;
  --teal-2: #115e59;
  --gold: #c98a40;
  --gold-2: #f3c278;
  --green: #6b8f71;
  --red: #b45309;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.16);
  --soft-shadow: 0 18px 48px rgba(17, 24, 39, 0.09);
  --radius: 26px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

img {
  max-width: 100%;
}

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

.progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.topbar {
  min-height: 40px;
  padding: 0 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.topbar a {
  color: var(--gold-2);
}

.header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 78px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(247, 241, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: 252px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.2);
  font-weight: 950;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.7px;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 850;
}

.nav a {
  color: var(--ink);
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--teal);
}

.nav .nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
}

.nav .nav-pricing {
  border: 1px solid var(--line);
  background: var(--paper);
}

.nav .nav-quote {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 24px rgba(201, 138, 64, 0.22);
}

.phone {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.22);
  transition: 0.2s ease;
}

.phone:hover {
  transform: translateY(-2px);
  background: var(--teal);
}

.menu {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero.small {
  min-height: 500px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,24,39,.97), rgba(17,24,39,.69), rgba(17,24,39,.25)),
    radial-gradient(circle at 20% 20%, rgba(201,138,64,.34), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 910px;
  padding: 86px 0;
}

.pill {
  width: fit-content;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  color: white;
  font-size: clamp(48px, 8vw, 92px);
  letter-spacing: -4px;
}

h2 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -2.4px;
}

h3 {
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -1.2px;
}

.hero-text {
  max-width: 750px;
  margin: 24px 0 32px;
  color: rgba(255,255,255,.84);
  font-size: 20px;
  line-height: 1.6;
}

.actions,
.cta-row,
.form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: white;
  cursor: pointer;
  font-weight: 950;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--green));
}

.gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.dark {
  color: white;
  background: var(--ink);
}

.light {
  background: white;
  border: 1px solid var(--line);
}

.glass {
  color: white;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
}

.stats {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stats div {
  min-width: 145px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}

.stats strong {
  display: block;
  color: white;
  font-size: 23px;
  font-weight: 950;
}

.stats span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.section {
  padding: 76px 0;
}

.section.tight {
  padding: 56px 0;
}

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

.heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.heading p,
.copy p,
.card p,
.price-card p,
.quote-grid p,
.area-box p,
.review p,
.step p,
.pro-photo-copy p,
.switch-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-switch {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.switch-tabs {
  display: grid;
  gap: 12px;
}

.switch-tab {
  min-height: 98px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
  transition: 0.2s ease;
}

.switch-tab:hover,
.switch-tab.active {
  transform: translateX(6px);
  background: var(--ink);
  color: white;
}

.switch-tab span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.switch-tab strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
}

.switch-tab small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 750;
}

.switch-tab.active small,
.switch-tab:hover small {
  color: rgba(255,255,255,.7);
}

.switch-display {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: white;
  box-shadow: var(--shadow);
}

.switch-photo {
  min-height: 440px;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
}

.switch-copy {
  padding: 34px;
  align-self: center;
}

ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

li {
  position: relative;
  padding-left: 22px;
  margin: 9px 0;
  font-weight: 700;
}

li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 950;
}

.cards,
.reviews,
.steps,
.pro-photo-grid,
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.review,
.step,
.quote-form,
.area-box,
.price-shell,
.estimate-box,
.pro-photo-card,
.service-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--soft-shadow);
}

.card,
.pro-photo-card,
.review,
.step,
.service-info-card {
  overflow: hidden;
  transition: 0.24s ease;
}

.card:hover,
.pro-photo-card:hover,
.review:hover,
.step:hover,
.service-info-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.card-img,
.pro-photo {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  transition: 0.45s ease;
}

.card:hover .card-img,
.pro-photo-card:hover .pro-photo {
  transform: scale(1.045);
}

.card-body,
.review,
.step,
.service-info-card,
.pro-photo-copy {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tag.goldtag {
  background: var(--gold);
  color: var(--ink);
}

.tag.teal {
  background: var(--teal);
}

.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 950;
}

.quick-quote-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 138, 64, 0.24), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
  color: white;
  box-shadow: var(--shadow);
}

.quick-quote-strip h2 {
  color: white;
  font-size: clamp(28px, 4vw, 44px);
}

.quick-quote-strip p {
  color: rgba(255,255,255,.74);
  line-height: 1.6;
}

.price-tabs,
.estimate-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.price-tab,
.estimate-tab {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
  transition: 0.2s ease;
}

.price-tab:hover,
.price-tab.active,
.estimate-tab:hover,
.estimate-tab.active {
  transform: translateY(-2px);
  background: var(--ink);
  color: white;
}

.price-panel,
.estimate-panel {
  display: none;
}

.price-panel.active,
.estimate-panel.active {
  display: block;
  animation: fadeUp 0.25s ease;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
}

.price-row strong {
  display: block;
  color: var(--ink);
}

.price-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.price-row b {
  color: var(--teal);
  white-space: nowrap;
}

.pricing-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.estimator-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(201,138,64,.16), transparent 32%),
    var(--cream);
}

.estimate-box {
  overflow: hidden;
}

.estimate-tabs {
  padding: 18px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.estimate-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
}

.estimate-controls {
  padding: 28px;
}

.estimate-panel.active {
  display: grid;
  gap: 16px;
}

.estimate-result {
  padding: 32px;
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(201,138,64,.32), transparent 36%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
}

.estimate-result span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.estimate-result strong {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -2px;
}

.estimate-result p {
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}

.estimate-meter {
  height: 12px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}

.estimate-meter div {
  width: 18%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: width 0.35s ease;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15,118,110,.12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 24px;
  align-items: start;
}

.quote-form {
  padding: 26px;
}

.preview,
.photo-list,
.photo-help,
.payment-methods-box {
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed #c7b69f;
  border-radius: 16px;
  background: var(--paper);
  color: var(--muted);
  white-space: pre-wrap;
  font-size: 13px;
  line-height: 1.5;
}

.photo-help,
.payment-methods-box {
  white-space: normal;
  border-style: solid;
  background: white;
}

.payment-methods-box strong,
.photo-help strong,
.photo-list strong {
  color: var(--ink);
}

.payment-methods-box span,
.photo-list small {
  color: var(--teal);
  font-weight: 900;
}

input[type="file"] {
  padding: 13px;
  background: white;
  cursor: pointer;
}

.photo-list.preview-mode {
  display: grid;
  gap: 12px;
}

.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.photo-preview-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.native-share-status {
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 19px;
  margin-bottom: 12px;
}

.review {
  position: relative;
}

.review::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.review-service {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.area-box {
  padding: 30px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 24px;
  align-items: center;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areas span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 850;
  transition: 0.2s ease;
}

.areas span:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  align-items: start;
}

.service-photo {
  min-height: 560px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.service-stack {
  display: grid;
  gap: 18px;
}

.final {
  padding: 86px 0;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 20% 0%, rgba(201,138,64,.28), transparent 32%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
}

.final h2 {
  color: white;
}

.final p:not(.eyebrow) {
  color: rgba(255,255,255,.74);
}

.big-phone {
  display: inline-flex;
  margin-top: 20px;
  padding: 16px 25px;
  border-radius: 18px;
  background: white;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 950;
}

.footer {
  padding: 34px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: #070b10;
}

.footer p {
  margin: 5px 0;
  color: rgba(255,255,255,.68);
}

.footer a {
  font-weight: 950;
}

.payments {
  color: rgba(255,255,255,.84) !important;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 1050px) {
  .nav,
  .phone {
    display: none;
  }

  .menu {
    display: block;
  }

  .header.open .nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .header.open .nav a {
    padding: 12px;
    border-radius: 12px;
    background: white;
  }

  .service-switch,
  .switch-display,
  .cards,
  .reviews,
  .steps,
  .pro-photo-grid,
  .price-cards,
  .quote-grid,
  .area-box,
  .estimate-layout,
  .service-layout,
  .quick-quote-strip {
    grid-template-columns: 1fr;
  }

  .switch-photo,
  .service-photo {
    min-height: 330px;
    position: relative;
    top: auto;
  }

  h1 {
    letter-spacing: -2px;
  }
}

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

  .topbar {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .header {
    padding: 0 14px;
  }

  .hero {
    min-height: 560px;
  }

  .hero.small {
    min-height: 460px;
  }

  .hero-content {
    padding: 58px 0;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    letter-spacing: -1.6px;
  }

  .hero-text {
    font-size: 17px;
  }

  .actions,
  .cta-row,
  .form-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .switch-tab {
    min-height: auto;
    padding: 15px;
  }

  .switch-copy,
  .estimate-controls,
  .estimate-result,
  .quote-form,
  .card-body,
  .review,
  .step,
  .service-info-card,
  .pro-photo-copy {
    padding: 22px;
  }

  .switch-photo,
  .card-img,
  .pro-photo {
    min-height: 230px;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .photo-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    flex-direction: column;
    padding-bottom: 40px;
  }

  .areas span {
    font-size: 13px;
  }
}


/* ===== Ultra Smart Quote System ===== */

.quote-hero {
  min-height: 500px;
}

.smart-quote-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 138, 64, 0.12), transparent 32%),
    var(--cream);
}

.smart-quote-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
}

.quote-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.quote-progress-step {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.quote-progress-step span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.quote-progress-step.active {
  color: var(--ink);
}

.quote-progress-step.active span {
  background: var(--ink);
  color: white;
}

.quote-progress-line {
  height: 2px;
  background: var(--line);
  border-radius: 99px;
}

.smart-quote-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  align-items: start;
}

.smart-quote-form {
  padding: 30px;
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
  animation: smartQuoteIn 0.25s ease;
}

@keyframes smartQuoteIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.quote-service-card {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: 0.22s ease;
}

.quote-service-card:hover,
.quote-service-card.active {
  transform: translateY(-4px);
  background: var(--ink);
  color: white;
  box-shadow: var(--soft-shadow);
}

.quote-service-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 99px;
  background: white;
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.quote-service-card.active span,
.quote-service-card:hover span {
  background: rgba(255,255,255,.14);
  color: var(--gold-2);
}

.quote-service-card strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
}

.quote-service-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 750;
}

.quote-service-card.active small,
.quote-service-card:hover small {
  color: rgba(255,255,255,.72);
}

.quote-next-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.quote-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.smart-question-group {
  display: none;
}

.smart-question-group.active {
  display: block;
}

.photo-instructions {
  margin: 16px 0 18px;
  padding: 16px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}

.photo-instructions strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.smart-photo-list {
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed #c7b69f;
  border-radius: 16px;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.smart-photo-list.preview-mode {
  display: grid;
  gap: 12px;
}

.smart-photo-list strong {
  color: var(--ink);
}

.smart-photo-list small {
  color: var(--teal);
  font-weight: 900;
}

.smart-photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.smart-photo-preview-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
}

.photo-checklist {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.photo-checklist label {
  margin: 0;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  font-weight: 850;
}

.photo-checklist input {
  width: auto;
  min-height: auto;
}

.send-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.send-option {
  min-height: 138px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: 0.22s ease;
}

.send-option:hover,
.send-option.best {
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 100% 0%, rgba(201,138,64,.32), transparent 36%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
  color: white;
  box-shadow: var(--soft-shadow);
}

.send-option span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.send-option strong {
  font-size: 19px;
}

.send-option small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.send-option:hover small,
.send-option.best small {
  color: rgba(255,255,255,.72);
}

.quote-preview-panel {
  min-height: 100%;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201,138,64,.24), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
  color: white;
}

.quote-preview-sticky {
  position: sticky;
  top: 104px;
}

.quote-preview-panel h3 {
  color: white;
}

.quote-score {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}

.quote-score span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-score-bar {
  height: 10px;
  margin: 10px 0;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.14);
}

.quote-score-bar div {
  width: 35%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: width 0.25s ease;
}

.quote-score strong {
  color: white;
}

#qPreview {
  min-height: 250px;
  max-height: 470px;
  overflow: auto;
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  white-space: pre-wrap;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(255,255,255,.14);
  line-height: 1.55;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
}

.quote-mini-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.quote-trust-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

.quote-trust-box strong {
  display: block;
  color: white;
}

.quote-trust-box span {
  color: var(--gold-2);
  font-weight: 900;
}

@media(max-width: 1050px) {
  .smart-quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-preview-sticky {
    position: relative;
    top: auto;
  }

  .quote-progress {
    grid-template-columns: repeat(4, 1fr);
  }

  .quote-progress-line {
    display: none;
  }

  .quote-progress-step {
    justify-content: center;
  }
}

@media(max-width: 700px) {
  .smart-quote-form,
  .quote-preview-panel {
    padding: 20px;
  }

  .quote-service-cards,
  .quote-two-col,
  .send-options-grid,
  .photo-checklist {
    grid-template-columns: 1fr;
  }

  .quote-progress-step {
    display: grid;
    place-items: center;
    text-align: center;
    gap: 5px;
  }

  .quote-progress-step strong {
    font-size: 11px;
  }

  .smart-photo-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #qPreview {
    max-height: 360px;
  }
}


/* ===== Premium Local Photo Upgrade ===== */

.premium-photo-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(15, 118, 110, 0.12), transparent 34%),
    var(--paper);
}

.premium-photo-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.premium-photo-feature,
.premium-photo-small {
  position: relative;
  overflow: hidden;
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--soft-shadow);
  transition: 0.24s ease;
}

.premium-photo-feature:hover,
.premium-photo-small:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.premium-photo-image {
  min-height: 560px;
  background-size: cover;
  background-position: center;
  transition: 0.45s ease;
}

.premium-photo-feature:hover .premium-photo-image,
.premium-photo-small:hover div {
  transform: scale(1.045);
}

.premium-photo-text {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  border-radius: 22px;
  color: white;
  background: rgba(17, 24, 39, 0.78);
  backdrop-filter: blur(14px);
}

.premium-photo-text span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.premium-photo-text h3 {
  color: white;
}

.premium-photo-text p {
  color: rgba(255,255,255,.76);
  line-height: 1.6;
}

.premium-photo-side {
  display: grid;
  gap: 18px;
}

.premium-photo-small {
  padding: 0;
}

.premium-photo-small div {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  transition: 0.45s ease;
}

.premium-photo-small strong {
  padding: 20px 20px 5px;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.8px;
}

.premium-photo-small span {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.55;
}

.hero-bg,
.switch-photo,
.pro-photo,
.card-img,
.service-photo,
.premium-photo-image,
.premium-photo-small div {
  background-color: var(--ink);
}

@media(max-width: 1050px) {
  .premium-photo-layout {
    grid-template-columns: 1fr;
  }

  .premium-photo-image {
    min-height: 420px;
  }
}

@media(max-width: 700px) {
  .premium-photo-image {
    min-height: 330px;
  }

  .premium-photo-text {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -88px 14px 14px;
  }

  .premium-photo-small div {
    min-height: 220px;
  }
}


/* ===== Quote Backend Button Fix ===== */

.submit-lead-option,
#qSubmitLead {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 138, 64, 0.35), transparent 36%),
    linear-gradient(135deg, var(--teal), var(--green)) !important;
  color: white !important;
  border-color: rgba(255,255,255,.2) !important;
  box-shadow: 0 18px 45px rgba(15, 118, 110, 0.22);
}

.submit-lead-option span,
.submit-lead-option small,
#qSubmitLead span,
#qSubmitLead small {
  color: rgba(255,255,255,.82) !important;
}

.submit-lead-option strong,
#qSubmitLead strong {
  color: white !important;
}

.backend-submit-status {
  border-color: rgba(15, 118, 110, 0.32);
  background: rgba(15, 118, 110, 0.08);
}

.backend-submit-status.success {
  color: #064e3b;
  background: #d1fae5;
  border-color: #6ee7b7;
}

.backend-submit-status.error {
  color: #7f1d1d;
  background: #fee2e2;
  border-color: #fecaca;
}

.backend-submit-status.loading {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(201,138,64,.18), rgba(15,118,110,.14));
  border-color: var(--gold);
}

.send-option strong {
  display: block;
}

@media(max-width: 700px) {
  .send-options-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===== Remove text fallback and make quote submit cleaner ===== */

.send-options-grid {
  grid-template-columns: repeat(2, 1fr);
}

.submit-lead-option {
  min-height: 155px;
}

.submit-lead-option strong {
  font-size: 22px;
}

.quote-preview-panel .quote-mini-actions {
  grid-template-columns: 1fr;
}

@media(max-width: 700px) {
  .send-options-grid {
    grid-template-columns: 1fr !important;
  }
}
