/* GreenFox Energy - Quote Funnel Styles */

/* Hide HubSpot chat widget */
#hubspot-messages-iframe-container {
  display: none !important;
}

/* ================================
   Loading Overlay
================================ */
.quiz-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg, #F5FBF6);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.quiz-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.quiz-loader__fox {
  width: 120px;
  height: auto;
  animation: foxPulse 1.6s ease-in-out infinite;
}
@keyframes foxPulse {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 1; }
}

/* ================================
   CSS Variables
================================ */
:root {
  --color-green: #2E8B57;
  --color-green-dark: #1B5E3C;
  --color-green-light: #5CB85C;
  --color-green-pale: #E8F5E9;
  --color-green-bg: #F5FBF6;
  --color-orange: #FF7043;
  --color-orange-dark: #F4511E;
  --color-dark: #1A1A1A;
  --color-gray-900: #2D2D2D;
  --color-gray-700: #4A4A4A;
  --color-gray-500: #757575;
  --color-gray-300: #BDBDBD;
  --color-gray-200: #E0E0E0;
  --color-gray-100: #F5F5F5;
  --color-white: #ffffff;
  --color-bg: #F5FBF6;
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 4px 12px rgba(27, 67, 50, 0.1);
  --shadow-lg: 0 12px 24px rgba(27, 67, 50, 0.12);
  --shadow-xl: 0 20px 40px rgba(27, 67, 50, 0.15);
  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-700);
  background: var(--color-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ================================
   Buttons
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: normal;
  text-align: center;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}

.btn--primary:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-gray-700);
  border-color: var(--color-gray-300);
}

.btn--outline:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn--block {
  width: 100%;
}

.btn--ghost {
  background: transparent;
  color: var(--color-gray-500);
  border-color: transparent;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
}

.btn--ghost:hover {
  color: var(--color-green);
  background: var(--color-green-pale);
}

/* ================================
   Header
================================ */
.quote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.quote-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-green-dark);
}

.quote-header__logo strong {
  color: var(--color-green);
  font-weight: 700;
}

.quote-header__logo-img {
  height: 40px;
  width: auto;
}

.quote-header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
  padding: 0.5rem 1rem;
  background: var(--color-green-pale);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.quote-header__phone:hover {
  background: var(--color-green-light);
  color: var(--color-dark);
  text-decoration: none;
}

.quote-header__phone svg {
  color: var(--color-green);
}

/* Quote header: mobile — logo only + circular phone icon (no text) */
@media (max-width: 768px) {
  .quote-header {
    padding: 0.5rem 1rem;
  }

  .quote-header__logo-text {
    display: none;
  }

  .quote-header__logo-img {
    height: 36px;
  }

  .quote-header__phone {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .quote-header__phone-text {
    display: none;
  }

  .quote-header__phone svg {
    width: 20px;
    height: 20px;
  }
}

/* ================================
   Progress Bar
================================ */
.progress-bar-wrap {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding-bottom: 0.5rem;
}

.progress-bar {
  height: 4px;
  background: var(--color-gray-200);
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-green), var(--color-green-dark));
  width: 0%;
  transition: width var(--transition-slow);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1.5rem 0;
}

.progress-labels span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gray-300);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
}

.progress-labels span.is-active {
  color: var(--color-green);
}

.progress-labels span.is-done {
  color: var(--color-gray-500);
}

