/* ═══════════════════════════════════════════
   PRICE PER METRE RELINE — STYLESHEET
   pricepermeterreline.com.au
   Colour palette:
     Navy:    #1A2B4A  (primary)
     Orange:  #F97316  (accent)
     Light:   #F8FAFC  (background)
     White:   #FFFFFF
     Text:    #1A1A2E
════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1A1A2E;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography helpers ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #1A2B4A;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 640px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: 10px;
}

.btn-orange {
  background: #F97316;
  color: #fff;
  border-color: #F97316;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.btn-orange:hover {
  background: #ea6b0d;
  border-color: #ea6b0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.45);
}

.btn-navy {
  background: #1A2B4A;
  color: #fff;
  border-color: #1A2B4A;
}
.btn-navy:hover {
  background: #0f1f36;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1A2B4A;
  border-color: #1A2B4A;
}
.btn-outline:hover {
  background: #1A2B4A;
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: #1A1A2E;
  border-color: #1A1A2E;
  border-width: 2px;
}
.btn-outline-dark:hover {
  background: #1A1A2E;
  color: #fff;
}

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

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1A2B4A;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 1;
  min-width: 0;
}

.header-logo-icon {
  flex-shrink: 0;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.header-cta {
  flex-shrink: 0;
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
}

.trust-bar-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.trust-bar-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: linear-gradient(145deg, #1A2B4A 0%, #0f1f36 60%, #08131f 100%);
  color: #fff;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  padding-bottom: 56px;
}

.hero-badge {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  color: #F97316;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(249,115,22,0.35);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 560px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
}

.badge-icon { font-size: 1rem; }

.hero-note {
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.hero-wave {
  display: block;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ══════════════════════════════════════════
   CALCULATOR SECTION
══════════════════════════════════════════ */
.calculator-section {
  background: #F8FAFC;
  padding: 64px 0 80px;
}

.calc-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(26,43,74,0.12);
  padding: 40px 40px;
  max-width: 680px;
  margin: 0 auto;
}

/* Progress Bar */
.progress-bar-wrap {
  margin-bottom: 36px;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e7ef;
  color: #9aabbf;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.progress-step.active .step-dot,
.progress-step.done .step-dot {
  background: #1A2B4A;
  color: #fff;
}

.progress-step.done .step-dot {
  background: #F97316;
}

.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #9aabbf;
  transition: color 0.3s;
}

.progress-step.active .step-label,
.progress-step.done .step-label {
  color: #1A2B4A;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: #e0e7ef;
  margin: 0 8px;
  margin-bottom: 22px;
  transition: background 0.3s;
  min-width: 40px;
}

.progress-line.done {
  background: #F97316;
}

/* Form Steps */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1A2B4A;
  margin-bottom: 24px;
}

/* Form Groups */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.metres-display {
  font-size: 1rem;
  font-weight: 800;
  color: #1A2B4A;
  background: #eef2f9;
  padding: 4px 12px;
  border-radius: 20px;
}

