/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
  /* Colors */
  --gold: #F5D078;
  --gold-bg: #F5D078;
  --gold-gradient: linear-gradient(135deg, #F5D078 0%, #EDC258 100%);
  --gold-hover: #d4a53e;
  --cream: #F8E8C4;
  --charcoal: #303030;
  --white: #FFFFFF;
  --heading: #222222;
  --text: #666666;
  --text-dark: #444444;
  --border: #303030;
  --border-light: #CCCCCC;
  --border-mid: #999999;
  --border-subtle: #E0E0E0;
  --accent-green: #1B5E20;
  --accent-green-bg: rgba(76,175,80,0.15);
  --accent-teal: #2A9D8F;
  --muted: #AAAAAA;
  --muted-dark: #999999;

  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-logo: 'Montserrat', sans-serif;
  --fs-base: 1.1rem;
  --fs-sm: 0.72rem;
  --fs-md: 1.2rem;
  --fs-lg: 1.3rem;

  /* Layout */
  --container: 1440px;
  --section-py: 5rem;
  --radius: 10px;
  --radius-sm: 6px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.1rem;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.25;
}

.mobile-break {
  display: none;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

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

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

/* ========================================
   Layout
   ======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-header p {
  margin-top: 0.75rem;
  font-size: 1.3rem;
  line-height: 1.4;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn--primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 2px 8px rgba(232, 184, 75, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border-light);
}

.btn--secondary:hover {
  border-color: var(--border-mid);
}

.btn--lg {
  padding: 0.9rem 2.25rem;
  font-size: 1.1rem;
}

/* ========================================
   Navigation — WHITE bar (like Squarespace)
   ======================================== */
.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  max-width: none;
  padding: 0 4rem;
}

.nav__logo-img {
  height: 56px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--heading);
}