/* ================================
   Quiz Main
================================ */
.quiz-main {
  min-height: calc(100vh - 65px - 4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
  position: relative;
}

.quiz-form {
  width: 100%;
  max-width: 640px;
}

/* ================================
   Quiz Steps
================================ */
.quiz-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.quiz-step.is-active {
  display: block;
}

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

.quiz-step__title {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  color: var(--color-gray-900);
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.quiz-step__subtitle {
  font-size: 1rem;
  color: var(--color-gray-500);
  text-align: center;
  margin-bottom: 2rem;
}

/* ================================
   Quiz Options
================================ */
.quiz-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.quiz-options--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

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

.quiz-options--stack {
  grid-template-columns: 1fr;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .quiz-options--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .quiz-options--two,
  .quiz-options--grid {
    grid-template-columns: 1fr;
  }
  .quiz-options--two,
  .quiz-options--stack {
    max-width: 100%;
  }
}

/* Quiz Option */
.quiz-option {
  cursor: pointer;
}

.quiz-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
}

.quiz-option__card:hover {
  border-color: var(--color-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.quiz-option input:checked + .quiz-option__card {
  border-color: var(--color-green);
  background: var(--color-green-pale);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
}

.quiz-option__card--compact {
  padding: 1rem;
}

.quiz-option__card--row {
  flex-direction: row;
  text-align: left;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.quiz-option__icon {
  color: var(--color-gray-500);
  margin-bottom: 0.75rem;
  transition: color var(--transition-base);
}

.quiz-option__icon--small {
  margin-bottom: 0;
  flex-shrink: 0;
}

.quiz-option__icon svg,
.quiz-success__icon svg,
.bill-calculator__result-icon svg,
.calc-transition__icon svg,
.order-summary svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quiz-option input:checked + .quiz-option__card .quiz-option__icon {
  color: var(--color-green);
}

.quiz-option__text {
  flex: 1;
}

.quiz-option__label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.quiz-option__desc {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gray-500);
}

/* ================================
   Quiz Inputs
================================ */
.quiz-input-group {
  margin-bottom: 1rem;
}

.quiz-input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
}

.quiz-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--color-gray-900);
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.quiz-input:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(127, 191, 63, 0.2);
}

.quiz-input::placeholder {
  color: var(--color-gray-500);
}

.quiz-input--textarea {
  resize: vertical;
  min-height: 80px;
}

.quiz-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .quiz-input-row {
    grid-template-columns: 1fr;
  }
}

/* Postcode input group with button */
.quiz-step[data-step="8"] .quiz-input-group {
  display: flex;
  gap: 1rem;
  max-width: 460px;
  margin: 2rem auto;
}

.quiz-step[data-step="8"] .quiz-input {
  flex: 1;
  text-transform: uppercase;
}

/* Contact Form */
.quiz-contact-form {
  max-width: 540px;
  margin: 2rem auto 0;
}

/* Checkbox */
.quiz-checkbox {
  display: flex;
  gap: 0.75rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.quiz-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-checkbox__mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--color-white);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  position: relative;
  transition: all var(--transition-base);
}

.quiz-checkbox input:checked + .quiz-checkbox__mark {
  background: var(--color-green);
  border-color: var(--color-green);
}

.quiz-checkbox input:checked + .quiz-checkbox__mark::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.quiz-checkbox__label {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  line-height: 1.5;
}

.quiz-checkbox__label a {
  text-decoration: underline;
}

/* ================================
   Bill Calculator
================================ */
.bill-calculator {
  max-width: 500px;
  margin: 2rem auto 0;
}

.bill-calculator__input-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.bill-calculator__input-wrap:focus-within {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(127, 191, 63, 0.2);
}

.bill-calculator__currency {
  padding: 1rem 0 1rem 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  user-select: none;
}

.bill-calculator__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 1rem 0.5rem;
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  min-width: 0;
  -moz-appearance: textfield;
}

.bill-calculator__input::-webkit-outer-spin-button,
.bill-calculator__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bill-calculator__input::placeholder {
  color: var(--color-gray-300);
  font-weight: 500;
}

.bill-calculator__period {
  padding: 1rem 1.25rem 1rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray-500);
  white-space: nowrap;
  user-select: none;
}

.bill-calculator__input.quiz-input--error {
  animation: shake 0.4s ease;
}

.bill-calculator__input-wrap:has(.quiz-input--error) {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* Calculator Result */
.bill-calculator__result {
  margin-top: 1.5rem;
  background: var(--color-white);
  border: 2px solid var(--color-green);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.bill-calculator__result-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-green-pale);
}

.bill-calculator__result-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  color: var(--color-green);
  flex-shrink: 0;
}

.bill-calculator__result-text {
  flex: 1;
}

.bill-calculator__result-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gray-500);
  margin-bottom: 0.15rem;
}

.bill-calculator__result-panels {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

/* Breakdown */
.bill-calculator__breakdown {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.bill-calculator__breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-gray-700);
}

.bill-calculator__breakdown-row + .bill-calculator__breakdown-row {
  border-top: 1px solid var(--color-gray-100);
}

.bill-calculator__breakdown-row span:last-child {
  font-weight: 600;
  color: var(--color-gray-900);
}

.bill-calculator__breakdown-row--highlight {
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  border-top: 1px dashed var(--color-gray-300) !important;
}

