/* ===== Get a Quote — CRO Page Styles ===== */

/* ── Reset / Base ── */
#cf-quote-main {
  font-family: var(--cf-font-body, 'DM Sans', sans-serif);
  color: #0F172A;
  background: #FDFEFE;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#cf-quote-main *,
#cf-quote-main *::before,
#cf-quote-main *::after {
  box-sizing: border-box;
}

#cf-quote-main .cf-container {
  max-width: var(--cf-container-max, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.cfq-hero {
  padding: 72px 0 56px;
  background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 40%, rgba(0, 82, 255, 0.03) 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.cfq-hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cfq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(0, 82, 255, 0.06);
  border: 1px solid rgba(0, 82, 255, 0.15);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: #0052FF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.cfq-hero-title {
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 16px;
  line-height: 1.15;
}

.cfq-hero-accent {
  background: linear-gradient(135deg, #FF5B1A, #FF8C42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cfq-hero-subtitle {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cfq-hero-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.cfq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.cfq-btn-primary {
  background: #FF5B1A;
  color: #FFFFFF;
  border-color: #FF5B1A;
  box-shadow: 0 4px 16px rgba(255, 91, 26, 0.3);
}

.cfq-btn-primary:hover {
  background: #E84E15;
  border-color: #E84E15;
  box-shadow: 0 6px 24px rgba(255, 91, 26, 0.4);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.cfq-btn-ghost {
  background: transparent;
  color: #0F172A;
  border-color: #E2E8F0;
}

.cfq-btn-ghost:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
  color: #0F172A;
}

.cfq-btn-dark {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.cfq-btn-dark:hover {
  background: #1E293B;
  color: #FFFFFF;
}

.cfq-btn-lg {
  padding: 16px 32px;
  font-size: 15px;
  border-radius: 12px;
}

.cfq-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Trust Bar ── */
.cfq-trust-bar {
  padding: 0;
  margin-top: -1px;
  background: #0B1528;
}

.cfq-trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.cfq-trust-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px;
}

.cfq-trust-number {
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.cfq-trust-suffix {
  font-family: var(--cf-font-body, 'DM Sans', sans-serif);
  font-size: 18px;
  font-weight: 600;
  color: #60A5FA;
}

.cfq-trust-label {
  font-size: 12px;
  font-weight: 500;
  color: #94A3B8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cfq-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
}

/* ── Logos Section ── */
.cfq-logos-section {
  padding: 40px 0;
  border-bottom: 1px solid #E2E8F0;
}

.cfq-logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #94A3B8;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cfq-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cfq-logo-item span {
  font-family: var(--cf-font-body, 'DM Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #CBD5E1;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.cfq-logo-item:hover span {
  color: #94A3B8;
}

/* ── Section Headers (shared) ── */
.cfq-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cfq-section-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0, 82, 255, 0.06);
  border: 1px solid rgba(0, 82, 255, 0.12);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  color: #0052FF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.cfq-section-heading {
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
  line-height: 1.2;
}

.cfq-section-sub {
  font-size: 15px;
  color: #64748B;
  margin: 0;
  line-height: 1.6;
}

/* ── Features Section ── */
.cfq-features-section {
  padding: 64px 0;
}

.cfq-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cfq-feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.25s;
}

.cfq-feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.cfq-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.cfq-fi-blue   { background: rgba(0, 82, 255, 0.08); }
.cfq-fi-orange { background: rgba(255, 91, 26, 0.08); }
.cfq-fi-green  { background: rgba(16, 185, 129, 0.08); }
.cfq-fi-purple { background: rgba(139, 92, 246, 0.08); }
.cfq-fi-red    { background: rgba(239, 68, 68, 0.08); }
.cfq-fi-teal   { background: rgba(20, 184, 166, 0.08); }

.cfq-feature-title {
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px;
}

.cfq-feature-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* ── Form Section ── */
.cfq-form-section {
  padding: 56px 0;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.cfq-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: start;
}

.cfq-col-left,
.cfq-col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Form Header ── */
.cfq-form-header {
  margin-bottom: 8px;
}

.cfq-card-title {
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px;
}