.nav__cta {
  margin-left: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-size: 1.1rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================
   Section 1: Hero — WHITE band
   ======================================== */
.hero {
  background: var(--gold-gradient);
  padding: var(--section-py) 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 0 4rem;
  align-items: center;
}

.hero__content {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.hero__ctas {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.hero__heading {
  font-size: 4.1rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero__tagline {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.0rem;
}

.hero__map {
  max-width: 75%;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.hero__subhead {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hero__ctas .btn--primary {
  background: var(--charcoal);
  color: var(--gold);
  border: 1.5px solid var(--charcoal);
}

.hero__ctas .btn--primary:hover {
  background: #444;
}

.hero__ctas .btn--secondary {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.hero__ctas .btn--secondary:hover {
  background: #ededed;
}

/* ========================================
   Placeholder Images
   ======================================== */
.placeholder-img {
  background: #F7F7F7;
  border: 2px dashed #DDD;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  min-height: 320px;
  color: var(--muted);
  gap: 1rem;
}

.placeholder-img span {
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.5;
}

.placeholder-img svg {
  color: #CCCCCC;
}

.placeholder-img--tall {
  min-height: 260px;
}

/* ========================================
   Section 2: Trust Bar — CHARCOAL band
   ======================================== */
.trust-bar {
  background: var(--charcoal);
  padding: 1.15rem 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-bar__item svg {
  flex-shrink: 0;
}

/* ========================================
   Section 3: Services — GOLD band
   ======================================== */
.services {
  background: var(--white);
  padding: var(--section-py) 0;
}

.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.services__grid > .card {
  flex: 1 1 0;
  min-width: 0;
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-card);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card__accent {
  height: 4px;
  background: var(--gold);
}

.card__body {
  padding: 1.5rem;
}

.card__icon {
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  background: var(--white);
  color: var(--accent-green);
}

.card__badge--addon {
  background: #F0F0F0;
  color: var(--text);
}

.card p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Proof Package Breakdown */
.proof-breakdown {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.proof-breakdown h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.proof-breakdown__subtitle {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.proof-breakdown__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.proof-breakdown__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--text-dark);
}

.proof-breakdown__list svg {
  color: var(--accent-teal);
  flex-shrink: 0;
}

/* ========================================
   Section 4: Showcase — WHITE band
   ======================================== */
.showcase {
  background: var(--gold-gradient);
  padding: var(--section-py) 0;
}

/* Competitor maps row */
.showcase__competitors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.showcase__row-label {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading);
  margin-top: 2.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.showcase__competitor {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.25rem;
  box-shadow: var(--shadow-card);
}

.showcase__competitor-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  opacity: 0.75;
}

.showcase__competitor:last-child .showcase__competitor-img {
  opacity: 0.65;
  filter: grayscale(15%);
}

.showcase__competitor-label {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
}

/* Our output row */
.showcase__ours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.showcase__ours-map,
.showcase__ours-proof {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.showcase__ours-img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.showcase__ours-proof .showcase__ours-img {
  object-fit: cover;
  object-position: top center;
  padding: 1rem;
}

.showcase__ours-label {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.showcase__cta {
  text-align: center;
  margin-top: 3rem;
}

.showcase__cta .btn--primary {
  background: var(--charcoal);
  color: var(--gold);
  border: 1.5px solid var(--charcoal);
}

.showcase__cta .btn--primary:hover {
  background: #444;
}

.showcase__pricing {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 1rem;
}

.pricing-placeholder {
  color: var(--gold);
}

/* ========================================
   Section 5: How It Works — GOLD band
   ======================================== */
.how-it-works {
  background: var(--white);
  padding: var(--section-py) 0;
}

.how-it-works .section-header {
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
  position: relative;
}

.step__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.step__line {
  position: absolute;
  top: 50%;
  left: calc(50% + 26px);
  width: calc(100% - 12px);
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.step:last-child .step__line {
  display: none;
}

.step__icon {
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 1.2rem;
  padding: 0 0.5rem;
}

.how-it-works__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
}

/* ========================================
   Section 6: Compliance — WHITE band
   ======================================== */
.compliance {
  background: var(--gold-gradient);
  padding: var(--section-py) 0;
}

.compliance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.compliance__item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}

.compliance__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.compliance__icon {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.compliance__item h3 {
  margin-bottom: 0.4rem;
}

.compliance__item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ========================================
   Section 7: FAQ — GOLD band
   ======================================== */
.faq {
  background: var(--white);
  padding: var(--section-py) 0;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--heading);
  gap: 1rem;
}

.faq__question:hover {
  color: var(--gold-hover);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ========================================
   Section 8: Footer — CHARCOAL band
   ======================================== */
.footer {
  background: var(--charcoal);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  height: 70px;
  filter: invert(1);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1.1rem;
}

.footer__contact a {
  color: var(--gold);
  transition: color 0.2s;
}

.footer__contact a:hover {
  color: #f0c86a;
}

.footer__contact span {
  color: var(--muted);
}

.footer__meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1.1rem;
  color: var(--muted-dark);
}

/* ========================================
   Responsive — Tablet
   ======================================== */
@media (max-width: 1024px) {
  .services__grid > .card {
    flex: 0 1 calc(50% - 0.75rem);
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .step__line {
    display: none;
  }
}

/* ========================================
   Responsive — Mobile
   ======================================== */
@media (max-width: 768px) {
  :root {
    --section-py: 3.5rem;
  }

  .mobile-break {
    display: block;
  }

  h2 {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 2rem;
  }

  /* Nav */
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.75rem;
    text-align: center;
    width: 100%;
  }

  .nav__toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    text-align: left;
  }

  .hero__content {
    grid-column: unset;
    grid-row: unset;
    align-self: unset;
    order: 1;
  }

  .hero__heading {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
  }

  .hero__tagline {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--text-dark);
  }

  .hero__tagline .mobile-break {
    display: none;
  }

  .hero__image {
    grid-column: unset;
    grid-row: unset;
    align-self: unset;
    order: 2;
    margin-top: 1rem;
  }

  .hero__map {
    max-width: 95%;
    display: block;
    margin: 0 auto;
  }

  .hero__ctas {
    grid-column: unset;
    grid-row: unset;
    align-self: unset;
    order: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .hero__ctas .btn {
    font-size: 0.95rem;
    padding: 0.65rem 1.25rem;
  }

  .placeholder-img {
    min-height: 220px;
  }

  /* Trust Bar */
  .trust-bar__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .trust-bar__item {
    white-space: normal;
    text-align: center;
    flex-direction: column;
    gap: 0.25rem;
  }

  /* Services */
  .services__grid > .card {
    flex: 0 1 100%;
  }

  .proof-breakdown {
    padding: 1.5rem;
  }

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

  /* Showcase */
  .showcase__competitors {
    grid-template-columns: 1fr;
  }

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

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step {
    text-align: center;
  }

  .step__line {
    display: none;
  }

  .step__icon {
    margin-bottom: 0.25rem;
  }

  /* Compliance */
  .compliance__grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq__list {
    padding: 0.5rem 1.25rem;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer__meta {
    text-align: center;
  }
}

/* ========================================
   Mobile nav toggle animation
   ======================================== */
.nav__toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Quote Form Page
   ======================================== */
.quote {
  background: var(--white);
  padding: var(--section-py) 0;
  min-height: calc(100vh - 85px);
}

.quote__inner {
  max-width: 740px;
}

.quote__card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-md);
}

.quote__card .section-header {
  margin-bottom: 2rem;
}

.quote__card .section-header h1 {
  font-size: 2.2rem;
}

.quote__card .section-header p {
  font-size: 1.1rem;
}

.form-section-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading);
  margin-bottom: 0.35rem;
}

.form-group .required {
  color: #c0392b;
}

.form-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--muted-dark);
  margin-bottom: 0.35rem;
}

.form-hint-inline {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--heading);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 208, 120, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold-hover);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--gold-hover);
  text-decoration: underline;
  font-weight: 600;
}