.bill-calculator__breakdown-row--highlight span:last-child {
  color: var(--color-green-dark);
  font-size: 1.05rem;
  font-weight: 700;
}

/* Disclaimer */
.bill-calculator__disclaimer {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  color: var(--color-gray-500);
  line-height: 1.5;
  background: var(--color-gray-100);
}

/* Use Recommendation Button */
.bill-calculator__result .btn {
  margin: 1rem 1.5rem 1.5rem;
  width: calc(100% - 3rem);
}

/* ================================
   Fox Helper
================================ */
.fox-helper {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.fox-helper__avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  animation: fox-breathe 3s ease-in-out infinite;
}

@keyframes fox-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fox-helper__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.fox-helper__bubble {
  flex: 1;
}

.fox-helper__bubble p {
  font-size: 0.95rem;
  color: var(--color-gray-700);
  line-height: 1.6;
}

/* ================================
   Back Button
================================ */
.quiz-back {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--color-gray-700);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}

.quiz-back.is-visible {
  opacity: 1;
  visibility: visible;
}

.quiz-back:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .quiz-back {
    bottom: 1rem;
    left: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* ================================
   Success State
================================ */
.quiz-success {
  text-align: center;
  padding: 2rem 0;
}

.quiz-success__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-green-pale);
  border-radius: 50%;
  color: var(--color-green);
}

.quiz-success h2 {
  font-size: 2rem;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

.quiz-success > p {
  font-size: 1.1rem;
  color: var(--color-gray-600);
  max-width: 400px;
  margin: 0 auto 2rem;
}

.quiz-success__summary {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.quiz-success__summary h3 {
  font-size: 1rem;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.quiz-success__summary dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

.quiz-success__summary dt {
  font-size: 0.85rem;
  color: var(--color-gray-500);
}

.quiz-success__summary dd {
  font-size: 0.95rem;
  color: var(--color-gray-900);
  font-weight: 500;
}

.quiz-success__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   Error Feedback (BUG F)
================================ */
.quiz-input--error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.quiz-input-hint {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  margin-top: 0.375rem;
  transition: color 0.3s ease;
}

.quiz-input-hint--attention {
  color: var(--color-orange);
  font-weight: 600;
}

.quiz-input--needs-number {
  border-color: var(--color-orange) !important;
  box-shadow: 0 0 0 3px rgba(255, 112, 67, 0.15) !important;
  animation: gentle-pulse 1.5s ease-in-out 2;
}

@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 112, 67, 0.15); }
  50% { box-shadow: 0 0 0 5px rgba(255, 112, 67, 0.25); }
}

.quiz-input-error {
  display: block;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ================================
   Loading Button (BUG B)
================================ */
.btn--loading {
  position: relative;
  pointer-events: none;
  opacity: 0.75;
}

.btn--loading::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5em;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================
   Error Screen Icon
================================ */
.quiz-success__icon--error {
  color: #f59e0b;
}

/* ================================
   Package Configurator
================================ */
/* Promo Banner */
.promo-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(46,139,87,0.25);
  animation: promoPulse 2s ease-in-out 1;
}

@keyframes promoPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.015); }
}

.promo-banner__icon {
  flex-shrink: 0;
  background: rgba(255,255,255,0.2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.promo-banner__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.promo-banner__text strong {
  font-size: 1rem;
}

.promo-banner__text span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.promo-banner__main {
  flex: 1;
  min-width: 0;
}

.promo-banner__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.promo-banner__toggle:hover {
  opacity: 0.95;
}

.promo-banner__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.promo-banner.is-open .promo-banner__chevron {
  transform: rotate(180deg);
}

.promo-banner__tc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.promo-banner.is-open .promo-banner__tc {
  max-height: 220px;
}

.promo-banner__tc-list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.8rem;
  line-height: 1.45;
  opacity: 0.95;
}

.promo-banner__tc-list li {
  margin-bottom: 0.35rem;
}

.promo-banner__tc-list li:last-child {
  margin-bottom: 0;
}

.pkg-configurator {
  margin-top: 1.5rem;
}

.pkg-section {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.pkg-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.pkg-section__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0;
}

.pkg-section__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-green-dark);
}

.pkg-panel-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}

.pkg-panel-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-gray-300);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--color-gray-700);
  flex-shrink: 0;
}