.cfq-form-desc {
  font-size: 14px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

/* ── Form Card / Section ── */
.cfq-form-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cfq-section {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
}

.cfq-section-title {
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Service Grid ── */
.cfq-service-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cfq-service-btn:hover {
  border-color: #0052FF;
  background: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.08);
}

.cfq-service-btn.active {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-color: #0052FF;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.16);
  transform: translateY(-1px);
}

.cfq-service-icon {
  font-size: 22px;
  margin-bottom: 6px;
  transition: transform 0.2s ease;
}

.cfq-service-btn:hover .cfq-service-icon,
.cfq-service-btn.active .cfq-service-icon {
  transform: scale(1.12);
}

.cfq-service-name {
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
}

.cfq-service-btn.active .cfq-service-name {
  color: #0052FF;
}

.cfq-service-price {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  margin-top: 4px;
}

.cfq-service-btn.active .cfq-service-price {
  color: #1D4ED8;
}

/* ── Turnaround Grid ── */
.cfq-turnaround-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cfq-ta-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.cfq-ta-btn:hover {
  border-color: #FF5B1A;
  background: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 91, 26, 0.08);
}

.cfq-ta-btn.active {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border-color: #FF5B1A;
  box-shadow: 0 4px 16px rgba(255, 91, 26, 0.16);
  transform: translateY(-1px);
}

.cfq-ta-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.cfq-ta-badge-rush {
  background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
  color: #DC2626;
  border: 1px solid #FECACA;
}

.cfq-ta-badge-popular {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  color: #0052FF;
  border: 1px solid #BFDBFE;
}

.cfq-ta-badge-save {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  color: #059669;
  border: 1px solid #A7F3D0;
}

.cfq-ta-time {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin-top: 4px;
}

.cfq-ta-btn.active .cfq-ta-time {
  color: #C2410C;
}

.cfq-ta-sub {
  font-size: 11px;
  color: #64748B;
  margin-top: 2px;
}

/* ── Form Fields ── */
.cfq-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cfq-field {
  margin-bottom: 0;
}

.cfq-section .cfq-field:last-child {
  margin-top: 14px;
}

.cfq-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #475569;
  margin-bottom: 6px;
}

.cfq-required {
  color: #EF4444;
}

.cfq-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #94A3B8;
}

.cfq-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--cf-font-body, 'DM Sans', sans-serif);
  color: #0F172A;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.cfq-input::placeholder {
  color: #94A3B8;
}

.cfq-input:focus {
  border-color: #0052FF;
  box-shadow: 0 0 0 3.5px rgba(0, 82, 255, 0.12);
  background: #FFFFFF;
}

.cfq-textarea {
  min-height: 85px;
  resize: vertical;
  line-height: 1.5;
}

/* ── Volume Slider ── */
.cfq-volume-section {
  padding: 20px 24px;
}

.cfq-volume-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cfq-volume-header .cfq-section-title {
  margin-bottom: 0;
}

.cfq-volume-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 4px 14px;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 1.5px solid #FF5B1A;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 800;
  color: #FF5B1A;
  font-family: var(--cf-font-body, 'DM Sans', sans-serif);
  box-shadow: 0 2px 8px rgba(255, 91, 26, 0.15);
}

.cfq-slider-wrap {
  padding: 0 2px;
  margin-bottom: 16px;
}

.cfq-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #E2E8F0;
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
}

.cfq-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FF5B1A;
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 10px rgba(255, 91, 26, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.cfq-slider::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

.cfq-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FF5B1A;
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 10px rgba(255, 91, 26, 0.4);
  cursor: pointer;
}

/* ── Discount Tiers ── */
.cfq-discount-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.cfq-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  border-radius: 8px;
  background: #F8FAFC;
  border: 1.5px solid transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cfq-tier.active {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border-color: #10B981;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.cfq-tier-range {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
}

.cfq-tier.active .cfq-tier-range {
  color: #047857;
  font-weight: 700;
}

.cfq-tier-pct {
  font-size: 12px;
  font-weight: 700;
  color: #94A3B8;
  font-family: var(--cf-font-body, 'DM Sans', sans-serif);
  margin-top: 2px;
}