.form-checkbox a:hover {
  color: var(--charcoal);
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-submit .btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.9rem;
}

.form-submit .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========================================
   Success Overlay
   ======================================== */
/* ========================================
   Thank You Page
   ======================================== */
.thankyou {
  background: var(--white);
  padding: var(--section-py) 0;
  min-height: calc(100vh - 85px - 150px);
  display: flex;
  align-items: center;
}

.thankyou__inner {
  max-width: 550px;
  text-align: center;
}

.thankyou__icon {
  color: var(--accent-green);
  margin-bottom: 1.25rem;
}

.thankyou h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.thankyou p {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.thankyou__redirect {
  font-size: 0.9rem;
  color: var(--muted-dark);
  margin-bottom: 2rem;
}

/* ========================================
   Legal Pages (Terms, Privacy)
   ======================================== */
.legal {
  background: var(--white);
  padding: var(--section-py) 0;
}

.legal__inner {
  max-width: 800px;
}

.legal__inner h1 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.legal__meta {
  text-align: center;
  color: var(--text);
  font-style: italic;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.legal__inner h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--heading);
}

.legal__inner p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

.legal__inner ul {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

.legal__inner li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  line-height: 1.6;
}

.legal__agreement {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

/* ========================================
   Footer Legal Links
   ======================================== */
.footer__legal-link {
  color: var(--muted-dark);
  transition: color 0.2s;
}

.footer__legal-link:hover {
  color: var(--gold);
}

/* ========================================
   Responsive — Quote Form
   ======================================== */
@media (max-width: 768px) {
  .quote__card {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote__card .section-header h1 {
    font-size: 1.6rem;
  }
}

/* ========================================
   Quote View Page (Customer Quote Page)
   ======================================== */
.quote-view {
  background: var(--white);
  padding: var(--section-py) 0;
  min-height: calc(100vh - 85px);
}

.quote-view__inner {
  max-width: 740px;
}

.quote-view__card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-md);
}

.quote-view__card--center {
  text-align: center;
}

.quote-view__loading {
  color: var(--text);
  font-size: 1.1rem;
}

.quote-view__checkmark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-green-bg);
  color: var(--accent-green);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Summary rows */
.quote-view__summary {
  margin-bottom: 2rem;
}

.quote-view__row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.quote-view__row:last-child {
  border-bottom: none;
}

.quote-view__label {
  font-weight: 600;
  color: var(--heading);
  font-size: 0.95rem;
}

.quote-view__value {
  color: var(--text);
  font-size: 0.95rem;
}