.pkg-panel-btn:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  box-shadow: var(--shadow-sm);
}

.pkg-panel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pkg-panel-display {
  text-align: center;
  min-width: 100px;
}

.pkg-panel-count {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1;
}

.pkg-panel-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gray-500);
  margin-top: 0.15rem;
}

.pkg-panel-kw {
  display: block;
  font-size: 0.8rem;
  color: var(--color-green);
  font-weight: 600;
  margin-top: 0.25rem;
}

.pkg-panel-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-gray-500);
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-gray-100);
}

/* Battery / Add-on Options */
.pkg-options,
.pkg-addons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.pkg-option,
.pkg-addon {
  cursor: pointer;
}

.pkg-option input,
.pkg-addon input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pkg-option__card,
.pkg-addon__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--color-gray-100);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.pkg-option__card:hover,
.pkg-addon__card:hover {
  border-color: var(--color-gray-300);
}

.pkg-option input:checked + .pkg-option__card,
.pkg-addon input:checked + .pkg-addon__card {
  border-color: var(--color-green);
  background: var(--color-green-pale);
}

.pkg-option__info,
.pkg-addon__info {
  display: flex;
  flex-direction: column;
}

.pkg-option__name,
.pkg-addon__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gray-900);
}

.pkg-option__desc,
.pkg-addon__desc {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin-top: 0.1rem;
}

.pkg-option__price,
.pkg-addon__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-700);
  white-space: nowrap;
  margin-left: 1rem;
}

.pkg-addon__vat {
  font-size: 0.85em;
  color: var(--color-gray-500);
  font-weight: 500;
}

/* Included as Standard */
.pkg-included-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pkg-included__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-green);
  border-radius: var(--radius-md);
  background: var(--color-green-pale);
}

.pkg-included__check {
  flex-shrink: 0;
  color: var(--color-green);
}

.pkg-included__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pkg-included__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-gray-900);
}

.pkg-included__desc {
  font-size: 0.8rem;
  color: var(--color-gray-500);
}

.pkg-included__badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-green);
  background: rgba(34, 139, 34, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pkg-section--included .pkg-section__title {
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.pkg-section__subtitle {
  font-size: 0.85rem;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
  margin-top: -0.25rem;
}

/* Extra separation when two included blocks are stacked */
.pkg-section--included + .pkg-section--included {
  margin-top: 0.25rem;
}

/* Single-column list for longer items (certificates, warranty, etc.) */
.pkg-included-compact--full {
  grid-template-columns: 1fr;
}

.pkg-included-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 2.25rem;
  list-style: none;
  padding: 1rem 1.25rem 1rem 1rem;
  margin: 0;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-200);
  border-left: 3px solid var(--color-green);
  box-shadow: var(--shadow-sm);
}

.pkg-included-compact li {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-gray-700);
  padding-left: 1.5em;
  position: relative;
}

.pkg-included-compact li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45em;
  height: 0.28em;
  border-left: 2.5px solid var(--color-green);
  border-bottom: 2.5px solid var(--color-green);
  transform: rotate(-45deg);
}

@media (max-width: 480px) {
  .pkg-included-compact {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.85rem 1rem 0.85rem 0.85rem;
  }
}

/* Battery Quantity Cards */
.pkg-batteries {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pkg-battery-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.pkg-battery-card:hover {
  border-color: var(--color-gray-300);
}

.pkg-battery-card.is-active {
  border-color: var(--color-green);
  background: var(--color-green-pale);
  box-shadow: 0 0 0 1px var(--color-green);
}

.pkg-battery-card__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.pkg-battery-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gray-900);
}

.pkg-battery-card__desc {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin-top: 0.1rem;
}

.pkg-battery-card__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pkg-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-gray-300);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-gray-700);
  cursor: pointer;
  transition: all 0.15s;
}

.pkg-qty-btn:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  box-shadow: var(--shadow-sm);
}

.pkg-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  box-shadow: none;
}

.pkg-battery-card__count {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  min-width: 1.5rem;
  text-align: center;
}

.pkg-battery-card.is-active .pkg-battery-card__count {
  color: var(--color-green-dark);
}

.pkg-battery-card__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-700);
  white-space: nowrap;
  min-width: 5.5rem;
  text-align: right;
}

.pkg-battery-card.is-active .pkg-battery-card__price {
  color: var(--color-green-dark);
}