.required { color: #e53e3e; margin-left: 2px; }
.optional { font-weight: 400; color: #888; font-size: 0.82rem; margin-left: 4px; }

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #d1dae6;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #1A1A2E;
  transition: border-color 0.2s;
  background: #fff;
}
.form-input:focus {
  outline: none;
  border-color: #1A2B4A;
}
.form-input.error { border-color: #e53e3e; }

.field-error {
  display: none;
  color: #e53e3e;
  font-size: 0.8rem;
  margin-top: 5px;
}
.field-error.visible { display: block; }

/* Radio Cards (pipe size selector) */
.radio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.radio-card input[type="radio"] { display: none; }

.radio-card-inner {
  border: 2px solid #d1dae6;
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: #fff;
}

.radio-card input:checked + .radio-card-inner {
  border-color: #1A2B4A;
  background: #f0f4fa;
  box-shadow: 0 0 0 2px rgba(26,43,74,0.1);
}

.radio-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1A2B4A;
  margin-bottom: 4px;
}
.radio-card-desc {
  font-size: 0.78rem;
  color: #666;
  margin-bottom: 8px;
}
.radio-card-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #F97316;
  background: rgba(249,115,22,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* Slider */
.slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: linear-gradient(to right, #1A2B4A 0%, #1A2B4A 10%, #d1dae6 10%, #d1dae6 100%);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #F97316;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,0.4);
  cursor: pointer;
}
.slider::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #F97316;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,0.4);
  cursor: pointer;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #888;
  margin-top: 6px;
}

.manual-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.manual-label { font-size: 0.82rem; color: #555; white-space: nowrap; }
.manual-input {
  width: 90px;
  padding: 8px 12px;
  border: 2px solid #d1dae6;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #1A2B4A;
  text-align: center;
  font-family: inherit;
}
.manual-input:focus { outline: none; border-color: #1A2B4A; }

/* Live Price Preview */
.live-price-preview {
  background: linear-gradient(135deg, #1A2B4A, #0f1f36);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 8px 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.live-price-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  flex-basis: 100%;
}
.live-price-amount {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.live-price-amount .ex-gst {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.live-price-incgst {
  font-size: 1rem;
  color: #F97316;
  font-weight: 700;
  margin-left: auto;
}

/* Select pills */
.select-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.select-pill input[type="radio"] { display: none; }
.select-pill span {
  display: inline-block;
  padding: 9px 16px;
  border: 2px solid #d1dae6;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.select-pill input:checked + span {
  border-color: #1A2B4A;
  background: #1A2B4A;
  color: #fff;
}

/* Step Nav */
.step-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.step-nav .btn { flex: 1; justify-content: center; }

/* Quote Result Box (Step 3) */
.quote-result-box {
  background: linear-gradient(135deg, #1A2B4A, #0f1f36);
  color: #fff;
  border-radius: 14px;
  padding: 28px 28px;
  margin-bottom: 28px;
  text-align: center;
  animation: priceReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes priceReveal {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.qr-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.qr-size-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.qr-price-ex {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.qr-price-inc {
  font-size: 1.3rem;
  font-weight: 700;
  color: #F97316;
  margin-bottom: 10px;
}
.qr-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* Thank You */
.thankyou-wrap {
  text-align: center;
  padding: 20px 0;
  animation: fadeInUp 0.4s ease;
}
.thankyou-icon { font-size: 3.5rem; margin-bottom: 12px; }
.thankyou-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1A2B4A;
  margin-bottom: 20px;
}
.thankyou-price-box {
  background: linear-gradient(135deg, #1A2B4A, #0f1f36);
  color: #fff;
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 20px;
}
.ty-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.ty-price {
  font-size: 2rem;
  font-weight: 900;
  color: #F97316;
}
.thankyou-message {
  font-size: 1rem;
  color: #444;
  margin-bottom: 24px;
  line-height: 1.6;
}
.thankyou-warranty {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #666;
}

/* ══════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════ */
.pricing-section {
  padding: 80px 0;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.pricing-card {
  border: 2px solid #e0e7ef;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(26,43,74,0.1);
}

.pricing-card-featured {
  border-color: #1A2B4A;
}

.featured-ribbon {
  background: #1A2B4A;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 6px;
}

.pricing-card-header {
  padding: 24px 24px 16px;
  background: #f9fafc;
}
.pricing-card-featured .pricing-card-header {
  background: #f0f4fa;
}

.pipe-size-badge {
  display: inline-block;
  background: #1A2B4A;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.pricing-card-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1A2B4A;
  margin-bottom: 4px;
}
.pricing-card-header p {
  font-size: 0.82rem;
  color: #666;
}

.pricing-card-body {
  padding: 16px 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.price-row:last-child { border-bottom: none; }
.price-row.highlight .price-value {
  color: #F97316;
}

.price-label { font-size: 0.88rem; color: #555; }
.price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1A1A2E;
}
.price-value small {
  font-size: 0.72rem;
  font-weight: 500;
  color: #888;
}

.pricing-examples {
  padding: 16px 24px;
  background: #f9fafc;
  border-top: 1px solid #e8edf4;
}
.pricing-card-featured .pricing-examples {
  background: #eef3fa;
}

.eg-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 10px;
}

.eg-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #444;
  padding: 4px 0;
}
.eg-price {
  font-weight: 700;
  color: #1A2B4A;
}

.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: #555;
  background: #f0f4fa;
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 28px;
}

.pricing-cta { text-align: center; }

/* ══════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════ */
.why-section {
  padding: 80px 0;
  background: #F8FAFC;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(26,43,74,0.06);
  border: 1px solid #e8edf4;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(26,43,74,0.12);
  transform: translateY(-4px);
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(249,115,22,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-icon {
  font-size: 1.6rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #1A2B4A;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

/* Warranty Banner */
.warranty-banner {
  background: linear-gradient(135deg, #1A2B4A, #0f1f36);
  color: #fff;
  border-radius: 16px;
  padding: 28px 32px;
}

.warranty-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.warranty-badge {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: #F97316;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(249,115,22,0.45);
}

.warranty-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.warranty-text span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how-section {
  padding: 80px 0;
  background: #fff;
}

.steps-list {
  max-width: 680px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: #e0e7ef;
}
.process-step:last-child::before { display: none; }

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #F97316;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(249,115,22,0.35);
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1A2B4A;
  margin-bottom: 6px;
  padding-top: 8px;
}
.step-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}

.how-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════════ */
.testimonials-section {
  padding: 80px 0;
  background: #F8FAFC;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(26,43,74,0.07);
  border: 1px solid #e8edf4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(26,43,74,0.11);
  transform: translateY(-3px);
}

.testimonial-stars {
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e8edf4;
  padding-top: 14px;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1A2B4A;
  margin-bottom: 2px;
}

.testimonial-location {
  font-size: 0.8rem;
  color: #888;
}

/* ══════════════════════════════════════════
   SERVICE AREA SECTION
══════════════════════════════════════════ */
.service-area-section {
  padding: 80px 0;
  background: #fff;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.service-area-col {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e8edf4;
}

.service-area-heading {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1A2B4A;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F97316;
}

.service-area-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-area-list li {
  font-size: 0.85rem;
  color: #444;
  padding-left: 14px;
  position: relative;
}
.service-area-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #F97316;
  font-weight: 900;
}

.service-area-note {
  text-align: center;
  font-size: 0.92rem;
  color: #555;
  background: #fff8f3;
  border: 1px solid rgba(249,115,22,0.2);
  padding: 14px 20px;
  border-radius: 8px;
}

.service-area-link {
  color: #F97316;
  font-weight: 700;
  text-decoration: underline;
}
.service-area-link:hover {
  color: #ea6b0d;
}

/* ══════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════ */
.faq-section {
  padding: 80px 0;
  background: #F8FAFC;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #d1dae6;
}
.faq-item:first-child { border-top: 1px solid #d1dae6; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1A2B4A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-q:hover { color: #F97316; }

.faq-arrow {
  font-size: 0.75rem;
  color: #888;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: #F97316;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 18px;
}
.faq-a p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.7;
}
.faq-a a {
  color: #1A2B4A;
  font-weight: 700;
  text-decoration: underline;
}

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #1A2B4A, #0f1f36);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-band-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-warranty {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0 !important;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,0.8);
  padding: 48px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-logo {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}
.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.footer-callback {
  font-size: 0.8rem;
  color: #F97316;
  font-weight: 600;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-email {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  word-break: break-all;
}
.footer-email:hover { color: #F97316; }
.footer-address { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #F97316; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: #F97316; }

/* ══════════════════════════════════════════
   FLOATING CTA BUTTON (mobile)
══════════════════════════════════════════ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 200;
  background: #F97316;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(249,115,22,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.float-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 28px rgba(249,115,22,0.6);
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
══════════════════════════════════════════ */

/* ── Tablet (< 900px) ── */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile (< 640px) ── */
@media (max-width: 640px) {

  .brand-tagline { display: none; }
  .brand-name { font-size: 0.9rem; }

  .hero { padding: 48px 0 0; }
  .hero-content { padding-bottom: 40px; }

  .trust-bar-sep { display: none; }
  .trust-bar-inner { flex-direction: column; gap: 6px; text-align: center; }

  .trust-badges { gap: 8px; }
  .badge { font-size: 0.78rem; padding: 7px 11px; }

  .calc-card { padding: 24px 20px; border-radius: 12px; }

  .radio-cards { grid-template-columns: 1fr 1fr; }
  .radio-card-title { font-size: 1.1rem; }

  .live-price-amount { font-size: 1.5rem; }

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

  .why-grid { grid-template-columns: 1fr; gap: 12px; }

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

  .service-area-grid { grid-template-columns: 1fr 1fr; }

  .warranty-inner { flex-direction: column; text-align: center; gap: 16px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }

  .float-cta { display: flex; }

  .step-nav { flex-direction: column; }
  .step-nav .btn { flex: none; width: 100%; }

  .how-cta { flex-direction: column; align-items: center; }
  .cta-band-buttons { flex-direction: column; align-items: center; }

  .btn-lg { padding: 16px 28px; font-size: 1rem; }
}

/* ── Very small (< 380px) ── */
@media (max-width: 380px) {
  .radio-cards { grid-template-columns: 1fr; }
  .service-area-grid { grid-template-columns: 1fr; }
}