.cfq-tier.active .cfq-tier-pct {
  color: #059669;
  font-weight: 800;
}

/* ── Estimate Panel (Dark) ── */
.cfq-estimate-panel {
  background: linear-gradient(135deg, #0B1528 0%, #122340 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(11, 21, 40, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cfq-estimate-header {
  padding: 16px 20px 0;
}

.cfq-estimate-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #60A5FA;
}

.cfq-estimate-body {
  padding: 16px 20px 20px;
}

.cfq-estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.cfq-est-label {
  font-size: 12px;
  color: #94A3B8;
  font-weight: 500;
}

.cfq-est-value {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  font-family: var(--cf-font-body, 'DM Sans', sans-serif);
}

.cfq-est-green {
  color: #34D399 !important;
  font-weight: 700 !important;
}

.cfq-estimate-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 0;
}

.cfq-estimate-dashed {
  border: none;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.12);
  margin: 12px 0;
}

.cfq-estimate-total {
  text-align: center;
  padding-top: 4px;
}

.cfq-est-total-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748B;
  margin-bottom: 4px;
}

.cfq-est-total-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #FF5B1A;
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  line-height: 1.1;
}

.cfq-est-total-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748B;
  margin-top: 4px;
}

/* ── Micro Trust ── */
.cfq-micro-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
}

.cfq-micro-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
}

/* ── Actions ── */
.cfq-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-bottom: 24px;
}

.cfq-actions-note {
  font-size: 12px;
  color: #94A3B8;
  margin: 0;
}

/* ── Form Error ── */
.cfq-form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
}

/* ── Success Screen ── */
.cfq-success {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 0;
}

.cfq-success-icon {
  width: 80px;
  height: 80px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cfq-success-title {
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  font-size: 28px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 12px;
}

.cfq-success-greeting {
  font-size: 15px;
  color: #64748B;
  margin: 0 0 24px;
  line-height: 1.6;
}

.cfq-summary-total-val {
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  font-size: 28px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 12px;
}

.cfq-success-receipt {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  margin-bottom: 20px;
  font-family: var(--cf-font-body, 'DM Sans', sans-serif);
}

.cfq-receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
}

.cfq-receipt-label {
  color: #64748B;
  font-weight: 500;
}

.cfq-receipt-value {
  color: #0F172A;
  font-weight: 600;
}

.cfq-receipt-discount {
  background: #ECFDF5;
  margin: 4px -20px;
  padding: 8px 20px;
  border-radius: 6px;
}

.cfq-receipt-green {
  color: #10B981 !important;
}

.cfq-receipt-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 8px 0;
}

.cfq-receipt-total .cfq-receipt-value {
  font-size: 18px;
  font-weight: 800;
}

.cfq-receipt-orange {
  color: #FF5B1A !important;
}

.cfq-success-note {
  font-size: 13px;
  color: #64748B;
  margin: 0 0 24px;
  line-height: 1.6;
}

.cfq-success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Testimonials ── */
.cfq-testimonials-section {
  padding: 64px 0;
}

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

.cfq-testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}

.cfq-testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cfq-testimonial-featured {
  border-color: #FF5B1A;
  box-shadow: 0 0 0 1px rgba(255, 91, 26, 0.1);
}

.cfq-testimonial-stars {
  font-size: 16px;
  color: #F59E0B;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.cfq-testimonial-text {
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}

.cfq-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
}