/* Pricing Summary */
.pkg-pricing {
  background: var(--color-gray-900);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.pkg-pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.pkg-pricing__row + .pkg-pricing__row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pkg-pricing__total {
  font-size: 1.35rem;
  font-weight: 800;
}

.pkg-pricing__row--labour {
  color: inherit;
}

.pkg-pricing__row--saving {
  color: var(--color-green-light);
}

.pkg-pricing__saving {
  font-weight: 700;
}

.pkg-pricing__tc {
  font-size: 0.75rem;
  opacity: 0.85;
  font-style: normal;
  font-weight: 500;
}

.pkg-pricing__row--deposit {
  color: var(--color-orange);
}

.pkg-pricing__deposit {
  font-size: 1.1rem;
  font-weight: 700;
}

.pkg-pricing__row--balance {
  opacity: 0.7;
  font-size: 0.85rem;
}

.pkg-pricing__note {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Savings Callout */
.pkg-savings {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-green-pale);
  border: 1px solid var(--color-green);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-green-dark);
  line-height: 1.2;
}

.pkg-savings__icon {
  flex-shrink: 0;
}

.pkg-savings > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
}

.pkg-savings__label {
  font-size: 0.75rem;
  font-weight: 600;
}

.pkg-savings__amount {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}

.pkg-savings__sub {
  display: block;
  font-size: 0.7rem;
  opacity: 0.75;
  line-height: 1.15;
}

.pkg-savings__disclaimer {
  display: block;
  font-size: 0.65rem;
  opacity: 0.7;
  font-style: italic;
  line-height: 1.15;
}

/* Trust Badges */
.pkg-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--color-gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.pkg-trust span::before {
  content: '\2713 ';
  color: var(--color-green);
}

/* ================================
   Quiz step Trustpilot card (bubble)
================================ */
.quiz-trustpilot-card {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--color-green-pale);
  border: 1px solid rgba(34, 139, 34, 0.2);
  border-radius: 0.9rem;
  text-align: center;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-trustpilot-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition-base);
}

.quiz-trustpilot-card__link:hover {
  opacity: 0.9;
  text-decoration: none;
  color: inherit;
}

.quiz-trustpilot-card .trustpilot-widget {
  padding: 0.25rem 0;
}

/* ================================
   Social Proof / Trustpilot Badge
================================ */
.pkg-social-proof {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pkg-social-proof .trustpilot-widget {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-gray-100);
}

/* Testimonial quote — compact, readable */
.pkg-social-proof__quote p {
  font-size: 0.8rem;
  color: var(--color-gray-700);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
  max-width: 100%;
}

.pkg-social-proof__quote-meta {
  display: block;
  font-size: 0.7rem;
  color: var(--color-gray-600);
  letter-spacing: 0.01em;
}

.pkg-social-proof__quote-meta strong {
  color: var(--color-dark);
  font-weight: 600;
}

.pkg-social-proof__quote-meta a {
  color: var(--color-gray-600);
  text-decoration: none;
}

.pkg-social-proof__quote-meta a:hover {
  text-decoration: underline;
}

.pkg-social-proof__quote span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-gray-500);
}

/* ================================
   Calculating Transition
================================ */
.calc-transition {
  text-align: center;
  padding: 4rem 1rem;
}

.calc-transition__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-green-pale);
  border-radius: 50%;
  color: var(--color-green);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.2); }
  50% { box-shadow: 0 0 0 20px rgba(46, 139, 87, 0); }
}

.calc-transition__icon svg {
  animation: spin-slow 4s linear infinite;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.calc-transition__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.calc-transition__subtitle {
  font-size: 0.95rem;
  color: var(--color-gray-500);
  margin-bottom: 2rem;
}

.calc-transition__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.calc-transition__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  animation: dot-bounce 1.4s ease-in-out infinite;
}

.calc-transition__dots span:nth-child(2) { animation-delay: 0.2s; }
.calc-transition__dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-bounce {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.2); }
}

/* ================================
   Savings Anchor (order summary)
================================ */
.order-summary__savings-anchor {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--color-green-pale), #d4edda);
  border: 1px solid var(--color-green);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-green-dark);
}

.order-summary__savings-anchor svg {
  flex-shrink: 0;
}

.order-summary__savings-anchor strong {
  display: block;
  font-size: 1rem;
}

.order-summary__savings-anchor span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ================================
   Order Summary