/* Service selection items */
.quote-view__service {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm, 6px);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-view__service:hover {
  border-color: var(--gold);
}

.quote-view__service--base {
  background: var(--cream);
  cursor: default;
}

.quote-view__service--base:hover {
  border-color: var(--border-subtle);
}

.quote-view__checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--gold-hover);
  cursor: pointer;
}

.quote-view__service-check {
  width: 20px;
  flex-shrink: 0;
}

.quote-view__service-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.quote-view__service-info strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--heading);
}

.quote-view__service-desc {
  font-size: 1.1rem;
  color: var(--text);
}

.quote-view__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-green);
  background: var(--accent-green-bg);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  width: fit-content;
  margin-top: 0.25rem;
}

.quote-view__info-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text);
  opacity: 0.4;
  padding: 0 0.15rem;
  vertical-align: middle;
  line-height: 1;
}
.quote-view__info-btn:hover { opacity: 0.7; }

.quote-view__info-detail {
  margin-top: 0.35rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
}

.quote-view__service-price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--heading);
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}

/* Quantity controls */
.quote-view__service-qty {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  margin-right: 1rem;
}

.quote-view__qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-subtle, #ddd);
  border-radius: var(--radius-sm, 6px);
  background: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.quote-view__qty-btn:hover {
  background: var(--cream, #f8f0e0);
}

.quote-view__qty-input {
  width: 40px;
  height: 32px;
  text-align: center;
  border: 1px solid var(--border-subtle, #ddd);
  border-radius: var(--radius-sm, 6px);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  -moz-appearance: textfield;
}

.quote-view__qty-input::-webkit-outer-spin-button,
.quote-view__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Signage info detail descriptions */
.quote-view__signage-detail {
  margin-top: 0.75rem;
}

.quote-view__signage-detail p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Signage nested layout */
.quote-view__signage-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle, #eee);
}

.quote-view__signage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1rem;
}

.quote-view__signage-label {
  font-size: 1.1rem;
  color: var(--heading);
  font-weight: 600;
}

.quote-view__signage-unit {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  opacity: 0.8;
}

/* Hearing information section */
.quote-view__hearing-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle, #E0E0E0);
}

.quote-view__hearing-note {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.quote-view__hearing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

.quote-view__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.quote-view__field--full {
  grid-column: 1 / -1;
}

.quote-view__field label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
}

.quote-view__field input,
.quote-view__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm, 6px);
  background: var(--white);
  color: var(--heading);
  transition: border-color 0.15s;
}

.quote-view__field input:focus,
.quote-view__field textarea:focus {
  outline: none;
  border-color: var(--gold-hover);
  box-shadow: 0 0 0 3px rgba(245, 208, 120, 0.25);
}

.quote-view__field input::placeholder,
.quote-view__field textarea::placeholder {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-view__field textarea {
  resize: vertical;
  min-height: 80px;
}

.quote-view__field-error {
  font-size: 0.85rem;
  color: #c62828;
}

.quote-view__field-hint {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.7;
}

.quote-view__field-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Phone field (standalone, below hearing or services) */
.quote-view__phone-field {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.quote-view__phone-field label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
}

.quote-view__phone-field input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm, 6px);
  background: var(--white);
  color: var(--heading);
  transition: border-color 0.15s;
}

.quote-view__phone-field input:focus {
  outline: none;
  border-color: var(--gold-hover);
  box-shadow: 0 0 0 3px rgba(245, 208, 120, 0.25);
}

.quote-view__phone-field input::placeholder {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Total row */
.quote-view__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-sm, 6px);
  margin: 1.5rem 0;
}

.quote-view__total span:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--heading);
}

.quote-view__total-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--heading);
}

.quote-view__help {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 1.5rem;
}

.quote-view__help a {
  color: var(--charcoal);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-view__card {
    padding: 1.5rem;
  }

  .quote-view__row {
    flex-direction: column;
    gap: 0.2rem;
  }

  .quote-view__service {
    flex-wrap: wrap;
  }

  .quote-view__service-price {
    width: 100%;
    text-align: right;
    margin-top: 0.25rem;
  }

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

  .quote-view__field--full {
    grid-column: 1;
  }
}