.cfq-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.cfq-av-1 { background: #0052FF; }
.cfq-av-2 { background: #FF5B1A; }
.cfq-av-3 { background: #10B981; }

.cfq-testimonial-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
}

.cfq-testimonial-role {
  display: block;
  font-size: 12px;
  color: #94A3B8;
  margin-top: 1px;
}

/* ── FAQ ── */
.cfq-faq-section {
  padding: 64px 0;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

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

.cfq-faq-item {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cfq-faq-item:hover {
  border-color: rgba(0, 82, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.06);
}

.cfq-faq-item.open {
  border-color: var(--primary-blue, #0052FF) !important;
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.1) !important;
  background: #FFFFFF !important;
}

.cfq-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #0F172A !important;
  text-align: left;
  font-family: var(--cf-font-body, 'DM Sans', sans-serif);
  gap: 12px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.cfq-faq-trigger:hover,
.cfq-faq-trigger:focus,
.cfq-faq-trigger:active {
  background: rgba(0, 82, 255, 0.03) !important;
  color: var(--primary-blue, #0052FF) !important;
  outline: none !important;
}

.cfq-faq-item.open .cfq-faq-trigger {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.06) 0%, rgba(0, 82, 255, 0.01) 100%) !important;
  color: var(--primary-blue, #0052FF) !important;
  font-weight: 700;
}

.cfq-faq-chevron {
  flex-shrink: 0;
  color: #64748B;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.cfq-faq-trigger:hover .cfq-faq-chevron {
  color: var(--primary-blue, #0052FF);
}

.cfq-faq-item.open .cfq-faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-blue, #0052FF) !important;
}

.cfq-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  background: #FAFCFF;
  border-top: 1px solid transparent;
}

.cfq-faq-item.open .cfq-faq-answer {
  max-height: 320px;
  border-top-color: rgba(0, 82, 255, 0.1);
}

.cfq-faq-answer p {
  padding: 16px 24px 20px;
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

.cfq-faq-answer a {
  color: var(--primary-blue, #0052FF);
  text-decoration: underline;
  font-weight: 600;
}

.cfq-faq-answer a:hover {
  color: #0041CC;
}

/* ── Final CTA ── */
.cfq-final-cta {
  padding: 72px 0;
}

.cfq-final-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cfq-final-title {
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 12px;
  line-height: 1.2;
}

.cfq-final-sub {
  font-size: 15px;
  color: #64748B;
  margin: 0 0 28px;
  line-height: 1.6;
}

.cfq-final-note {
  font-size: 12px;
  color: #94A3B8;
  margin: 16px 0 0;
}

/* ── Sticky Mobile CTA ── */
.cfq-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
}

.cfq-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 480px;
  margin: 0 auto;
}

.cfq-sticky-price {
  font-family: var(--cf-font-heading, 'DM Serif Display', serif);
  font-size: 20px;
  font-weight: 700;
  color: #FF5B1A;
}

.cfq-sticky-btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cfq-grid {
    grid-template-columns: 1fr;
  }

  .cfq-col-right {
    order: -1;
  }

  .cfq-estimate-panel {
    order: -1;
  }
}

@media (max-width: 768px) {
  .cfq-hero {
    padding: 48px 0 32px;
  }

  .cfq-hero-title {
    font-size: 28px;
  }

  .cfq-hero-cta-row {
    flex-direction: column;
    gap: 10px;
  }

  .cfq-hero-cta-row .cfq-btn {
    width: 100%;
    max-width: 300px;
  }

  .cfq-trust-grid {
    flex-wrap: wrap;
  }

  .cfq-trust-stat {
    flex: 0 0 50%;
    padding: 20px 12px;
  }

  .cfq-trust-divider {
    display: none;
  }

  .cfq-trust-number {
    font-size: 24px;
  }

  .cfq-logos-row {
    gap: 20px;
  }

  .cfq-logo-item span {
    font-size: 14px;
  }

  .cfq-features-grid {
    grid-template-columns: 1fr;
  }

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

  .cfq-turnaround-grid {
    grid-template-columns: 1fr;
  }

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

  .cfq-discount-tiers {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cfq-actions {
    flex-direction: column;
  }

  .cfq-btn {
    width: 100%;
  }

  .cfq-sticky-cta {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .cfq-discount-tiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .cfq-est-total-value {
    font-size: 24px;
  }

  .cfq-success-actions {
    flex-direction: column;
  }
}

/* Sticky right column on desktop displays */
@media (min-width: 992px) {
  .cfq-col-right {
    position: sticky;
    top: 110px;
    z-index: 10;
  }
}

/* ===== Ultra-Wide Displays (1536px+) ===== */
@media (min-width: 1536px) {
  #cf-quote-main .cf-container {
    max-width: var(--cf-container-max, 1440px) !important;
  }

  .cfq-grid {
    gap: 40px !important;
  }
}