================================ */
.order-summary {
  margin-top: 1.5rem;
}

.order-summary__card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.order-summary__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.order-summary__lines {
  margin-bottom: 1rem;
}

.order-summary__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.order-summary__line + .order-summary__line {
  border-top: 1px solid var(--color-gray-100);
}

.order-summary__line span:last-child {
  font-weight: 600;
  color: var(--color-gray-900);
}

.order-summary__totals {
  border-top: 2px solid var(--color-gray-200);
  padding-top: 0.75rem;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.order-summary__row strong {
  font-weight: 700;
  color: var(--color-gray-900);
}

.order-summary__row--highlight {
  background: var(--color-orange);
  color: var(--color-white);
  margin: 0.5rem -1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.order-summary__row--highlight strong {
  color: var(--color-white);
  font-size: 1.15rem;
}

.order-summary__contact {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-gray-700);
}

.order-summary__contact strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.order-summary__contact span {
  display: block;
  margin-bottom: 0.2rem;
}

.order-summary__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.order-summary__actions .btn--primary svg,
.order-summary__actions .btn--outline svg {
  margin-right: 0.25rem;
}

.order-summary__cta-note {
  font-size: 0.85rem;
  color: var(--color-gray-600);
  margin: 0.5rem 0 0;
  text-align: center;
}

.order-summary__note {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin: 0.5rem 0 0;
  font-style: italic;
}

.callback-time-picker {
  margin-top: 0.75rem;
  padding: 1rem;
  background: var(--color-green-pale);
  border: 1px solid rgba(34, 139, 34, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.callback-time-picker__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

.callback-time-picker__select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  background: var(--color-white);
}

.order-summary__protection {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--color-green-pale);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: var(--color-green-dark);
  line-height: 1.5;
}

.order-summary__protection svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ================================
   Responsive
================================ */
@media (max-width: 768px) {
  .quiz-main {
    padding: 2rem 1.25rem 4rem;
  }
  .quiz-form {
    max-width: 100%;
  }
  .quiz-contact-form {
    max-width: 100%;
  }
  .bill-calculator {
    max-width: 100%;
  }
  .quiz-step[data-step="8"] .quiz-input-group {
    max-width: 100%;
  }
  .quiz-success > p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .quiz-main {
    padding: 1.5rem 1rem 3.5rem;
    justify-content: flex-start;
    padding-top: 2rem;
  }
  .quiz-step__title {
    font-size: 1.375rem;
  }
  .fox-helper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .quiz-step[data-step="8"] .quiz-input-group {
    flex-direction: column;
  }
  .quiz-success__summary dl {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .progress-labels {
    padding: 0.4rem 0.75rem 0;
  }
  .progress-labels span {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .quiz-main {
    padding: 1rem 0.75rem 3rem;
  }
  .quiz-option__card {
    padding: 1rem 0.75rem;
  }
  .quiz-option__label {
    font-size: 0.9rem;
  }
  .quiz-option__desc {
    font-size: 0.8rem;
  }
  .bill-calculator__currency {
    font-size: 1.25rem;
    padding-left: 1rem;
  }
  .bill-calculator__input {
    font-size: 1.25rem;
  }
  .bill-calculator__period {
    font-size: 0.85rem;
  }
  .bill-calculator__result-header {
    padding: 1rem;
  }
  .bill-calculator__breakdown {
    padding: 0.75rem 1rem;
  }
  .bill-calculator__disclaimer {
    padding: 0.5rem 1rem;
  }
  .bill-calculator__result .btn {
    margin: 0.75rem 1rem 1rem;
    width: calc(100% - 2rem);
  }
  .quiz-back {
    bottom: 0.75rem;
    left: 0.75rem;
    width: 40px;
    height: 40px;
  }
  .pkg-section {
    padding: 1rem;
  }
  .pkg-battery-card {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .pkg-battery-card__info {
    flex: 1 1 100%;
  }
  .pkg-battery-card__qty {
    margin-left: 0;
  }
  .pkg-battery-card__price {
    min-width: auto;
    margin-left: auto;
  }
  .pkg-panel-selector {
    gap: 1.25rem;
  }
  .pkg-panel-count {
    font-size: 2rem;
  }
  .pkg-pricing {
    padding: 1rem;
  }
  .pkg-pricing__total {
    font-size: 1.15rem;
  }
  .pkg-trust {
    gap: 0.75rem;
    font-size: 0.7rem;
  }
  .order-summary__card {
    padding: 1rem;
  }
  .order-summary__row--highlight {
    margin: 0.5rem -1rem;
    padding: 0.75rem 1rem;
  }
  .order-summary__contact {
    padding: 1rem;
  }
}

/* ================================
   Cookie Banner (quote page)
================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-dark, #1a1a1a);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  width: 100%;
  flex-wrap: wrap;
}

.cookie-banner__content p {
  flex: 1;
  font-size: 0.85rem;
  opacity: 0.9;
  min-width: 200px;
  margin: 0;
}

.cookie-banner__content a {
  color: var(--color-green, #2E8B57);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner__accept,
.cookie-banner__decline {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.cookie-banner__accept {
  background: var(--color-green, #2E8B57);
  color: #fff;
  border-color: var(--color-green, #2E8B57);
}

.cookie-banner__accept:hover {
  opacity: 0.9;
}

/* ============================================
   PACKAGE SPLIT LAYOUT — Map + Configurator
   ============================================ */

.quiz-step[data-step="package"] {
  width: calc(100vw - 3rem);
  max-width: 1100px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.pkg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.pkg-split__map {
  position: sticky;
  top: 5rem;
}

.pkg-split__map .pkg-section__title {
  margin-bottom: 0.75rem;
}

.map-confirm__container {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 2px solid var(--color-gray-200, #e5e7eb);
  margin-bottom: 0.75rem;
}

.map-search {
  margin-bottom: 0.75rem;
}

.map-search--contact {
  position: relative;
  z-index: 10;
}

.map-search--contact .mapboxgl-ctrl-geocoder .mapboxgl-ctrl-geocoder--suggestions {
  max-height: 240px;
}

.map-search .mapboxgl-ctrl-geocoder {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-family);
  font-size: 0.95rem;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
}

.map-search .mapboxgl-ctrl-geocoder:focus-within {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
}

.map-search .mapboxgl-ctrl-geocoder .mapboxgl-ctrl-geocoder--input {
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--color-gray-900);
}

.map-search .mapboxgl-ctrl-geocoder .mapboxgl-ctrl-geocoder--input::placeholder {
  color: var(--color-gray-500);
}

.map-search .mapboxgl-ctrl-geocoder .mapboxgl-ctrl-geocoder--icon-search {
  top: 12px;
  left: 10px;
}

.map-confirm__instructions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--color-green-50, #f0fdf4);
  border: 1px solid var(--color-green-200, #bbf7d0);
  border-radius: var(--radius-md, 10px);
  font-size: 0.8125rem;
  color: var(--color-green-dark, #1B5E3C);
  margin-bottom: 0.5rem;
}

.map-confirm__instructions svg {
  flex-shrink: 0;
  color: var(--color-green, #2E8B57);
}

.map-confirm__coords {
  text-align: center;
  font-size: 0.7rem;
  color: var(--color-gray-400, #9ca3af);
  font-family: monospace;
  min-height: 1rem;
}

.pkg-split__map-included {
  margin-top: 1.25rem;
}

.pkg-split__map-included .pkg-section__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.pkg-split__map-included .pkg-section__subtitle {
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.pkg-split__map-included .pkg-included-compact {
  margin-top: 0;
}

.map-marker-pulse {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-green, #2E8B57);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  cursor: grab;
  position: relative;
}

.map-marker-pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-green, #2E8B57);
  transform: translate(-50%, -50%);
  animation: marker-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes marker-ping {
  0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
  75%  { opacity: 0;   transform: translate(-50%, -50%) scale(1.8); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.8); }
}

.pkg-split__config {
  min-width: 0;
}

@media (max-width: 768px) {
  .quiz-step[data-step="package"] {
    width: auto;
    max-width: none;
    margin-left: 0;
    transform: none;
  }

  .pkg-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pkg-split__map {
    position: static;
  }

  .map-confirm__container {
    height: 280px;
    border-radius: var(--radius-md, 10px);
  }
}

@media (max-width: 480px) {
  .map-confirm__container {
    height: 220px;
  }
}

button[type="submit"]:disabled,
.btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.cookie-banner__decline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-banner__decline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 0.75rem 1rem;
  }
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .cookie-banner__content p {
    min-width: 0;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}
