/*
  Dealett Unified UI
  One visual component layer mapped onto the existing markup.
  This file intentionally preserves all page structure and JavaScript hooks.
*/

:root {
  color-scheme: light;
  --dui-bg-deep: #0D1726;
  --dui-bg: #F8F5F0;
  --dui-surface: #FFFFFF;
  --dui-surface-soft: #F8F5F0;
  --dui-surface-muted: #F8F5F0;
  --dui-text: #0D1726;
  --dui-muted: #777777;
  --dui-muted-2: #AAAAAA;
  --dui-line: rgba(13, 23, 38, .11);
  --dui-line-strong: rgba(13, 23, 38, .18);
  --dui-accent: #C8792B;
  --dui-accent-soft: rgba(200, 121, 43, .12);
  --dui-success: #256E52;
  --dui-danger: #B63D32;
  --dui-radius: 8px;
  --dui-radius-pill: 999px;
  --dui-shadow: 0 18px 48px rgba(13, 23, 38, .08);
  --dui-shadow-soft: 0 10px 30px rgba(13, 23, 38, .06);
  --dui-font-heading: "General Sans", Inter, Arial, sans-serif;
  --dui-font-body: Inter, Arial, sans-serif;
  --dui-ease: cubic-bezier(.2, .8, .2, 1);
  --dui-fast: 180ms var(--dui-ease);
  --dui-page-x: clamp(20px, 4vw, 64px);
  --dui-section-y: clamp(56px, 7vw, 112px);
  --dui-shell: min(100% - (var(--dui-page-x) * 2), 1480px);
}

html {
  background: var(--dui-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dui-bg) !important;
  color: var(--dui-text) !important;
  font-family: var(--dui-font-body) !important;
  letter-spacing: 0 !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  display: none !important;
}

* {
  box-sizing: border-box;
}

:where(h1, h2, h3, h4, h5, h6, .quiz-title, .result-title) {
  color: var(--dui-text) !important;
  font-family: var(--dui-font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

:where(p, li, label, input, select, textarea, button, a, span) {
  font-family: var(--dui-font-body);
  letter-spacing: 0 !important;
}

:where(p, li, .result-desc, .quiz-subtitle) {
  color: var(--dui-muted);
  line-height: 1.6;
}

:where(a) {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

:where(img) {
  max-width: 100%;
}

:where(.site-header, .footer, .cart-drawer-panel, .dealett-chat-panel) {
  font-family: var(--dui-font-body) !important;
}

/* Layout primitives */
:where(
  .result-shell,
  .business-shell,
  .about-container,
  .support-shell,
  .account-shell,
  .bredband-results-shell,
  .page-shell,
  .package-options,
  .legal-document-shell
) {
  width: var(--dui-shell) !important;
  max-width: 1480px !important;
  margin-inline: auto !important;
}

:where(
  .result-section,
  .business-size-section,
  .business-plans-section,
  .about-section,
  .support-section,
  .account-content-section,
  .account-overview,
  .bredband-results-section,
  .package-options,
  .legal-document-main
) {
  padding-block: var(--dui-section-y) !important;
  background: var(--dui-bg) !important;
}

:where(.section-head, .about-section-head, .support-head, .bredband-results-top, .package-options__head) {
  display: grid !important;
  gap: 12px !important;
  max-width: 760px !important;
  margin-bottom: clamp(28px, 4vw, 56px) !important;
}

:where(.section-head.center, .about-section-head.center, .support-head) {
  margin-inline: auto !important;
  text-align: center !important;
  justify-items: center !important;
}

:where(
  .section-kicker,
  .shop-breadcrumb,
  .business-kicker,
  .about-kicker,
  .support-eyebrow,
  .bredband-kicker,
  .coverage-badge,
  .account-kicker,
  .quiz-refinement-kicker,
  .offer-card__label,
  .business-plan-badge,
  .offers-strip-badge
) {
  color: var(--dui-accent) !important;
  font-family: var(--dui-font-body) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

:where(.section-head h2, .about-section-head h2, .support-head h2, .bredband-results-top h2, .package-options__head h2) {
  margin: 0 !important;
  font-size: clamp(34px, 4vw, 64px) !important;
  line-height: .98 !important;
}

:where(.section-head p, .about-section-head p, .support-head p, .bredband-results-copy) {
  max-width: 680px !important;
  margin: 0 !important;
  color: var(--dui-muted) !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
}

/* Buttons */
:where(
  .primary-btn,
  .full-btn,
  .adeala-btn,
  .business-action--primary,
  .business-plan-btn,
  .support-btn-primary,
  .bredband-primary-btn,
  .bredband-search-btn,
  .bredband-choose-btn,
  .coverage-btn--primary,
  .checkout-primary-btn,
  .quiz-next-button,
  .offer-card__cta,
  .dealett-chat-send,
  .dealett-chat-widget-button--primary,
  .dealett-chat-feedback__button--primary
) {
  display: inline-flex !important;
  min-height: 46px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border: 1px solid var(--dui-bg-deep) !important;
  border-radius: var(--dui-radius) !important;
  padding: 0 20px !important;
  background: var(--dui-bg-deep) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-family: var(--dui-font-body) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
  transition: transform var(--dui-fast), background-color var(--dui-fast), border-color var(--dui-fast), color var(--dui-fast);
}

:where(
  .account-ghost-btn,
  .business-action--secondary,
  .support-btn-light,
  .support-btn-ghost,
  .bredband-secondary-btn,
  .coverage-btn--ghost,
  .coverage-soft-btn,
  .recommendation-results-toggle,
  .offer-answer-edit,
  .compare-open-button,
  .compare-clear-button,
  .quiz-refinement-link,
  .dealett-chat-chip,
  .dealett-chat-widget-button,
  .dealett-chat-feedback__button
) {
  display: inline-flex !important;
  min-height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border: 1px solid var(--dui-line-strong) !important;
  border-radius: var(--dui-radius) !important;
  padding: 0 18px !important;
  background: var(--dui-surface) !important;
  color: var(--dui-text) !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  text-decoration: none !important;
  transition: transform var(--dui-fast), background-color var(--dui-fast), border-color var(--dui-fast), color var(--dui-fast);
}

:where(
  .quiz-back-inline,
  .legal-document-back,
  .cart-drawer-close,
  .dealett-chat-close,
  .dealett-chat-reset,
  .modal-close-btn
) {
  border-radius: var(--dui-radius) !important;
  color: var(--dui-text) !important;
  transition: background-color var(--dui-fast), color var(--dui-fast), border-color var(--dui-fast);
}

:where(
  .primary-btn,
  .full-btn,
  .adeala-btn,
  .business-action--primary,
  .business-plan-btn,
  .support-btn-primary,
  .bredband-primary-btn,
  .bredband-search-btn,
  .bredband-choose-btn,
  .coverage-btn--primary,
  .quiz-next-button,
  .offer-card__cta,
  .dealett-chat-send
):hover {
  transform: translateY(-1px) !important;
  background: #17213A !important;
  border-color: #17213A !important;
}

:where(
  .account-ghost-btn,
  .business-action--secondary,
  .support-btn-light,
  .support-btn-ghost,
  .bredband-secondary-btn,
  .coverage-btn--ghost,
  .coverage-soft-btn,
  .recommendation-results-toggle,
  .offer-answer-edit,
  .compare-open-button,
  .compare-clear-button,
  .quiz-refinement-link,
  .dealett-chat-chip,
  .dealett-chat-widget-button,
  .dealett-chat-feedback__button
):hover {
  transform: translateY(-1px) !important;
  border-color: rgba(15, 23, 40, .28) !important;
  background: #F7F5F1 !important;
  color: var(--dui-text) !important;
}

/* Hero systems */
:where(
  .hero,
  .shop-hero,
  .business-hero,
  .about-hero,
  .support-hero,
  .bredband-hero,
  .coverage-hero,
  .package-hero,
  .account-hero
) {
  position: relative !important;
  min-height: min(760px, calc(100vh - 76px)) !important;
  padding: clamp(72px, 9vw, 132px) var(--dui-page-x) clamp(54px, 7vw, 96px) !important;
  background: var(--dui-bg) !important;
  color: var(--dui-text) !important;
  overflow: hidden !important;
}

:where(
  .shop-hero-image,
  .business-hero-image,
  .about-hero-image,
  .support-hero-image,
  .bredband-hero-image,
  .coverage-hero__img
) {
  position: absolute !important;
  inset: auto var(--dui-page-x) 56px auto !important;
  width: min(42vw, 560px) !important;
  height: min(48vh, 520px) !important;
  border-radius: var(--dui-radius) !important;
  object-fit: cover !important;
  opacity: .82 !important;
  filter: saturate(.82) contrast(.96) !important;
}

:where(
  .shop-hero-content,
  .business-hero-inner,
  .about-hero-inner,
  .support-hero-inner,
  .bredband-hero-inner,
  .coverage-hero__inner,
  .package-hero,
  .account-shell
) {
  width: var(--dui-shell) !important;
  max-width: 1480px !important;
  margin-inline: auto !important;
}

:where(
  .shop-hero-content,
  .business-hero-copy,
  .about-hero-copy,
  .support-hero-copy,
  .bredband-hero-copy,
  .coverage-hero__copy,
  .package-hero__copy,
  .account-hero-copy
) {
  max-width: min(680px, 100%) !important;
}

:where(
  .shop-hero h1,
  .business-hero h1,
  .about-hero h1,
  .support-hero h1,
  .bredband-hero h1,
  .coverage-hero h1,
  .package-hero h1,
  .account-hero h1,
  .hero h1
) {
  max-width: 820px !important;
  margin: 18px 0 20px !important;
  color: var(--dui-text) !important;
  font-size: clamp(48px, 7vw, 112px) !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
}

:where(
  .shop-hero-lead,
  .business-hero-copy p,
  .about-hero-copy p,
  .support-hero-copy p,
  .bredband-hero-copy p,
  .coverage-hero__copy p,
  .package-hero__copy p,
  .account-hero-copy p
) {
  max-width: 660px !important;
  color: var(--dui-muted) !important;
  font-size: clamp(17px, 1.6vw, 22px) !important;
  line-height: 1.45 !important;
}

:where(.business-hero-panel, .about-hero-side, .support-hero-panel, .coverage-hero__panel, .bredband-search-panel, .account-hero-card) {
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  background: rgba(255, 255, 255, .84) !important;
  box-shadow: var(--dui-shadow-soft) !important;
  backdrop-filter: blur(16px);
}

.hero.quiz-in-hero {
  min-height: auto !important;
  padding-block: 38px 64px !important;
  background: var(--dui-bg) !important;
}

.hero-showcase {
  width: var(--dui-shell) !important;
  margin-inline: auto !important;
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  overflow: hidden !important;
  background: var(--dui-surface) !important;
}

.hero-offer-tile {
  min-height: clamp(420px, 58vh, 620px) !important;
  border: 0 !important;
  border-right: 1px solid var(--dui-line) !important;
  border-radius: 0 !important;
  padding: clamp(28px, 4vw, 56px) !important;
  background: var(--dui-surface) !important;
  transition: background-color var(--dui-fast), transform var(--dui-fast) !important;
}

.hero-offer-tile--family { background: #fff !important; }
.hero-offer-tile--group { background: #F8F6F1 !important; }
.hero-offer-tile--duo { background: #F1EEE7 !important; }
.hero-offer-tile--single { background: #FBFAF7 !important; }

.hero-offer-tile:hover {
  transform: translateY(-2px) !important;
  background: #fff !important;
}

.hero-offer-count,
.hero-offer-gift {
  color: var(--dui-text) !important;
  font-family: var(--dui-font-heading) !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

.hero-offer-gift {
  color: var(--dui-accent) !important;
}

.home-intro {
  width: var(--dui-shell) !important;
  margin-inline: auto !important;
  padding-block: clamp(52px, 6vw, 92px) !important;
}

/* Cards and panels */
:where(
  .offer-card,
  .bredband-offer-card,
  .business-plan-card,
  .business-stat-card,
  .business-mini-card,
  .about-story-card,
  .about-value-card,
  .about-process-card,
  .about-team-card,
  .support-faq-item,
  .support-contact-wrap,
  .support-panel-card,
  .account-card,
  .pro-card,
  .checkout-card,
  .contact-card,
  .cart-summary-card,
  .empty-cart-card,
  .package-card,
  .hero-panel-card,
  .quiz-card,
  .quiz-refinement-panel,
  .operator-person-card,
  .login-card,
  .legal-document-shell
) {
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  background: var(--dui-surface) !important;
  box-shadow: none !important;
  color: var(--dui-text) !important;
}

:where(
  .offer-card:hover,
  .bredband-offer-card:hover,
  .business-plan-card:hover,
  .account-card:hover,
  .package-card:hover,
  .support-faq-item:hover
) {
  transform: translateY(-2px) !important;
  border-color: var(--dui-line-strong) !important;
  box-shadow: var(--dui-shadow-soft) !important;
}

:where(.offer-card--top, .business-plan-card.is-featured, .operator-plan-row.is-selected, .bredband-offer-card.active, .offer-card.is-selected) {
  border-color: rgba(201, 121, 43, .42) !important;
  box-shadow: inset 0 3px 0 var(--dui-accent) !important;
}

:where(.offer-card::before, .bredband-offer-card::before, .business-plan-card::before, .package-card::before) {
  background: var(--dui-accent) !important;
}

:where(.offer-card-logo, .offer-card__head, .bredband-operator-logo-wrap) {
  border: 0 !important;
  border-radius: var(--dui-radius) !important;
  background: #F6F4F0 !important;
}

:where(.offer-card__logo, .offer-card-logo img, .operator-choice-grid img, .bredband-operator-logo-wrap img, .coverage-operator img) {
  filter: none !important;
}

.offer-card__gift-badge {
  border: 1px solid rgba(15, 23, 40, .2) !important;
  border-radius: 50% !important;
  background: var(--dui-accent) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(201, 121, 43, .2) !important;
}

.offer-card__stat,
.account-stat-row .account-card,
.business-mini-card,
.about-mini-card {
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  background: #FBFAF8 !important;
}

.offer-card__reason,
.dealett-chat-offer-note {
  border-left: 2px solid var(--dui-accent) !important;
  border-radius: var(--dui-radius) !important;
  background: var(--dui-accent-soft) !important;
  color: var(--dui-text) !important;
}

/* Forms and filters */
:where(
  input,
  select,
  textarea,
  .checkout-field input,
  .form-field input,
  .support-field input,
  .support-field select,
  .support-field textarea,
  .bredband-input-wrap,
  .dealett-chat-input,
  .dealett-chat-address-input,
  .operator-date-field,
  .operator-no-binding-button
) {
  border: 1px solid var(--dui-line-strong) !important;
  border-radius: var(--dui-radius) !important;
  background: var(--dui-surface) !important;
  color: var(--dui-text) !important;
  box-shadow: none !important;
  font-family: var(--dui-font-body) !important;
  transition: border-color var(--dui-fast), background-color var(--dui-fast), box-shadow var(--dui-fast);
}

:where(input, select, textarea):focus,
:where(.dealett-chat-input, .dealett-chat-address-input):focus {
  border-color: var(--dui-accent) !important;
  box-shadow: 0 0 0 4px rgba(201, 121, 43, .12) !important;
  outline: 0 !important;
}

:where(.operator-filter, .range-filter, .bredband-filters, .plan-toolbar) {
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  background: rgba(255, 255, 255, .72) !important;
  box-shadow: none !important;
}

:where(.range-filter input, input[type="range"]) {
  accent-color: var(--dui-accent) !important;
}

/* Quiz */
.hero.quiz-in-hero .hero-quiz-mount {
  width: var(--dui-shell) !important;
  max-width: 1480px !important;
}

.hero.quiz-in-hero .quiz-card {
  padding: clamp(24px, 4vw, 48px) !important;
  background: var(--dui-surface) !important;
}

.hero.quiz-in-hero .quiz-card-toolbar {
  align-items: flex-start !important;
  padding-right: 0 !important;
}

.hero.quiz-in-hero .quiz-progress-row {
  position: relative !important;
  display: grid !important;
  justify-items: end !important;
  gap: 8px !important;
}

.hero.quiz-in-hero .quiz-progress-track,
.quiz-progress-track {
  height: 4px !important;
  border-radius: var(--dui-radius-pill) !important;
  background: rgba(15, 23, 40, .1) !important;
}

.hero.quiz-in-hero .quiz-progress-inline,
.quiz-progress-inline {
  background: var(--dui-accent) !important;
}

.hero.quiz-in-hero .quiz-ai-actions {
  position: absolute !important;
  top: 54px !important;
  right: 0 !important;
  z-index: 10 !important;
  margin: 0 !important;
}

.hero.quiz-in-hero .quiz-ai-button,
.quiz-ai-button {
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  min-height: 40px !important;
  max-width: 240px !important;
  flex-direction: row !important;
  gap: 6px !important;
  padding: 0 14px !important;
  border: 1px solid var(--dui-line-strong) !important;
  border-radius: var(--dui-radius) !important;
  background: var(--dui-surface) !important;
  color: var(--dui-text) !important;
  box-shadow: none !important;
  font-family: var(--dui-font-body) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.1 !important;
  text-align: left !important;
}

.hero.quiz-in-hero .quiz-ai-button span,
.quiz-ai-button span,
.hero.quiz-in-hero .quiz-ai-button strong,
.quiz-ai-button strong {
  display: inline !important;
  max-width: none !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

.hero.quiz-in-hero .quiz-ai-button strong {
  font-weight: 750 !important;
}

.hero.quiz-in-hero .quiz-ai-button:hover,
.hero.quiz-in-hero .quiz-ai-button:focus-visible {
  transform: translateY(-1px) !important;
  border-color: rgba(15, 23, 40, .28) !important;
  background: #F7F5F1 !important;
  color: var(--dui-text) !important;
}

.hero.quiz-in-hero .quiz-title {
  max-width: 880px !important;
  margin: clamp(28px, 4vw, 56px) auto 0 !important;
  font-size: clamp(36px, 5vw, 76px) !important;
  line-height: .98 !important;
}

.hero.quiz-in-hero .quiz-subtitle,
.hero.quiz-in-hero .quiz-card-body > h3,
.result-desc {
  max-width: 720px !important;
  margin-inline: auto !important;
  color: var(--dui-muted) !important;
  font-size: clamp(15px, 1.5vw, 18px) !important;
}

.hero.quiz-in-hero .quiz-option,
.quiz-option,
.business-size,
.coverage-maplibre-action,
.coverage-maplibre-themes button,
.coverage-maplibre-network,
.coverage-maplibre-operator,
.coverage-operator,
.quiz-refinement-option {
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  background: var(--dui-surface) !important;
  color: var(--dui-text) !important;
  box-shadow: none !important;
  transition: transform var(--dui-fast), background-color var(--dui-fast), border-color var(--dui-fast), color var(--dui-fast);
}

.hero.quiz-in-hero .quiz-option:hover,
.quiz-option:hover,
.business-size:hover,
.coverage-maplibre-action:hover,
.coverage-maplibre-themes button:hover,
.coverage-maplibre-network:hover,
.coverage-maplibre-operator:hover,
.coverage-operator:hover,
.quiz-refinement-option:hover {
  transform: translateY(-1px) !important;
  border-color: var(--dui-line-strong) !important;
  background: #F7F5F1 !important;
}

.hero.quiz-in-hero .quiz-option.active,
.hero.quiz-in-hero .quiz-option.selected,
.quiz-option.active,
.quiz-option.selected,
.business-size.is-active,
.coverage-maplibre-action.is-active,
.coverage-maplibre-themes button.is-active,
.coverage-maplibre-network.is-active,
.coverage-maplibre-operator.is-active,
.coverage-operator.is-active {
  border-color: var(--dui-accent) !important;
  background: rgba(201, 121, 43, .1) !important;
  color: var(--dui-text) !important;
  box-shadow: inset 0 0 0 1px var(--dui-accent) !important;
}

.hero.quiz-in-hero .offers-recommendation-grid {
  gap: 20px !important;
}

.hero.quiz-in-hero .offers-recommendation-grid.offers-recommendation-grid--featured {
  grid-template-columns: repeat(2, minmax(0, 340px)) minmax(280px, 340px) !important;
  max-width: 1100px !important;
}

.hero.quiz-in-hero .offers-recommendation-grid.offers-recommendation-grid--expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(280px, 330px) !important;
  max-width: 1280px !important;
}

.hero.quiz-in-hero .offers-recommendation-grid > .quiz-refinement-panel {
  grid-column: 3 !important;
  grid-row: 1 !important;
  align-self: start !important;
}

.hero.quiz-in-hero .offers-recommendation-grid--expanded > .quiz-refinement-panel {
  grid-column: 4 !important;
}

.hero.quiz-in-hero .offers-recommendation-grid > .recommendation-results-toggle {
  grid-column: 1 / 3 !important;
}

.quiz-refinement-panel {
  padding: 22px !important;
}

.quiz-refinement-copy h4 {
  margin: 0 0 10px !important;
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 1.02 !important;
}

.quiz-refinement-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

/* Chat */
.dealett-chat {
  right: 22px !important;
  bottom: 22px !important;
  z-index: 1100 !important;
}

.dealett-chat-toggle {
  width: auto !important;
  min-width: 154px !important;
  height: 48px !important;
  min-height: 48px !important;
  border: 1px solid var(--dui-line-strong) !important;
  border-radius: var(--dui-radius) !important;
  padding: 0 16px !important;
  background: var(--dui-bg-deep) !important;
  color: #fff !important;
  box-shadow: var(--dui-shadow-soft) !important;
}

.dealett-chat-toggle::before,
.dealett-chat-toggle::after,
.dealett-chat-toggle__sparkles,
.dealett-chat-toggle__divider,
.dealett-chat-toggle__bot,
.dealett-chat-toggle__arrow {
  display: none !important;
}

.dealett-chat-toggle__label {
  display: block !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.dealett-chat-toggle__label::after {
  content: " AI";
}

.dealett-chat-panel {
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  background: var(--dui-surface) !important;
  box-shadow: var(--dui-shadow) !important;
}

.dealett-chat-header,
.dealett-chat-composer {
  border-color: var(--dui-line) !important;
  background: #FBFAF8 !important;
}

.dealett-chat-bubble {
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  box-shadow: none !important;
}

.dealett-chat-message--user .dealett-chat-bubble {
  background: var(--dui-bg-deep) !important;
  color: #fff !important;
}

/* Checkout, account, legal, maps */
.checkout-layout {
  background: var(--dui-bg) !important;
}

.checkout-summary-panel,
.checkout-main-column,
.checkout-progress,
.cart-drawer-panel,
.bredband-modal-card,
.coverage-modal-card,
.coverage-map-panel,
.coverage-maplibre-shell {
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  background: var(--dui-surface) !important;
  box-shadow: var(--dui-shadow-soft) !important;
}

/* The cart is the final purchase layer and must clear page-level dialogs. */
html body .cart-drawer {
  z-index: 11000 !important;
  isolation: isolate !important;
}

.legal-document-shell {
  max-width: 920px !important;
  padding: clamp(28px, 5vw, 64px) !important;
}

.legal-document-header h1 {
  margin: 12px 0 !important;
  font-size: clamp(40px, 5vw, 72px) !important;
  line-height: .98 !important;
}

.legal-document-content h2 {
  font-family: var(--dui-font-heading) !important;
  font-weight: 600 !important;
}

.coverage-maplibre-shell,
.coverage-leaflet-map,
.coverage-maplibre-canvas {
  overflow: hidden !important;
}

.coverage-maplibre-copy,
.coverage-maplibre-search,
.coverage-maplibre-actions,
.coverage-maplibre-themes,
.coverage-maplibre-operators,
.coverage-maplibre-networks,
.coverage-maplibre-note {
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  background: rgba(255, 255, 255, .88) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px);
}

/* Footer */
.footer {
  border: 0 !important;
  background: var(--dui-bg-deep) !important;
  color: #fff !important;
}

.footer-inner {
  width: var(--dui-shell) !important;
  max-width: 1480px !important;
  margin-inline: auto !important;
  padding-block: clamp(44px, 6vw, 80px) !important;
}

.footer a,
.footer p,
.footer small {
  color: rgba(255, 255, 255, .72) !important;
}

.footer-brand-link,
.footer-links p,
.footer-contact-title {
  color: #fff !important;
  font-family: var(--dui-font-heading) !important;
}

.footer-social-plate {
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: var(--dui-radius) !important;
  background: rgba(255, 255, 255, .04) !important;
  box-shadow: none !important;
}

.footer-social-icon {
  border-radius: var(--dui-radius) !important;
  background: rgba(201, 121, 43, .16) !important;
  color: #fff !important;
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --dui-page-x: 24px;
  }

  :where(
    .shop-hero-image,
    .business-hero-image,
    .about-hero-image,
    .support-hero-image,
    .bredband-hero-image,
    .coverage-hero__img
  ) {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: clamp(260px, 42vw, 420px) !important;
    margin-top: 34px !important;
  }

  .hero.quiz-in-hero .offers-recommendation-grid.offers-recommendation-grid--featured,
  .hero.quiz-in-hero .offers-recommendation-grid.offers-recommendation-grid--expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 760px !important;
  }

  .hero.quiz-in-hero .offers-recommendation-grid > .quiz-refinement-panel,
  .hero.quiz-in-hero .offers-recommendation-grid--expanded > .quiz-refinement-panel {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  .hero.quiz-in-hero .offers-recommendation-grid > .recommendation-results-toggle {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 760px) {
  :root {
    --dui-page-x: 18px;
    --dui-section-y: 52px;
  }

  :where(
    .hero,
    .shop-hero,
    .business-hero,
    .about-hero,
    .support-hero,
    .bredband-hero,
    .coverage-hero,
    .package-hero,
    .account-hero
  ) {
    min-height: auto !important;
    padding-block: 54px !important;
  }

  :where(
    .shop-hero h1,
    .business-hero h1,
    .about-hero h1,
    .support-hero h1,
    .bredband-hero h1,
    .coverage-hero h1,
    .package-hero h1,
    .account-hero h1,
    .hero h1
  ) {
    font-size: clamp(44px, 13vw, 66px) !important;
  }

  .hero-showcase {
    width: 100% !important;
    border-inline: 0 !important;
    border-radius: 0 !important;
  }

  .hero-offer-tile {
    min-height: 360px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--dui-line) !important;
  }

  .hero.quiz-in-hero .quiz-card {
    padding: 22px 18px !important;
  }

  .hero.quiz-in-hero .quiz-card-toolbar {
    display: grid !important;
    gap: 14px !important;
  }

  .hero.quiz-in-hero .quiz-progress-row {
    justify-items: start !important;
  }

  .hero.quiz-in-hero .quiz-ai-actions {
    position: static !important;
    justify-content: flex-start !important;
    margin-top: 8px !important;
  }

  .hero.quiz-in-hero .quiz-ai-button {
    width: 100% !important;
    max-width: none !important;
    justify-content: center !important;
  }

  .hero.quiz-in-hero .quiz-title {
    font-size: clamp(34px, 10vw, 52px) !important;
  }

  .hero.quiz-in-hero .offers-recommendation-grid.offers-recommendation-grid--featured,
  .hero.quiz-in-hero .offers-recommendation-grid.offers-recommendation-grid--expanded {
    grid-template-columns: 1fr !important;
    max-width: 390px !important;
  }

  .hero.quiz-in-hero .offers-recommendation-grid > .quiz-refinement-panel {
    order: 0 !important;
  }

  .dealett-chat {
    right: 12px !important;
    bottom: 12px !important;
  }

  .dealett-chat-toggle {
    min-width: 124px !important;
    height: 44px !important;
    min-height: 44px !important;
  }

  .dealett-chat-panel {
    right: -4px !important;
    bottom: 58px !important;
    width: calc(100vw - 24px) !important;
    max-height: calc(100vh - 92px) !important;
  }

  .footer-main {
    grid-template-columns: 1fr !important;
  }
}

html body.mobile-plans-page .shop-hero,
html body.family-page .shop-hero,
html body.business-page .business-hero,
html body.bredband-page .bredband-hero,
html body.about-page .about-hero,
html body.support-page .support-hero,
html body.jamfor-page .coverage-hero,
html body.package-page .package-hero,
html body.account-page .account-hero {
  min-height: min(760px, calc(100vh - 76px)) !important;
  padding: clamp(72px, 9vw, 132px) var(--dui-page-x) clamp(54px, 7vw, 96px) !important;
  background: var(--dui-bg) !important;
  color: var(--dui-text) !important;
  overflow: hidden !important;
}

html body.mobile-plans-page .shop-hero::before,
html body.mobile-plans-page .shop-hero::after,
html body.family-page .shop-hero::before,
html body.family-page .shop-hero::after,
html body.business-page .business-hero::before,
html body.business-page .business-hero::after,
html body.bredband-page .bredband-hero::before,
html body.bredband-page .bredband-hero::after,
html body.about-page .about-hero::before,
html body.about-page .about-hero::after,
html body.support-page .support-hero::before,
html body.support-page .support-hero::after,
html body.jamfor-page .coverage-hero::before,
html body.jamfor-page .coverage-hero::after,
html body.package-page .package-hero::before,
html body.package-page .package-hero::after,
html body.account-page .account-hero::before,
html body.account-page .account-hero::after {
  display: none !important;
  content: none !important;
}

html body.mobile-plans-page .shop-hero-content,
html body.family-page .shop-hero-content,
html body.business-page .business-hero-inner,
html body.bredband-page .bredband-hero-inner,
html body.about-page .about-hero-inner,
html body.support-page .support-hero-inner,
html body.jamfor-page .coverage-hero__inner,
html body.account-page .account-shell {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 680px) minmax(300px, 1fr) !important;
  gap: clamp(36px, 6vw, 96px) !important;
  align-items: center !important;
  width: var(--dui-shell) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

html body.mobile-plans-page .shop-hero-content,
html body.family-page .shop-hero-content {
  display: block !important;
  max-width: 680px !important;
  margin: 0 auto 0 0 !important;
}

html body.business-page .business-hero-copy,
html body.bredband-page .bredband-hero-copy,
html body.about-page .about-hero-copy,
html body.support-page .support-hero-copy,
html body.jamfor-page .coverage-hero__copy,
html body.account-page .account-hero-copy {
  position: relative !important;
  inset: auto !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  max-width: 680px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  text-align: left !important;
}

html body.business-page .business-hero-panel,
html body.about-page .about-hero-side,
html body.support-page .support-hero-panel,
html body.jamfor-page .coverage-hero__panel,
html body.bredband-page .bredband-search-panel {
  position: relative !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  max-width: 440px !important;
  margin: 0 0 0 auto !important;
  transform: none !important;
}

html body.mobile-plans-page .shop-hero-image,
html body.family-page .shop-hero-image,
html body.business-page .business-hero-image,
html body.bredband-page .bredband-hero-image,
html body.about-page .about-hero-image,
html body.support-page .support-hero-image,
html body.jamfor-page .coverage-hero__img {
  position: absolute !important;
  inset: clamp(118px, 14vw, 168px) var(--dui-page-x) auto auto !important;
  z-index: 0 !important;
  width: min(42vw, 560px) !important;
  height: min(46vh, 480px) !important;
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  object-fit: cover !important;
  opacity: .78 !important;
  filter: saturate(.78) contrast(.95) !important;
  transform: none !important;
}

html body.mobile-plans-page .shop-hero h1,
html body.family-page .shop-hero h1,
html body.business-page .business-hero h1,
html body.bredband-page .bredband-hero h1,
html body.about-page .about-hero h1,
html body.support-page .support-hero h1,
html body.jamfor-page .coverage-hero h1,
html body.package-page .package-hero h1,
html body.account-page .account-hero h1,
html body .home-intro h1 {
  position: static !important;
  width: auto !important;
  max-width: 760px !important;
  margin: 18px 0 20px !important;
  color: var(--dui-text) !important;
  font-family: var(--dui-font-heading) !important;
  font-size: clamp(44px, 6vw, 84px) !important;
  font-weight: 600 !important;
  line-height: .98 !important;
  text-align: left !important;
  text-shadow: none !important;
}

html body .hero-bottom h1,
html body:has(.home-intro) .hero-bottom h1 {
  position: static !important;
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  color: var(--dui-text) !important;
  font-family: var(--dui-font-heading) !important;
  font-size: clamp(52px, 7vw, 112px) !important;
  font-weight: 600 !important;
  line-height: .92 !important;
  text-align: left !important;
}

html body .hero-bottom,
html body:has(.home-intro) .hero-bottom {
  display: grid !important;
  grid-template-columns: minmax(0, 920px) minmax(260px, 1fr) !important;
  gap: clamp(24px, 4vw, 72px) !important;
  align-items: end !important;
  width: var(--dui-shell) !important;
  max-width: 1480px !important;
  margin: 0 auto !important;
  padding: clamp(44px, 5vw, 72px) 0 !important;
}

html body .hero-bottom-copy,
html body:has(.home-intro) .hero-bottom-copy {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 920px !important;
}

html body .hero-bottom-actions,
html body:has(.home-intro) .hero-bottom-actions {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 14px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  transform: none !important;
}

html body .hero-bottom .button,
html body:has(.home-intro) .hero-bottom .button {
  max-width: 100% !important;
  border-radius: var(--dui-radius) !important;
}

html body .hero-proof,
html body:has(.home-intro) .hero-proof {
  position: static !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  width: 100% !important;
  max-width: 100% !important;
}

html body .hero-bottom h1 em,
html body:has(.home-intro) .hero-bottom h1 em {
  color: var(--dui-bg-deep) !important;
  font-family: inherit !important;
  font-style: normal !important;
  text-decoration: none !important;
}

html body .footer .footer-inner {
  overflow: hidden !important;
}

html body .footer .footer-main {
  display: grid !important;
  grid-template-columns: minmax(220px, .85fr) minmax(420px, 1.45fr) minmax(220px, .7fr) !important;
  gap: clamp(28px, 4vw, 64px) !important;
  align-items: start !important;
}

html body .footer .footer-contact {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

html body.mobile-plans-page .shop-hero-lead,
html body.family-page .shop-hero-lead,
html body.business-page .business-hero-copy p,
html body.bredband-page .bredband-hero-copy p,
html body.about-page .about-hero-copy p,
html body.support-page .support-hero-copy p,
html body.jamfor-page .coverage-hero__copy p,
html body.account-page .account-hero-copy p {
  max-width: 650px !important;
  color: var(--dui-muted) !important;
  font-size: clamp(17px, 1.55vw, 22px) !important;
  line-height: 1.45 !important;
  text-shadow: none !important;
}

html body .business-hero-points li,
html body .bredband-trust-row li,
html body .about-hero-points li,
html body .support-hero-tags li {
  border: 1px solid var(--dui-line) !important;
  border-radius: var(--dui-radius) !important;
  background: rgba(255, 255, 255, .78) !important;
  color: var(--dui-text) !important;
}

html body .business-hero-points i,
html body .bredband-trust-row i,
html body .about-hero-points i,
html body .support-hero-tags i {
  color: var(--dui-accent) !important;
}

html body .primary-btn,
html body .full-btn,
html body .adeala-btn,
html body .business-action,
html body .business-plan-btn,
html body .support-btn,
html body .bredband-primary-btn,
html body .bredband-secondary-btn,
html body .bredband-search-btn,
html body .bredband-choose-btn,
html body .coverage-btn,
html body .coverage-soft-btn,
html body .quiz-next-button,
html body .quiz-ai-button,
html body .offer-card__cta,
html body .recommendation-results-toggle,
html body .offer-answer-edit,
html body .compare-open-button,
html body .compare-clear-button,
html body .dealett-chat-toggle,
html body .dealett-chat-send,
html body .dealett-chat-chip,
html body .dealett-chat-widget-button,
html body .dealett-chat-feedback__button {
  border-radius: var(--dui-radius) !important;
  box-shadow: none !important;
}

html body .business-action--primary,
html body .support-btn-primary,
html body .bredband-primary-btn,
html body .bredband-search-btn,
html body .coverage-btn--primary,
html body .primary-btn,
html body .quiz-next-button,
html body .offer-card__cta {
  border-color: var(--dui-bg-deep) !important;
  background: var(--dui-bg-deep) !important;
  color: #fff !important;
}

html body .business-action--secondary,
html body .support-btn-light,
html body .support-btn-ghost,
html body .bredband-secondary-btn,
html body .coverage-btn--ghost,
html body .account-ghost-btn,
html body .recommendation-results-toggle {
  border-color: var(--dui-line-strong) !important;
  background: var(--dui-surface) !important;
  color: var(--dui-text) !important;
}

html body .dealett-chat-toggle {
  gap: 8px !important;
  min-width: 136px !important;
  height: 48px !important;
  padding: 0 16px !important;
}

html body .dealett-chat-toggle::after {
  content: "Dealett AI" !important;
  position: static !important;
  display: inline !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

html body .dealett-chat-toggle i {
  display: inline-block !important;
  color: #fff !important;
  font-size: 14px !important;
}

/* Adaptive operator/binding density, scoped to the generated operator grid only. */
html body .hero.quiz-in-hero #step1 .quiz-card-body--operator-active {
  max-width: min(1320px, 100%) !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person {
  display: grid !important;
  width: 100% !important;
  margin-inline: auto !important;
  margin-top: 12px !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="1"] {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 1080px !important;
  gap: 16px !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 1240px !important;
  gap: 14px !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="3"],
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="4"],
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="5"],
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="6"],
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="7"],
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="8"],
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="9"],
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="10"] {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 1240px !important;
  gap: 10px !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="1"] .operator-person-card {
  padding: clamp(20px, 2.2vw, 28px) !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="1"] .operator-card-controls {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="1"] .operator-choice-grid .quiz-option {
  min-height: 64px !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="1"] .partner-logo {
  max-width: 92px !important;
  max-height: 34px !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="5"] .operator-person-card,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="6"] .operator-person-card,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="7"] .operator-person-card,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="8"] .operator-person-card,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="9"] .operator-person-card,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="10"] .operator-person-card {
  padding: 9px !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="7"] .operator-person-title,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="8"] .operator-person-title,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="9"] .operator-person-title,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="10"] .operator-person-title {
  margin-bottom: 6px !important;
  font-size: 13px !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="7"] .operator-card-controls,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="8"] .operator-card-controls,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="9"] .operator-card-controls,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="10"] .operator-card-controls {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 220px) !important;
  gap: 8px !important;
}

html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="7"] .operator-choice-grid,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="8"] .operator-choice-grid,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="9"] .operator-choice-grid,
html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="10"] .operator-choice-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 6px !important;
}

@media (max-width: 760px) {
  html body .site-header .header-inner {
    min-height: 68px !important;
  }

  html body .site-header .brand,
  html body .site-header .brand-logo-crop {
    width: auto !important;
    height: 32px !important;
  }

  html body .site-header .brand::after {
    font-size: 16px !important;
  }

  html body .site-header .brand-logo-crop img {
    width: 154px !important;
    height: 32px !important;
  }

  html body.mobile-plans-page .shop-hero,
  html body.family-page .shop-hero,
  html body.business-page .business-hero,
  html body.bredband-page .bredband-hero,
  html body.about-page .about-hero,
  html body.support-page .support-hero,
  html body.jamfor-page .coverage-hero,
  html body.package-page .package-hero,
  html body.account-page .account-hero {
    min-height: auto !important;
    padding-block: 52px !important;
  }

  html body.mobile-plans-page .shop-hero-content,
  html body.family-page .shop-hero-content,
  html body.business-page .business-hero-inner,
  html body.bredband-page .bredband-hero-inner,
  html body.about-page .about-hero-inner,
  html body.support-page .support-hero-inner,
  html body.jamfor-page .coverage-hero__inner,
  html body.account-page .account-shell {
    display: block !important;
    width: var(--dui-shell) !important;
  }

  html body.mobile-plans-page .shop-hero-image,
  html body.family-page .shop-hero-image,
  html body.business-page .business-hero-image,
  html body.bredband-page .bredband-hero-image,
  html body.about-page .about-hero-image,
  html body.support-page .support-hero-image,
  html body.jamfor-page .coverage-hero__img {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(240px, 58vw, 330px) !important;
    margin: 0 0 34px !important;
  }

  html body.mobile-plans-page .shop-hero h1,
  html body.family-page .shop-hero h1,
  html body.business-page .business-hero h1,
  html body.bredband-page .bredband-hero h1,
  html body.about-page .about-hero h1,
  html body.support-page .support-hero h1,
  html body.jamfor-page .coverage-hero h1,
  html body.package-page .package-hero h1,
  html body.account-page .account-hero h1,
  html body .hero-bottom h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(42px, 12vw, 58px) !important;
    line-height: .98 !important;
  }

  html body .hero-bottom,
  html body:has(.home-intro) .hero-bottom {
    display: block !important;
    width: calc(100% - 36px) !important;
    padding: 44px 0 56px !important;
  }

  html body .hero-bottom-copy,
  html body:has(.home-intro) .hero-bottom-copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  html body .hero-bottom-actions,
  html body:has(.home-intro) .hero-bottom-actions,
  html body .hero-proof,
  html body:has(.home-intro) .hero-proof {
    justify-content: flex-start !important;
  }

  html body .dealett-chat-toggle {
    min-width: 118px !important;
    height: 44px !important;
  }

  html body .footer .footer-main {
    grid-template-columns: 1fr !important;
  }

  html body .hero.quiz-in-hero .quiz-card {
    position: relative !important;
  }

  html body .hero.quiz-in-hero .quiz-ai-actions {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    z-index: 4 !important;
    width: auto !important;
    margin: 0 !important;
  }

  html body .hero.quiz-in-hero .quiz-ai-button {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 11px 0 6px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-indent: 48px !important;
  }

  html body .hero.quiz-in-hero .quiz-ai-button::before {
    content: "AI" !important;
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    place-items: center !important;
    color: inherit !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-indent: 0 !important;
  }

  html body .hero.quiz-in-hero .quiz-ai-button span,
  html body .hero.quiz-in-hero .quiz-ai-button strong {
    display: none !important;
  }

  html body:has(.hero.quiz-in-hero #quiz-steps-wrapper:not(.hidden)) .dealett-chat-toggle:not(.is-open) {
    display: none !important;
  }

  html body .hero.quiz-in-hero .hero-quiz-mount,
  html body .hero.quiz-in-hero #quiz-steps-wrapper,
  html body .hero.quiz-in-hero #quiz-card-stack,
  html body .hero.quiz-in-hero .quiz-step-card.active-step,
  html body .hero.quiz-in-hero .quiz-step-card.active-step .quiz-card {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  html body .hero.quiz-in-hero:has(#step1.active-step) {
    min-height: auto !important;
    overflow: visible !important;
  }

  html body .hero.quiz-in-hero:has(#step1.active-step) .hero-quiz-mount,
  html body .hero.quiz-in-hero:has(#step1.active-step) #quiz-steps-wrapper,
  html body .hero.quiz-in-hero:has(#step1.active-step) #quiz-card-stack,
  html body .hero.quiz-in-hero:has(#step1.active-step) #step1,
  html body .hero.quiz-in-hero:has(#step1.active-step) #step1 .quiz-card {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person {
    gap: 8px !important;
    margin-top: 12px !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="1"] {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="2"],
  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="3"],
  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="4"],
  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="5"],
  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="6"],
  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="7"],
  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="8"],
  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="9"],
  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="10"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 100% !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count="1"] .operator-person-card {
    padding: 16px !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count] .operator-card-controls {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count] .operator-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count] .operator-binding-controls {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 6px !important;
    gap: 6px !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count] .operator-date-field,
  html body .hero.quiz-in-hero #step1 .operator-per-person[data-operator-count] .operator-no-binding-button {
    width: 100% !important;
    min-width: 0 !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person:not([data-operator-count="1"]) .operator-person-card {
    padding: 7px !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person:not([data-operator-count="1"]) .operator-person-title {
    margin-bottom: 5px !important;
    font-size: 12px !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person:not([data-operator-count="1"]) .operator-choice-grid {
    gap: 4px !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person:not([data-operator-count="1"]) .operator-choice-grid .quiz-option {
    min-height: 34px !important;
    padding: 3px !important;
    overflow: hidden !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person:not([data-operator-count="1"]) .partner-logo {
    width: 100% !important;
    max-width: 100% !important;
    height: 15px !important;
    max-height: 15px !important;
    object-fit: contain !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person:not([data-operator-count="1"]) .operator-date-icon {
    display: none !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person:not([data-operator-count="1"]) .operator-date-field {
    display: block !important;
    min-height: 36px !important;
    padding: 5px !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person:not([data-operator-count="1"]) .operator-date-label {
    display: none !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person:not([data-operator-count="1"]) .operator-date-field input {
    width: 100% !important;
    min-height: 26px !important;
    font-size: 10px !important;
  }

  html body .hero.quiz-in-hero #step1 .operator-per-person:not([data-operator-count="1"]) .operator-no-binding-button {
    min-height: 36px !important;
    padding: 4px 6px !important;
    font-size: 9px !important;
    line-height: 1.05 !important;
  }
}

/* Keep the full homepage landing composition inside the first viewport. */
html body:has(.home-intro) .hero:not(.quiz-in-hero) {
  display: grid !important;
  grid-template-rows: minmax(0, 1fr) auto auto !important;
  gap: clamp(12px, 1.8vh, 18px) !important;
  height: 100svh !important;
  min-height: 620px !important;
  max-height: 100svh !important;
  padding: clamp(78px, 10svh, 104px) max(16px, calc((100vw - 1420px) / 2)) 0 !important;
  overflow: hidden !important;
}

html body:has(.home-intro) .hero-showcase {
  align-self: stretch !important;
  min-height: 0 !important;
}

html body:has(.home-intro) .hero-offer-tile {
  align-content: space-between !important;
  min-height: 0 !important;
  padding: clamp(14px, 2.1vw, 28px) !important;
}

html body:has(.home-intro) .hero-offer-kicker {
  min-height: 28px !important;
  padding: 0 10px !important;
  font-size: clamp(10px, .78vw, 12px) !important;
}

html body:has(.home-intro) .hero-offer-tile strong {
  margin-top: clamp(10px, 2vh, 22px) !important;
  font-size: clamp(26px, 3.1vw, 48px) !important;
  line-height: .88 !important;
}

html body:has(.home-intro) .hero-offer-gift {
  margin-top: clamp(8px, 1.5vh, 14px) !important;
  font-size: clamp(38px, 5vw, 72px) !important;
  line-height: .82 !important;
}

html body:has(.home-intro) .hero-offer-copy {
  margin-top: 6px !important;
  font-size: clamp(16px, 1.6vw, 24px) !important;
}

html body:has(.home-intro) .hero-offer-tile small {
  min-height: 34px !important;
  margin-top: clamp(12px, 2vh, 24px) !important;
  padding: 0 12px !important;
  font-size: 12px !important;
}

html body:has(.home-intro) .hero-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(250px, auto) !important;
  align-items: center !important;
  gap: clamp(16px, 3vw, 48px) !important;
  width: min(100%, 1420px) !important;
  padding: 0 !important;
}

html body:has(.home-intro) .hero-bottom .hero-eyebrow {
  margin: 0 0 8px !important;
  font-size: clamp(12px, 1vw, 14px) !important;
}

html body:has(.home-intro) .hero-bottom h1 {
  width: min(100%, 820px) !important;
  max-width: 820px !important;
  font-size: clamp(42px, 6vw, 84px) !important;
  line-height: .88 !important;
}

html body:has(.home-intro) .hero-bottom h1 em {
  font-size: .82em !important;
}

html body:has(.home-intro) .hero-bottom-actions {
  gap: 10px !important;
}

html body:has(.home-intro) .hero-bottom .button {
  min-height: 44px !important;
  padding: 0 18px !important;
}

html body:has(.home-intro) .hero-proof {
  gap: 7px !important;
}

html body:has(.home-intro) .hero-proof strong {
  min-height: 30px !important;
  padding: 0 10px !important;
  font-size: 11px !important;
}

html body:has(.home-intro) .hero > .home-marquee {
  align-self: end !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  border-top: 1px solid rgba(17, 17, 17, .14) !important;
  border-bottom: 0 !important;
}

html body:has(.home-intro) .hero > .home-marquee .home-marquee__group {
  min-height: 38px !important;
  padding: 0 16px !important;
}

html body:has(.home-intro) .hero > .home-marquee span {
  font-size: clamp(11px, .95vw, 13px) !important;
}

@media (max-height: 720px) and (min-width: 761px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    min-height: 560px !important;
    padding-top: 76px !important;
    gap: 10px !important;
  }

  html body:has(.home-intro) .hero-offer-tile {
    padding: 13px 16px !important;
  }

  html body:has(.home-intro) .hero-bottom h1 {
    font-size: clamp(38px, 5.4vw, 70px) !important;
  }

  html body:has(.home-intro) .hero-offer-gift {
    font-size: clamp(34px, 4.4vw, 58px) !important;
  }
}

@media (max-width: 900px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    grid-template-rows: minmax(0, 1fr) auto auto !important;
    min-height: 680px !important;
    padding-top: 84px !important;
  }

  html body:has(.home-intro) .hero-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body:has(.home-intro) .hero-offer-tile {
    padding: 12px 14px !important;
  }

  html body:has(.home-intro) .hero-bottom {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  html body:has(.home-intro) .hero-bottom-actions,
  html body:has(.home-intro) .hero-proof {
    justify-content: flex-start !important;
  }
}

@media (max-width: 640px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    height: 100svh !important;
    max-height: 100svh !important;
    min-height: 720px !important;
    gap: 8px !important;
    padding: 76px 16px 0 !important;
    overflow: hidden !important;
  }

  html body:has(.home-intro) .hero-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body:has(.home-intro) .hero-offer-tile {
    padding: 8px !important;
  }

  html body:has(.home-intro) .hero-offer-kicker {
    min-height: 20px !important;
    padding: 0 7px !important;
    font-size: 8.5px !important;
  }

  html body:has(.home-intro) .hero-offer-tile strong {
    margin-top: 6px !important;
    font-size: clamp(20px, 7vw, 28px) !important;
  }

  html body:has(.home-intro) .hero-offer-gift {
    margin-top: 5px !important;
    font-size: clamp(26px, 9vw, 36px) !important;
  }

  html body:has(.home-intro) .hero-offer-copy {
    margin-top: 3px !important;
    font-size: 12px !important;
  }

  html body:has(.home-intro) .hero-offer-tile small {
    min-height: 24px !important;
    margin-top: 6px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
  }

  html body:has(.home-intro) .hero-bottom {
    gap: 8px !important;
  }

  html body:has(.home-intro) .hero-bottom h1 {
    font-size: clamp(30px, 9.5vw, 40px) !important;
  }

  html body:has(.home-intro) .hero-bottom .hero-eyebrow {
    margin-bottom: 5px !important;
    font-size: 11px !important;
  }

  html body:has(.home-intro) .hero-bottom .button {
    min-height: 40px !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 0 14px !important;
    font-size: 13px !important;
  }

  html body:has(.home-intro) .hero-proof {
    gap: 5px !important;
  }

  html body:has(.home-intro) .hero-proof strong {
    min-height: 24px !important;
    padding: 0 7px !important;
    font-size: 9.5px !important;
  }

  html body:has(.home-intro) .hero > .home-marquee .home-marquee__group {
    min-height: 32px !important;
    padding: 0 12px !important;
    justify-content: flex-start !important;
  }

  html body:has(.home-intro) .hero > .home-marquee span {
    font-size: 10px !important;
  }

  html body:has(.home-intro) .hero > .home-marquee span,
  html body:has(.home-intro) .hero > .home-marquee i {
    display: inline-flex !important;
  }
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) {
  background:
    linear-gradient(180deg, rgba(5, 10, 18, .34) 0%, rgba(5, 10, 18, .14) 38%, rgba(5, 10, 18, .44) 100%),
    url("../images/hero.png") center center / cover no-repeat !important;
}

html body:has(.home-intro) .hero-showcase {
  background: transparent !important;
}

html body:has(.home-intro) .hero-offer-tile {
  border: 1px solid rgba(255, 255, 255, .32) !important;
  background: rgba(255, 255, 255, .78) !important;
  backdrop-filter: blur(12px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.1) !important;
}

html body:has(.home-intro) .hero-offer-tile--group {
  background: rgba(248, 248, 241, .76) !important;
}

html body:has(.home-intro) .hero-offer-tile--duo {
  background: rgba(238, 238, 228, .74) !important;
}

html body:has(.home-intro) .hero-offer-tile--single {
  background: rgba(253, 252, 247, .76) !important;
}

html body:has(.home-intro) .hero-offer-tile:hover,
html body:has(.home-intro) .hero-offer-tile:focus-visible {
  background: rgba(255, 255, 255, .9) !important;
}

html body:has(.home-intro) .hero-bottom,
html body:has(.home-intro) .hero-bottom h1,
html body:has(.home-intro) .hero-bottom h1 em,
html body:has(.home-intro) .hero-bottom .hero-eyebrow {
  color: #fff !important;
}

html body:has(.home-intro) .hero-bottom h1,
html body:has(.home-intro) .hero-bottom .hero-eyebrow {
  text-shadow: 0 2px 18px rgba(13, 23, 38, .42) !important;
}

html body:has(.home-intro) .hero-bottom .hero-eyebrow span {
  background: #fff !important;
}

html body:has(.home-intro) .hero-bottom .button {
  border-color: rgba(255, 255, 255, .92) !important;
  background: #fff !important;
  color: #0D1726 !important;
}

html body:has(.home-intro) .hero-bottom .button:hover,
html body:has(.home-intro) .hero-bottom .button:focus-visible {
  background: var(--deal-blue) !important;
  color: #0D1726 !important;
}

html body:has(.home-intro) .hero-proof strong {
  border-color: rgba(255, 255, 255, .36) !important;
  background: rgba(255, 255, 255, .14) !important;
  color: #fff !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

html body:has(.home-intro) .hero > .home-marquee {
  border-top-color: rgba(255, 255, 255, .2) !important;
  background: rgba(5, 10, 18, .42) !important;
  color: #fff !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

html body:has(.home-intro) .hero > .home-marquee span,
html body:has(.home-intro) .hero > .home-marquee i {
  color: #fff !important;
}

html body:has(.home-intro) .hero > .home-marquee::after {
  display: none !important;
}

@media (max-width: 640px) {
  html body:has(.home-intro) .hero-bottom .hero-proof {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 5px !important;
    width: 100% !important;
  }

  html body:has(.home-intro) .hero-bottom .hero-proof strong {
    justify-content: center !important;
    padding: 0 5px !important;
    font-size: 9px !important;
    text-align: center !important;
  }

  html body:has(.home-intro) .hero > .home-marquee .home-marquee__track {
    overflow: hidden !important;
    width: 100% !important;
    justify-content: flex-start !important;
    animation: none !important;
    transform: none !important;
  }

  html body:has(.home-intro) .hero > .home-marquee .home-marquee__group {
    width: max-content !important;
    min-height: 34px !important;
    gap: 12px !important;
    padding: 0 12px !important;
    justify-content: flex-start !important;
    animation: dealett-marquee 24s linear infinite !important;
  }

  html body:has(.home-intro) .hero > .home-marquee span {
    font-size: 9.5px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
  }
}

/* Final hero placement pass: keep the same copy, but make the composition calmer. */
html body:has(.home-intro) .hero:not(.quiz-in-hero) {
  grid-template-rows: clamp(260px, 38svh, 430px) minmax(0, 1fr) auto !important;
  gap: clamp(12px, 2svh, 22px) !important;
  padding-top: clamp(86px, 9svh, 104px) !important;
}

html body:has(.home-intro) .hero-showcase {
  width: min(100%, 1360px) !important;
  justify-self: center !important;
}

html body:has(.home-intro) .hero-offer-tile {
  padding: clamp(16px, 1.7vw, 24px) !important;
}

html body:has(.home-intro) .hero-offer-tile strong {
  margin-top: clamp(8px, 1.4svh, 16px) !important;
  font-size: clamp(24px, 2.35vw, 40px) !important;
}

html body:has(.home-intro) .hero-offer-gift {
  margin-top: clamp(6px, 1.2svh, 12px) !important;
  font-size: clamp(34px, 3.8vw, 62px) !important;
}

html body:has(.home-intro) .hero-offer-copy {
  font-size: clamp(15px, 1.25vw, 21px) !important;
}

html body:has(.home-intro) .hero-offer-tile small {
  align-self: end !important;
  min-height: 32px !important;
  margin-top: clamp(8px, 1.6svh, 18px) !important;
}

html body:has(.home-intro) .hero-bottom {
  grid-template-columns: minmax(320px, .86fr) minmax(420px, 1.14fr) !important;
  align-items: center !important;
  width: min(100%, 1360px) !important;
  gap: clamp(24px, 4vw, 72px) !important;
}

html body:has(.home-intro) .hero-bottom h1 {
  width: min(100%, 720px) !important;
  max-width: 720px !important;
  font-size: clamp(44px, 4.75vw, 76px) !important;
  line-height: .9 !important;
}

html body:has(.home-intro) .hero-bottom .hero-eyebrow {
  margin-bottom: 6px !important;
}

html body:has(.home-intro) .hero-bottom-actions {
  display: grid !important;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) !important;
  align-items: center !important;
  justify-content: end !important;
  gap: clamp(16px, 2vw, 28px) !important;
}

html body:has(.home-intro) .hero-bottom .button {
  width: 100% !important;
  justify-content: space-between !important;
}

html body:has(.home-intro) .hero-proof {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-end !important;
}

html body:has(.home-intro) .hero-proof strong {
  white-space: nowrap !important;
}

html body:has(.home-intro) .hero > .home-marquee .home-marquee__track,
html body:has(.home-intro) .hero > .home-marquee .home-marquee__group {
  display: flex !important;
  align-items: center !important;
}

html body:has(.home-intro) .hero > .home-marquee .home-marquee__track {
  width: 100% !important;
  justify-content: center !important;
}

html body:has(.home-intro) .hero > .home-marquee .home-marquee__group {
  width: min(100%, 1360px) !important;
  min-height: 38px !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 0 16px !important;
  animation: none !important;
}

@media (max-height: 760px) and (min-width: 901px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    grid-template-rows: clamp(230px, 36svh, 300px) minmax(0, 1fr) auto !important;
    padding-top: 76px !important;
    gap: 10px !important;
  }

  html body:has(.home-intro) .hero-bottom h1 {
    font-size: clamp(38px, 4.4vw, 62px) !important;
  }

  html body:has(.home-intro) .hero-offer-gift {
    font-size: clamp(32px, 3.3vw, 50px) !important;
  }
}

@media (max-width: 1100px) {
  html body:has(.home-intro) .hero-bottom {
    grid-template-columns: 1fr !important;
    align-content: center !important;
    gap: 12px !important;
  }

  html body:has(.home-intro) .hero-bottom-actions {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) !important;
    justify-content: start !important;
  }
}

@media (max-width: 760px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    grid-template-rows: minmax(0, 1fr) auto auto !important;
  }

  html body:has(.home-intro) .hero-bottom-actions {
    grid-template-columns: 1fr !important;
  }

  html body:has(.home-intro) .hero-proof {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 640px) {
  html body:has(.home-intro) .hero-bottom-actions {
    gap: 10px !important;
  }

  html body:has(.home-intro) .hero-proof {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 5px !important;
    width: 100% !important;
  }

  html body:has(.home-intro) .hero-proof strong {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 26px !important;
    justify-content: center !important;
    padding: 0 4px !important;
    font-size: clamp(8px, 2.15vw, 9px) !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}

/* Reference-style landing hero. */
html body:has(.home-intro) {
  background: #050505 !important;
}

html body:has(.home-intro) .site-header {
  position: absolute !important;
  inset: 0 0 auto !important;
  z-index: 120 !important;
  padding: 0 !important;
  background: transparent !important;
  pointer-events: none !important;
}

html body:has(.home-intro) .site-header .header-inner {
  width: min(100%, 1610px) !important;
  min-height: 112px !important;
  margin: 0 auto !important;
  padding: 0 58px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: auto !important;
}

html body:has(.home-intro) .site-header .brand--logo {
  position: relative !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  width: 186px !important;
  height: 45px !important;
  min-height: 45px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
  justify-content: flex-start !important;
}

html body:has(.home-intro) .site-header .brand-logo-crop {
  position: relative !important;
  display: block !important;
  width: 186px !important;
  height: 45px !important;
  overflow: hidden !important;
}

html body:has(.home-intro) .site-header .brand--logo::before {
  display: none !important;
}

html body:has(.home-intro) .site-header .brand--logo::after {
  display: none !important;
}

html body:has(.home-intro) .site-header .brand-logo-crop img {
  position: absolute !important;
  top: -63px !important;
  left: -38px !important;
  display: block !important;
  width: 262px !important;
  height: 175px !important;
  max-width: none !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) contrast(1.8) drop-shadow(0 3px 12px rgba(13, 23, 38, .5)) !important;
}

html body:has(.home-intro) .site-header .site-nav {
  margin-left: auto !important;
}

html body:has(.home-intro) .site-header .nav-menu {
  min-width: 0 !important;
  gap: 47px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body:has(.home-intro) .site-header .nav-link,
html body:has(.home-intro) .site-header .nav-item a {
  min-height: 44px !important;
  padding: 9px 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .92) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-shadow: 0 2px 15px rgba(13, 23, 38, .58) !important;
}

html body:has(.home-intro) .site-header .nav-item--active > .nav-link,
html body:has(.home-intro) .site-header .nav-link:hover,
html body:has(.home-intro) .site-header .nav-link:focus-visible {
  color: #fff !important;
}

html body:has(.home-intro) .site-header .language-switcher,
html body:has(.home-intro) .site-header .header-cart-link {
  display: none !important;
}

html body:has(.home-intro) .site-header .header-topbar-group--right {
  margin-left: 54px !important;
}

html body:has(.home-intro) .site-header .header-account-link {
  min-height: 54px !important;
  padding: 0 28px !important;
  gap: 11px !important;
  border: 1px solid rgba(255, 255, 255, .28) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .13) !important;
  color: #fff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    0 14px 32px rgba(13, 23, 38, .32) !important;
  backdrop-filter: blur(14px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.1) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

html body:has(.home-intro) .site-header .header-account-link::before {
  content: "\f007";
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
}

html body:has(.home-intro) .site-header .header-account-link span {
  display: none !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) {
  position: relative !important;
  isolation: isolate !important;
  display: grid !important;
  grid-template-rows: 1fr auto auto !important;
  gap: 16px !important;
  width: 100% !important;
  height: 100svh !important;
  min-height: 941px !important;
  max-height: 100svh !important;
  padding: 145px 64px 20px !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(13, 23, 38, .66) 0%, rgba(13, 23, 38, .28) 31%, rgba(13, 23, 38, .08) 63%, rgba(13, 23, 38, .32) 100%),
    linear-gradient(180deg, rgba(13, 23, 38, .2) 0%, rgba(13, 23, 38, .04) 46%, rgba(13, 23, 38, .54) 100%),
    url("../images/hherro.png") right center / auto 118% no-repeat !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero)::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(13, 23, 38, .58));
  pointer-events: none;
}

html body:has(.home-intro) .hero-bottom {
  order: 1 !important;
  align-self: start !important;
  justify-self: start !important;
  display: grid !important;
  grid-template-columns: minmax(0, 760px) !important;
  width: min(760px, 100%) !important;
  margin: 0 0 0 117px !important;
  padding: 0 !important;
  gap: 33px !important;
  color: #fff !important;
}

html body:has(.home-intro) .hero-bottom-copy {
  display: grid !important;
  gap: 11px !important;
}

html body:has(.home-intro) .hero-bottom .hero-eyebrow {
  margin: 0 0 11px !important;
  color: #c8792b !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-shadow: 0 2px 18px rgba(13, 23, 38, .58) !important;
}

html body:has(.home-intro) .hero-bottom .hero-eyebrow span {
  display: none !important;
}

html body:has(.home-intro) .hero-bottom h1 {
  width: 760px !important;
  max-width: 100% !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: 62px !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  text-shadow: 0 4px 28px rgba(13, 23, 38, .56) !important;
}

html body:has(.home-intro) .hero-bottom h1 em {
  color: #fff !important;
  font-style: normal !important;
}

html body:has(.home-intro) .hero-lead {
  position: static !important;
  inset: auto !important;
  width: 590px !important;
  max-width: 100% !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, .94) !important;
  font-size: 21px !important;
  font-weight: 500 !important;
  line-height: 1.26 !important;
  text-shadow: 0 2px 16px rgba(13, 23, 38, .62) !important;
}

html body:has(.home-intro) .hero-bottom-actions {
  display: grid !important;
  grid-template-columns: max-content !important;
  align-items: start !important;
  justify-content: start !important;
  width: max-content !important;
  max-width: min(100%, 690px) !important;
  gap: 21px !important;
}

html body:has(.home-intro) .hero-bottom .button {
  justify-self: start !important;
  width: 312px !important;
  min-height: 57px !important;
  justify-content: space-between !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 0 28px 0 36px !important;
  background: #c8792b !important;
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(13, 23, 38, .34) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html body:has(.home-intro) .hero-bottom .button span {
  font-size: 24px !important;
  line-height: 1 !important;
}

html body:has(.home-intro) .hero-proof {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  width: max-content !important;
  max-width: min(100vw - 44px, 690px) !important;
  margin: 0 !important;
  gap: 32px !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  background: transparent !important;
  transform: none !important;
}

html body:has(.home-intro) .hero-proof strong {
  position: relative !important;
  display: inline-flex !important;
  min-height: 28px !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .92) !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-shadow: 0 2px 16px rgba(13, 23, 38, .58) !important;
  white-space: nowrap !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body:has(.home-intro) .hero-proof strong::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 2px solid #c8792b;
  border-radius: 50%;
  color: #c8792b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

html body:has(.home-intro) .hero-proof strong:nth-child(1)::before {
  content: "\2713";
}

html body:has(.home-intro) .hero-proof strong:nth-child(2)::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

html body:has(.home-intro) .hero-proof strong:nth-child(3)::before {
  content: "\f3ed";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

html body:has(.home-intro) .hero-showcase {
  order: 2 !important;
  align-self: end !important;
  justify-self: end !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: 1004px !important;
  max-width: calc(100vw - 488px) !important;
  margin: 0 95px 0 0 !important;
  border: 1px solid rgba(18, 18, 18, .68) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, .87) !important;
  box-shadow: 0 24px 64px rgba(13, 23, 38, .38) !important;
  backdrop-filter: blur(12px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.12) !important;
}

html body:has(.home-intro) .hero-offer-tile {
  display: grid !important;
  height: 279px !important;
  min-height: 0 !important;
  align-content: start !important;
  padding: 21px 25px 20px !important;
  border: 0 !important;
  border-right: 1px solid rgba(17, 17, 17, .72) !important;
  border-radius: 0 !important;
  background: rgba(255, 252, 246, .95) !important;
  color: #0c0c0c !important;
  text-align: left !important;
}

html body:has(.home-intro) .hero-offer-tile:last-child {
  border-right: 0 !important;
}

html body:has(.home-intro) .hero-offer-tile--group {
  background: rgba(249, 247, 241, .95) !important;
}

html body:has(.home-intro) .hero-offer-tile--duo {
  background: rgba(244, 241, 235, .95) !important;
}

html body:has(.home-intro) .hero-offer-kicker {
  display: inline-flex !important;
  width: max-content !important;
  min-height: 29px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 16px !important;
  border: 1.5px solid #0D1726 !important;
  border-radius: 999px !important;
  color: #0D1726 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

html body:has(.home-intro) .hero-offer-tile strong {
  display: grid !important;
  gap: 0 !important;
  margin-top: 22px !important;
  color: #080808 !important;
  font-size: 39px !important;
  font-weight: 900 !important;
  line-height: .75 !important;
}

html body:has(.home-intro) .hero-offer-subscriptions {
  display: block !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  line-height: 1.04 !important;
}

html body:has(.home-intro) .hero-offer-gift {
  margin-top: 13px !important;
  color: #bd7430 !important;
  font-size: 55px !important;
  font-weight: 900 !important;
  line-height: .9 !important;
  white-space: nowrap !important;
}

html body:has(.home-intro) .hero-offer-copy {
  margin-top: 5px !important;
  color: #090909 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

html body:has(.home-intro) .hero-offer-tile small {
  display: inline-flex !important;
  width: max-content !important;
  min-height: 37px !important;
  align-self: end !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px !important;
  margin-top: 14px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: #080808 !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

html body:has(.home-intro) .hero-offer-tile small::after {
  content: "\2192";
  font-size: 18px;
  line-height: 1;
}

html body:has(.home-intro) .hero-partners {
  position: static !important;
  inset: auto !important;
  order: 3 !important;
  align-self: end !important;
  justify-self: center !important;
  display: grid !important;
  width: 769px !important;
  min-height: 102px !important;
  place-items: center !important;
  gap: 14px !important;
  padding: 14px 43px 18px !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 10px !important;
  background: rgba(46, 31, 21, .74) !important;
  color: rgba(255, 255, 255, .95) !important;
  box-shadow: 0 22px 58px rgba(13, 23, 38, .32) !important;
  backdrop-filter: blur(14px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.1) !important;
}

html body:has(.home-intro) .hero-partners > span {
  color: rgba(255, 255, 255, .96) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  text-align: center !important;
}

html body:has(.home-intro) .hero-partner-logos {
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 58px !important;
}

html body:has(.home-intro) .hero-partner-logos img {
  display: none !important;
}

html body:has(.home-intro) .hero-partner-logo {
  display: inline-flex !important;
  min-width: 92px !important;
  height: 36px !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

html body:has(.home-intro) .hero-partner-logo--telia::before {
  display: none !important;
}

html body:has(.home-intro) .hero-partner-logo--telenor::before {
  display: none !important;
}

html body:has(.home-intro) .hero-partner-logo img {
  display: block !important;
  width: auto !important;
  max-width: 118px !important;
  height: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 1 !important;
}

html body:has(.home-intro) .hero-partner-logo--telia img {
  mix-blend-mode: multiply !important;
}

html body:has(.home-intro) .hero-partner-logo--tele2 img {
  height: 28px !important;
  max-width: 104px !important;
  filter: grayscale(1) brightness(4) contrast(1.8) !important;
  mix-blend-mode: screen !important;
}

html body:has(.home-intro) .hero-partner-logo--telenor img {
  height: 31px !important;
  max-width: 116px !important;
  mix-blend-mode: multiply !important;
}

html body:has(.home-intro) .hero-partner-logo--tre {
  width: 58px !important;
  min-width: 58px !important;
  border-radius: 0 !important;
}

html body:has(.home-intro) .hero-partner-logo--tre img {
  width: 58px !important;
  height: 58px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

html body:has(.home-intro) .hero > .home-marquee {
  display: none !important;
}

@media (max-height: 900px) and (min-width: 1201px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    min-height: 820px !important;
    padding-top: 122px !important;
    padding-bottom: 17px !important;
    gap: 13px !important;
  }

  html body:has(.home-intro) .hero-bottom h1 {
    font-size: 54px !important;
  }

  html body:has(.home-intro) .hero-lead {
    font-size: 19px !important;
  }

  html body:has(.home-intro) .hero-bottom .button {
    min-height: 53px !important;
  }

  html body:has(.home-intro) .hero-showcase {
    width: 980px !important;
  }

  html body:has(.home-intro) .hero-offer-tile {
    min-height: 252px !important;
    padding: 19px 24px 18px !important;
  }

  html body:has(.home-intro) .hero-offer-tile strong {
    margin-top: 17px !important;
    font-size: 36px !important;
  }

  html body:has(.home-intro) .hero-offer-subscriptions {
    font-size: 20px !important;
  }

  html body:has(.home-intro) .hero-offer-gift {
    font-size: 51px !important;
  }

  html body:has(.home-intro) .hero-partners {
    min-height: 82px !important;
    gap: 9px !important;
  }
}

@media (max-width: 1320px) {
  html body:has(.home-intro) .site-header .header-inner {
    padding-inline: 32px !important;
  }

  html body:has(.home-intro) .site-header .nav-menu {
    gap: 24px !important;
  }

  html body:has(.home-intro) .site-header .header-topbar-group--right {
    margin-left: 28px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    padding-inline: 30px !important;
  }

  html body:has(.home-intro) .hero-bottom {
    margin-left: clamp(0px, 7vw, 80px) !important;
  }

  html body:has(.home-intro) .hero-showcase {
    width: min(100%, 960px) !important;
    max-width: 100% !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 980px) {
  html body:has(.home-intro) .site-header .header-inner {
    min-height: 74px !important;
    padding-inline: 18px !important;
  }

  html body:has(.home-intro) .site-header .brand--logo,
  html body:has(.home-intro) .site-header .brand-logo-crop {
    width: 142px !important;
    height: 38px !important;
    min-height: 38px !important;
  }

  html body:has(.home-intro) .site-header .brand-logo-crop img {
    top: -50px !important;
    left: -31px !important;
    width: 210px !important;
    height: 140px !important;
  }

  html body:has(.home-intro) .site-header .site-nav {
    top: 74px !important;
    background: rgba(10, 11, 14, .94) !important;
    color: #fff !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
  }

  html body:has(.home-intro) .site-header .mobile-nav-toggle {
    border-color: rgba(255, 255, 255, .24) !important;
    background: rgba(255, 255, 255, .12) !important;
    box-shadow: none !important;
  }

  html body:has(.home-intro) .site-header .mobile-nav-toggle span {
    background: #fff !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    grid-template-rows: auto auto auto !important;
    height: auto !important;
    min-height: 100svh !important;
    max-height: none !important;
    padding: 96px 18px 24px !important;
    overflow: visible !important;
    background-position: center center !important;
  }

  html body:has(.home-intro) .hero-bottom {
    width: 100% !important;
    margin-left: 0 !important;
    gap: 18px !important;
  }

  html body:has(.home-intro) .hero-bottom h1 {
    width: 100% !important;
    font-size: clamp(38px, 9vw, 62px) !important;
  }

  html body:has(.home-intro) .hero-lead {
    width: min(100%, 600px) !important;
    font-size: clamp(16px, 2.4vw, 20px) !important;
  }

  html body:has(.home-intro) .hero-bottom-actions,
  html body:has(.home-intro) .hero-proof {
    width: 100% !important;
    max-width: 100% !important;
  }

  html body:has(.home-intro) .hero-proof {
    flex-wrap: wrap !important;
  }

  html body:has(.home-intro) .hero-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 4px 0 0 !important;
  }

  html body:has(.home-intro) .hero-offer-tile {
    height: 210px !important;
    min-height: 0 !important;
    padding: 16px !important;
  }

  html body:has(.home-intro) .hero-offer-tile:nth-child(2) {
    border-right: 0 !important;
  }

  html body:has(.home-intro) .hero-offer-tile:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 17, 17, .26) !important;
  }

  html body:has(.home-intro) .hero-partners {
    width: 100% !important;
    min-height: 92px !important;
  }
}

@media (max-width: 560px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    padding: 84px 14px 16px !important;
    gap: 10px !important;
  }

  html body:has(.home-intro) .hero-bottom {
    gap: 11px !important;
  }

  html body:has(.home-intro) .hero-bottom-copy {
    gap: 7px !important;
  }

  html body:has(.home-intro) .hero-bottom .hero-eyebrow {
    margin-bottom: 4px !important;
    font-size: 10px !important;
  }

  html body:has(.home-intro) .hero-bottom h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: .98 !important;
  }

  html body:has(.home-intro) .hero-lead {
    font-size: 15px !important;
  }

  html body:has(.home-intro) .hero-bottom-actions {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  html body:has(.home-intro) .hero-bottom .button {
    width: 100% !important;
    min-height: 46px !important;
    padding-inline: 18px !important;
    font-size: 13px !important;
  }

  html body:has(.home-intro) .hero-proof {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }

  html body:has(.home-intro) .hero-proof strong {
    gap: 4px !important;
    font-size: 8.6px !important;
  }

  html body:has(.home-intro) .hero-proof strong::before {
    width: 17px !important;
    height: 17px !important;
    border-width: 1.5px !important;
    font-size: 9px !important;
  }

  html body:has(.home-intro) .hero-offer-tile {
    height: 154px !important;
    min-height: 0 !important;
    padding: 10px !important;
  }

  html body:has(.home-intro) .hero-offer-kicker {
    min-height: 24px !important;
    padding-inline: 9px !important;
    font-size: 8px !important;
  }

  html body:has(.home-intro) .hero-offer-tile strong {
    margin-top: 8px !important;
    font-size: clamp(19px, 6vw, 24px) !important;
  }

  html body:has(.home-intro) .hero-offer-subscriptions {
    font-size: .5em !important;
  }

  html body:has(.home-intro) .hero-offer-gift {
    margin-top: 7px !important;
    font-size: clamp(26px, 8vw, 34px) !important;
  }

  html body:has(.home-intro) .hero-offer-copy {
    font-size: 12px !important;
  }

  html body:has(.home-intro) .hero-offer-tile small {
    min-height: 28px !important;
    margin-top: 7px !important;
    padding-inline: 10px !important;
    font-size: 9px !important;
  }

  html body:has(.home-intro) .hero-partners {
    min-height: 70px !important;
    padding: 10px 12px !important;
    gap: 7px !important;
  }

  html body:has(.home-intro) .hero-partner-logos {
    gap: 12px !important;
  }

  html body:has(.home-intro) .hero-partner-logo {
    min-width: 0 !important;
    font-size: 15px !important;
  }

  html body:has(.home-intro) .hero-partner-logo--telia::before,
  html body:has(.home-intro) .hero-partner-logo--telenor::before {
    width: 16px !important;
    height: 16px !important;
    margin-right: 4px !important;
  }

  html body:has(.home-intro) .hero-partner-logo--tre {
    font-size: 24px !important;
  }

}

html body {
  background-color: #F8F5F0;
  color: #0D1726;
}

html body :where(h1, h2, h3, h4, h5, h6, p, li, dt, dd, label, legend, summary) {
  color: inherit;
}

html body :where(input, select, textarea) {
  border-color: rgba(13, 23, 38, .22);
  background-color: #FFFFFF;
  color: #0D1726;
}

html body :where(input, textarea)::placeholder {
  color: #777777;
}

html body :where(button, .button, [type="button"], [type="submit"]) {
  border-color: #0D1726;
  color: #0D1726;
}

html body :where(:disabled, [aria-disabled="true"]) {
  color: #777777;
}

html body :where(:focus-visible) {
  outline-color: #C8792B;
}

/* Proof row must never sit under the offer cards or run off-screen. */
html body:has(.home-intro) .hero-bottom {
  position: relative !important;
  z-index: 5 !important;
}

html body:has(.home-intro) .hero-bottom-actions {
  overflow: visible !important;
}

html body:has(.home-intro) .hero-bottom-actions .hero-proof {
  position: relative !important;
  z-index: 8 !important;
  display: grid !important;
  grid-template-columns: repeat(3, max-content) !important;
  width: max-content !important;
  max-width: calc(100vw - 40px) !important;
  gap: 26px !important;
  overflow: visible !important;
}

html body:has(.home-intro) .hero-bottom-actions .hero-proof > strong {
  display: inline-flex !important;
  width: max-content !important;
  min-width: 0 !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 9px !important;
  color: rgba(255, 255, 255, .94) !important;
  white-space: nowrap !important;
}

html body:has(.home-intro) .hero-showcase {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 760px) {
  html body:has(.home-intro) .hero-bottom-actions .hero-proof {
    position: absolute !important;
    top: 62px !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 10px !important;
  }

  html body:has(.home-intro) .hero-bottom-actions .hero-proof > strong {
    width: 100% !important;
  }
}

@media (max-width: 760px) {
  html body:has(.home-intro) .hero-bottom-actions {
    position: relative !important;
    padding-bottom: 0 !important;
  }

  html body:has(.home-intro) .hero-bottom-actions .hero-proof {
    display: none !important;
  }
}

html body:has(.home-intro) .hero-proof-mobile {
  display: none;
}

@media (max-width: 760px) {
  html body:has(.home-intro) .hero-proof-mobile {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 10px !important;
    margin-top: 16px !important;
    color: rgba(255, 255, 255, .96) !important;
    text-shadow: 0 2px 16px rgba(13, 23, 38, .6) !important;
  }

  html body:has(.home-intro) .hero-proof-mobile span {
    display: inline-flex !important;
    min-width: 0 !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  html body:has(.home-intro) .hero-proof-mobile span::before {
    display: inline-grid !important;
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 auto !important;
    place-items: center !important;
    border: 2px solid #c8792b !important;
    border-radius: 50% !important;
    color: #c8792b !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  html body:has(.home-intro) .hero-proof-mobile span:nth-child(1)::before {
    content: "\2713" !important;
  }

  html body:has(.home-intro) .hero-proof-mobile span:nth-child(2)::before {
    content: "\f017" !important;
    font-family: "Font Awesome 6 Free" !important;
  }

  html body:has(.home-intro) .hero-proof-mobile span:nth-child(3)::before {
    content: "\f3ed" !important;
    font-family: "Font Awesome 6 Free" !important;
  }
}

html body:has(.home-intro) .hero-bottom-actions .hero-proof > strong {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, .92) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Final overlap cleanup: keep all landing text and controls visible. */
html body:has(.home-intro) .hero-showcase {
  overflow: visible !important;
}

html body:has(.home-intro) .hero-offer-tile {
  overflow: visible !important;
}

html body:has(.home-intro) .hero-offer-tile small {
  white-space: nowrap !important;
}

html body:has(.home-intro) .hero-partners {
  overflow: hidden !important;
}

html body:has(.home-intro) .hero-partner-logos {
  min-width: 0 !important;
}

html body:has(.home-intro) .hero-partner-logo {
  background: transparent !important;
}

html body:has(.home-intro) .hero-partner-logo img {
  background: transparent !important;
}

@media (min-width: 981px) {
  html body:has(.home-intro) .hero-showcase {
    width: min(940px, calc(100vw - 560px)) !important;
    margin-right: 95px !important;
  }

  html body:has(.home-intro) .hero-offer-tile {
    height: 254px !important;
    padding: 19px 25px 18px !important;
  }

  html body:has(.home-intro) .hero-offer-tile strong {
    margin-top: 16px !important;
    font-size: 34px !important;
  }

  html body:has(.home-intro) .hero-offer-subscriptions {
    font-size: 19px !important;
  }

  html body:has(.home-intro) .hero-offer-gift {
    margin-top: 11px !important;
    font-size: 48px !important;
  }

  html body:has(.home-intro) .hero-offer-copy {
    font-size: 19px !important;
  }

  html body:has(.home-intro) .hero-offer-tile small {
    min-height: 34px !important;
    margin-top: 12px !important;
  }

  html body:has(.home-intro) .hero-partners {
    width: min(680px, calc(100vw - 44px)) !important;
    min-height: 86px !important;
    padding: 12px 36px 15px !important;
  }

  html body:has(.home-intro) .hero-partner-logos {
    gap: 42px !important;
  }
}

/* Use one stable proof row directly below the hero CTA. */
html body:has(.home-intro) .hero-bottom-actions .hero-proof {
  display: none !important;
}

html body:has(.home-intro) .hero-proof-mobile {
  display: grid !important;
  grid-template-columns: repeat(3, max-content) !important;
  width: max-content !important;
  max-width: calc(100vw - 40px) !important;
  gap: 28px !important;
  margin-top: 0 !important;
  color: rgba(255, 255, 255, .96) !important;
  text-shadow: 0 2px 16px rgba(13, 23, 38, .6) !important;
}

html body:has(.home-intro) .hero-proof-mobile span {
  display: inline-flex !important;
  min-width: 0 !important;
  align-items: center !important;
  gap: 9px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
}

html body:has(.home-intro) .hero-proof-mobile span::before {
  display: inline-grid !important;
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 auto !important;
  place-items: center !important;
  border: 2px solid #c8792b !important;
  border-radius: 50% !important;
  color: #c8792b !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

html body:has(.home-intro) .hero-proof-mobile span:nth-child(1)::before {
  content: "\2713" !important;
}

html body:has(.home-intro) .hero-proof-mobile span:nth-child(2)::before {
  content: "\f017" !important;
  font-family: "Font Awesome 6 Free" !important;
}

html body:has(.home-intro) .hero-proof-mobile span:nth-child(3)::before {
  content: "\f3ed" !important;
  font-family: "Font Awesome 6 Free" !important;
}

@media (max-width: 760px) {
  html body:has(.home-intro) .hero-proof-mobile {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  html body:has(.home-intro) .hero-proof-mobile span {
    font-size: 13px !important;
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  html body:has(.home-intro) .hero-showcase {
    width: min(100%, 900px) !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 980px) {
  html body:has(.home-intro) .hero-bottom-actions {
    width: min(100%, 640px) !important;
  }

  html body:has(.home-intro) .hero-proof {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(100%, 640px) !important;
    gap: 10px !important;
  }

  html body:has(.home-intro) .hero-proof strong {
    min-width: 0 !important;
    justify-content: center !important;
    gap: 7px !important;
    font-size: 12px !important;
    text-align: center !important;
    white-space: normal !important;
  }

  html body:has(.home-intro) .hero-showcase {
    overflow: hidden !important;
  }

  html body:has(.home-intro) .hero-offer-tile {
    height: auto !important;
    min-height: 292px !important;
    padding: 18px 16px 20px !important;
  }

  html body:has(.home-intro) .hero-offer-tile strong {
    margin-top: 18px !important;
  }

  html body:has(.home-intro) .hero-offer-gift {
    margin-top: 13px !important;
  }

  html body:has(.home-intro) .hero-offer-tile small {
    min-height: 36px !important;
    margin-top: 16px !important;
  }

  html body:has(.home-intro) .hero-partners {
    width: 100% !important;
  }
}

@media (max-width: 560px) {
  html body:has(.home-intro) .hero-bottom-actions .hero-proof {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 7px !important;
  }

  html body:has(.home-intro) .hero-proof {
    grid-template-columns: 1fr !important;
    gap: 5px !important;
  }

  html body:has(.home-intro) .hero-bottom-actions .hero-proof strong {
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  html body:has(.home-intro) .hero-bottom-actions .hero-proof strong::before {
    flex: 0 0 auto !important;
  }

  html body:has(.home-intro) .hero-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body:has(.home-intro) .hero-offer-tile {
    min-height: 226px !important;
    padding: 11px 10px 12px !important;
  }

  html body:has(.home-intro) .hero-offer-tile strong {
    margin-top: 10px !important;
  }

  html body:has(.home-intro) .hero-offer-gift {
    font-size: clamp(25px, 7.8vw, 31px) !important;
  }

  html body:has(.home-intro) .hero-offer-tile small {
    min-height: 30px !important;
    margin-top: 9px !important;
    padding-inline: 9px !important;
    font-size: 8px !important;
  }

  html body:has(.home-intro) .hero-partners > span {
    font-size: 11px !important;
    white-space: normal !important;
  }

  html body:has(.home-intro) .hero-partner-logos {
    gap: 8px !important;
    justify-content: space-between !important;
  }

  html body:has(.home-intro) .hero-partner-logo {
    height: 30px !important;
    min-width: 0 !important;
  }

  html body:has(.home-intro) .hero-partner-logo img {
    max-width: 76px !important;
    height: 28px !important;
    max-height: 28px !important;
  }

  html body:has(.home-intro) .hero-partner-logo--tre,
  html body:has(.home-intro) .hero-partner-logo--tre img {
    width: 42px !important;
    height: 42px !important;
  }
}

@media (max-width: 760px) {
  html body:has(.home-intro) .hero-bottom-actions .hero-proof {
    display: none !important;
  }

  html body:has(.home-intro) .hero-proof-mobile {
    display: grid !important;
  }
}

/* Final requested desktop composition: proof below CTA, cards to the right of the laptop. */
@media (min-width: 981px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    position: relative !important;
  }

  html body:has(.home-intro) .hero-bottom-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 312px) !important;
    gap: 18px !important;
  }

  html body:has(.home-intro) .hero-bottom-actions .hero-proof {
    display: grid !important;
    grid-template-columns: repeat(3, max-content) !important;
    width: max-content !important;
    gap: 28px !important;
    margin-top: 0 !important;
  }

  html body:has(.home-intro) .hero-proof-mobile {
    display: none !important;
  }

  html body:has(.home-intro) .hero-showcase {
    position: absolute !important;
    right: clamp(34px, 5.4vw, 92px) !important;
    bottom: clamp(78px, 11svh, 116px) !important;
    z-index: 3 !important;
    width: clamp(780px, 52vw, 880px) !important;
    max-width: calc(100vw - 760px) !important;
    margin: 0 !important;
  }

  html body:has(.home-intro) .hero-offer-tile {
    height: 254px !important;
    min-height: 0 !important;
    padding: 18px 22px !important;
  }
}

/* Final proof-row lock: keep these labels directly below the CTA on the landing hero. */
html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions > .hero-proof {
  display: none !important;
  visibility: hidden !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions > .hero-proof-mobile {
  display: grid !important;
  visibility: visible !important;
  grid-template-columns: repeat(3, max-content) !important;
  width: max-content !important;
  max-width: calc(100vw - 40px) !important;
  gap: 28px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, .96) !important;
  text-shadow: 0 2px 16px rgba(13, 23, 38, .6) !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions > .hero-proof-mobile span {
  display: inline-flex !important;
  min-width: 0 !important;
  align-items: center !important;
  gap: 9px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions > .hero-proof-mobile span::before {
  display: inline-grid !important;
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 auto !important;
  place-items: center !important;
  border: 2px solid #c8792b !important;
  border-radius: 50% !important;
  color: #c8792b !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions > .hero-proof-mobile span:nth-child(1)::before {
  content: "\2713" !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions > .hero-proof-mobile span:nth-child(2)::before {
  content: "\f017" !important;
  font-family: "Font Awesome 6 Free" !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions > .hero-proof-mobile span:nth-child(3)::before {
  content: "\f3ed" !important;
  font-family: "Font Awesome 6 Free" !important;
}

@media (max-width: 760px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions > .hero-proof-mobile {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 10px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions > .hero-proof-mobile span {
    font-size: 13px !important;
  }
}

@media (min-width: 981px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions {
    width: min(100%, 690px) !important;
    max-width: 690px !important;
    grid-template-columns: max-content !important;
    justify-content: start !important;
    overflow: visible !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions > .hero-proof-mobile {
    justify-self: start !important;
    place-self: start !important;
  }
}

@media (min-width: 1181px) and (max-width: 1320px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-showcase {
    right: clamp(28px, 4vw, 52px) !important;
    bottom: clamp(42px, 6vw, 58px) !important;
    width: min(520px, calc(100vw - 760px)) !important;
    max-width: 520px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile {
    height: 184px !important;
    padding: 13px 20px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-kicker {
    min-height: 26px !important;
    padding-inline: 14px !important;
    font-size: 9px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile strong {
    margin-top: 6px !important;
    line-height: .74 !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-count {
    font-size: 34px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-subscriptions {
    font-size: 14px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-gift {
    margin-top: 5px !important;
    font-size: 34px !important;
    line-height: .92 !important;
    white-space: nowrap !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-copy {
    margin-top: 3px !important;
    font-size: 15px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile small {
    min-height: 29px !important;
    gap: 10px !important;
    margin-top: 6px !important;
    padding-inline: 12px !important;
    font-size: 9px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile small::after {
    font-size: 14px !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
    padding: 120px 40px 44px !important;
    overflow: visible !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom {
    order: 1 !important;
    width: min(100%, 760px) !important;
    margin: 0 auto !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom h1 {
    width: 100% !important;
    font-size: clamp(48px, 6vw, 62px) !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-showcase {
    order: 2 !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: min(100% - 48px, 720px) !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile {
    height: 214px !important;
    min-height: 0 !important;
    padding: 18px 22px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-kicker {
    min-height: 27px !important;
    padding-inline: 14px !important;
    font-size: 10px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile strong {
    margin-top: 8px !important;
    line-height: .74 !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-count {
    font-size: 38px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-subscriptions {
    font-size: 16px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-gift {
    margin-top: 7px !important;
    font-size: 40px !important;
    line-height: .9 !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-copy {
    margin-top: 4px !important;
    font-size: 17px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile small {
    min-height: 31px !important;
    gap: 10px !important;
    margin-top: 8px !important;
    padding-inline: 14px !important;
    font-size: 10px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile small::after {
    font-size: 15px !important;
  }
}

/* Quiz overlay: open the analysis as a transparent modal on the same hero. */
html body.quiz-overlay-open {
  overflow: hidden !important;
}

html body.quiz-overlay-open .site-header {
  display: none !important;
}

html body:has(.home-intro) .hero.quiz-in-hero {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10000 !important;
  isolation: isolate !important;
  display: grid !important;
  grid-template-rows: 1fr auto auto !important;
  gap: 16px !important;
  width: 100% !important;
  height: 100svh !important;
  min-height: 941px !important;
  max-height: 100svh !important;
  padding: 145px 64px 20px !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(13, 23, 38, .66) 0%, rgba(13, 23, 38, .28) 31%, rgba(13, 23, 38, .08) 63%, rgba(13, 23, 38, .32) 100%),
    linear-gradient(180deg, rgba(13, 23, 38, .2) 0%, rgba(13, 23, 38, .04) 46%, rgba(13, 23, 38, .54) 100%),
    url("../images/hherro.png") right center / auto 118% no-repeat !important;
}

html body:has(.home-intro) .hero.quiz-in-hero::before {
  display: none !important;
}

html body:has(.home-intro) .hero.quiz-in-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 !important;
  z-index: -1 !important;
  display: block !important;
  height: 45% !important;
  background: linear-gradient(180deg, transparent, rgba(13, 23, 38, .58)) !important;
  pointer-events: none !important;
}

html body:has(.home-intro) .hero.quiz-in-hero .hero-bottom {
  position: relative !important;
  z-index: 2 !important;
  order: 1 !important;
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

html body:has(.home-intro) .hero.quiz-in-hero .hero-showcase {
  position: absolute !important;
  right: clamp(34px, 5.4vw, 92px) !important;
  bottom: clamp(78px, 11svh, 116px) !important;
  z-index: 1 !important;
  display: grid !important;
  visibility: visible !important;
  width: clamp(780px, 52vw, 880px) !important;
  max-width: calc(100vw - 760px) !important;
  margin: 0 !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

html body:has(.home-intro) .hero.quiz-in-hero .hero-quiz-mount {
  position: absolute !important;
  inset: 0 !important;
  z-index: 20 !important;
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(96px, 10svh, 132px) clamp(20px, 5vw, 84px) clamp(24px, 5svh, 56px) !important;
  place-items: center !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body:has(.home-intro) .hero.quiz-in-hero #quiz-steps-wrapper {
  width: min(100%, 980px) !important;
  max-height: calc(100svh - clamp(132px, 18svh, 188px)) !important;
  padding: 0 !important;
  overflow: visible !important;
  opacity: 1 !important;
  transform-origin: center !important;
  animation: dealettQuizOverlayIn .32s ease-out both !important;
}

html body:has(.home-intro) .hero.quiz-in-hero #quiz-card-stack {
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

html body:has(.home-intro) .hero.quiz-in-hero .quiz-step-card {
  position: static !important;
  inset: auto !important;
  min-height: 0 !important;
  height: auto !important;
}

html body:has(.home-intro) .hero.quiz-in-hero .quiz-step-card:not(.active-step) {
  display: none !important;
}

html body:has(.home-intro) .hero.quiz-in-hero .quiz-step-card.active-step {
  display: block !important;
}

html body:has(.home-intro) .hero.quiz-in-hero .quiz-card {
  max-height: calc(100svh - clamp(132px, 18svh, 188px)) !important;
  min-height: min(520px, calc(100svh - 188px)) !important;
  padding: clamp(22px, 3vw, 36px) clamp(20px, 4vw, 44px) !important;
  border: 1px solid rgba(255, 255, 255, .35) !important;
  border-radius: 18px !important;
  background: rgba(255, 252, 246, .82) !important;
  box-shadow: 0 28px 80px rgba(13, 23, 38, .44) !important;
  color: #0D1726 !important;
  overflow: hidden !important;
  backdrop-filter: blur(18px) saturate(1.16) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.16) !important;
}

html body:has(.home-intro) .hero.quiz-in-hero .quiz-card-body {
  max-height: calc(100svh - clamp(250px, 30svh, 320px)) !important;
  overflow: auto !important;
  overscroll-behavior: contain !important;
  scrollbar-width: none !important;
}

html body:has(.home-intro) .hero.quiz-in-hero .quiz-card-body::-webkit-scrollbar {
  display: none !important;
}

@keyframes dealettQuizOverlayIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.97);
  }

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

@media (min-width: 1181px) and (max-width: 1320px) {
  html body:has(.home-intro) .hero.quiz-in-hero .hero-showcase {
    right: clamp(28px, 4vw, 52px) !important;
    bottom: clamp(42px, 6vw, 58px) !important;
    width: min(520px, calc(100vw - 760px)) !important;
    max-width: 520px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  html body:has(.home-intro) .hero.quiz-in-hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-height: 100svh !important;
    height: 100svh !important;
    padding: 120px 40px 44px !important;
  }

  html body:has(.home-intro) .hero.quiz-in-hero .hero-bottom {
    width: min(100%, 760px) !important;
    margin: 0 auto !important;
  }

  html body:has(.home-intro) .hero.quiz-in-hero .hero-showcase {
    display: none !important;
  }
}

@media (max-width: 980px) {
  html body:has(.home-intro) .hero.quiz-in-hero {
    min-height: 100svh !important;
    height: 100svh !important;
    max-height: 100svh !important;
    padding: 92px 14px 22px !important;
  }

  html body:has(.home-intro) .hero.quiz-in-hero .hero-bottom,
  html body:has(.home-intro) .hero.quiz-in-hero .hero-showcase {
    display: none !important;
  }

  html body:has(.home-intro) .hero.quiz-in-hero .hero-quiz-mount {
    padding: 82px 12px 18px !important;
  }

  html body:has(.home-intro) .hero.quiz-in-hero #quiz-steps-wrapper,
  html body:has(.home-intro) .hero.quiz-in-hero .quiz-card {
    max-height: calc(100svh - 100px) !important;
  }

  html body:has(.home-intro) .hero.quiz-in-hero .quiz-card {
    min-height: min(560px, calc(100svh - 100px)) !important;
    padding: 18px 14px !important;
    border-radius: 16px !important;
  }

  html body:has(.home-intro) .hero.quiz-in-hero .quiz-card-body {
    max-height: calc(100svh - 220px) !important;
  }
}

/* Body-class duplicate for the quiz overlay, independent of :has() support/timing. */
html body.quiz-overlay-open .hero.quiz-in-hero {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10000 !important;
  width: 100vw !important;
  height: 100svh !important;
  min-height: 100svh !important;
  max-height: 100svh !important;
  margin: 0 !important;
  overflow: hidden !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-quiz-mount {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10001 !important;
  display: grid !important;
  width: 100vw !important;
  max-width: none !important;
  min-height: 100svh !important;
  margin: 0 !important;
  padding: clamp(96px, 10svh, 132px) clamp(20px, 5vw, 84px) clamp(24px, 5svh, 56px) !important;
  place-items: center !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero #quiz-steps-wrapper {
  width: min(100%, 980px) !important;
  max-height: calc(100svh - clamp(132px, 18svh, 188px)) !important;
  margin: 0 !important;
}

@media (max-width: 980px) {
  html body.quiz-overlay-open .hero.quiz-in-hero .hero-quiz-mount {
    justify-items: start !important;
    padding: 82px 20px 18px !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero #quiz-steps-wrapper {
    width: min(calc(100vw - 40px), 350px) !important;
    max-width: min(calc(100vw - 40px), 350px) !important;
    max-height: calc(100svh - 100px) !important;
    overflow: hidden !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero #quiz-steps-wrapper > *,
  html body.quiz-overlay-open .hero.quiz-in-hero #quiz-card-stack,
  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-step-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-card,
  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-card-body,
  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-person-grid,
  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-option-list,
  html body.quiz-overlay-open .hero.quiz-in-hero .operator-per-person {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-card {
    width: min(calc(100vw - 40px), 350px) !important;
    max-width: min(calc(100vw - 40px), 350px) !important;
    overflow: hidden !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-title,
  html body.quiz-overlay-open .hero.quiz-in-hero .result-title {
    max-width: 100% !important;
    font-size: clamp(28px, 9.4vw, 38px) !important;
    line-height: .96 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-subtitle,
  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-card-body > h3 {
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-person-grid,
  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-option-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-option {
    min-width: 0 !important;
    width: 100% !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-progress-row {
    min-width: 0 !important;
    flex-wrap: wrap !important;
  }
}

/* Results refinement blind: no checkboxes, just a roll-down prompt. */
html body .hero.quiz-in-hero .offers-recommendation-grid > .quiz-refinement-panel--blind {
  position: relative !important;
  display: block !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(17, 17, 17, .22) !important;
  border-radius: 18px !important;
  background: rgba(255, 252, 246, .94) !important;
  box-shadow: 0 20px 54px rgba(13, 23, 38, .24) !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-refinement-tab {
  display: none !important;
  width: 100% !important;
  min-height: 58px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 0 18px !important;
  border: 0 !important;
  background: #0D1726 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  text-align: left !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-refinement-tab span:last-child {
  font-size: 20px !important;
  line-height: 1 !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-refinement-blind {
  display: grid !important;
  gap: 18px !important;
  max-height: 520px !important;
  padding: 22px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transform-origin: top !important;
  transition:
    max-height .34s ease,
    opacity .24s ease,
    padding .34s ease,
    transform .34s ease !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind.is-collapsed .quiz-refinement-tab {
  display: inline-flex !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind.is-collapsed .quiz-refinement-blind {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0 !important;
  transform: translateY(-10px) !important;
  pointer-events: none !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-refinement-copy {
  display: grid !important;
  gap: 10px !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-refinement-kicker {
  margin: 0 !important;
  color: #bd7430 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .1em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-refinement-copy h4 {
  margin: 0 !important;
  color: #0D1726 !important;
  font-size: clamp(24px, 2.1vw, 32px) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-refinement-copy p:last-child {
  margin: 0 !important;
  color: rgba(17, 17, 17, .68) !important;
  font-size: 15px !important;
  font-weight: 650 !important;
  line-height: 1.42 !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-refinement-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin: 0 !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-next-button,
html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-refinement-link {
  width: 100% !important;
  min-height: 46px !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
}

html body .hero.quiz-in-hero .quiz-refinement-panel--blind .quiz-refinement-link {
  border: 1px solid rgba(17, 17, 17, .24) !important;
  background: transparent !important;
  color: #0D1726 !important;
}

html body .hero.quiz-in-hero .streaming-checkbox input[type="checkbox"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  opacity: 0 !important;
  clip: rect(0 0 0 0) !important;
}

html body .hero.quiz-in-hero .streaming-checkbox {
  position: relative !important;
  cursor: pointer !important;
}

html body .hero.quiz-in-hero .streaming-checkbox span::before {
  content: "" !important;
  display: inline-block !important;
  width: 10px !important;
  height: 10px !important;
  margin-right: 9px !important;
  border-radius: 999px !important;
  background: rgba(17, 17, 17, .18) !important;
  vertical-align: middle !important;
}

html body .hero.quiz-in-hero .streaming-checkbox:has(input[type="checkbox"]:checked) span::before {
  background: #c8792b !important;
  box-shadow: 0 0 0 4px rgba(200, 121, 43, .16) !important;
}

/* Header logo: render the provided image normally. */
html body .site-header .brand--logo::before,
html body .site-header .brand--logo::after {
  display: none !important;
  content: none !important;
}

html body .site-header .brand--logo {
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  align-items: center !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}

/* Inactive earlier map-control draft retained to preserve the surrounding dirty worktree.
.coverage-main.coverage-maplibre-section .coverage-maplibre-shell {
  height: clamp(620px, 72vh, 760px) !important;
  min-height: 620px !important;
  border: 1px solid rgba(13, 23, 38, .16) !important;
  border-radius: 24px !important;
  background: #dce8ec !important;
  box-shadow: 0 24px 64px rgba(13, 23, 38, .14) !important;
}

.coverage-main.coverage-maplibre-section .coverage-maplibre-shell::before {
  content: none !important;
  display: none !important;
}

.coverage-main.coverage-maplibre-section .coverage-maplibre-scrim {
  background: transparent !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar {
  position: absolute;
  z-index: 10;
  top: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  width: 286px;
  flex-direction: column;
  gap: 22px;
  padding: 25px 22px 20px;
  overflow: hidden;
  border: 1px solid rgba(13, 23, 38, .12);
  border-radius: 19px;
  background: rgba(255, 255, 255, .94);
  color: #0d1726;
  box-shadow: 0 16px 46px rgba(13, 23, 38, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-note {
  position: relative !important;
  inset: auto !important;
  z-index: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy {
  padding: 0 0 20px !important;
  border-bottom: 1px solid rgba(13, 23, 38, .1) !important;
  color: #0d1726 !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-kicker {
  margin: 0 0 8px !important;
  color: #b75f1c !important;
  font: 750 10px/1.2 var(--dui-font-body, Arial, sans-serif) !important;
  letter-spacing: .13em !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy h2 {
  max-width: 230px !important;
  margin: 0 !important;
  color: #0d1726 !important;
  font: 650 27px/1.02 var(--dui-font-heading, Arial, sans-serif) !important;
  letter-spacing: -.035em !important;
  text-shadow: none !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy p:last-child {
  margin: 10px 0 0 !important;
  color: rgba(13, 23, 38, .62) !important;
  font: 400 12px/1.5 var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks {
  display: grid !important;
  padding: 22px 0 0 !important;
  gap: 8px !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators::before,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks::before {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  color: rgba(13, 23, 38, .5) !important;
  font: 750 9px/1 var(--dui-font-body, Arial, sans-serif) !important;
  letter-spacing: .13em !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-network {
  min-width: 0 !important;
  min-height: 39px !important;
  padding: 0 11px !important;
  border: 1px solid rgba(13, 23, 38, .13) !important;
  border-radius: 11px !important;
  background: #f5f6f6 !important;
  color: #23313f !important;
  font: 700 12px/1 var(--dui-font-body, Arial, sans-serif) !important;
  text-align: center !important;
  box-shadow: none !important;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease, transform .18s ease !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator:hover,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-network:hover {
  border-color: rgba(201, 111, 36, .54) !important;
  background: #fff8f1 !important;
  color: #944914 !important;
  transform: translateY(-1px) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator.is-active,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator[aria-pressed="true"],
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-network.is-active,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-network[aria-pressed="true"] {
  outline: 0 !important;
  border-color: #b9601d !important;
  background-color: #c96f24 !important;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(201, 111, 36, .2) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator.is-active::after {
  right: 8px !important;
  width: 16px !important;
  height: 16px !important;
  background: #fff !important;
  color: #9b4c14 !important;
  font-size: 9px !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-note {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  gap: 9px !important;
  align-items: start !important;
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(13, 23, 38, .1) !important;
  color: rgba(13, 23, 38, .56) !important;
  font: 400 9.5px/1.45 var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-note__icon {
  width: 19px !important;
  height: 19px !important;
  border-color: rgba(201, 111, 36, .6) !important;
  color: #a95317 !important;
  font-size: 9px !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-note a {
  color: #a95317 !important;
}

.coverage-maplibre-section .coverage-maplibre-search {
  --coverage-search-transform: none;
  top: 18px !important;
  right: auto !important;
  left: 322px !important;
  z-index: 12 !important;
  width: min(430px, calc(100% - 520px)) !important;
  height: 52px !important;
  max-height: 52px !important;
  min-height: 52px !important;
  transform: none !important;
  overflow: visible !important;
  border: 1px solid rgba(13, 23, 38, .12) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 10px 30px rgba(13, 23, 38, .16) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.coverage-maplibre-section .coverage-maplibre-search:focus-within {
  border-color: rgba(201, 111, 36, .75) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(201, 111, 36, .16), 0 14px 36px rgba(13, 23, 38, .18) !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder,
.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder input {
  background: transparent !important;
  box-shadow: none !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder input {
  height: 50px !important;
  padding: 0 44px 0 52px !important;
  border: 0 !important;
  outline: 0 !important;
  color: #172331 !important;
  font: 600 14px/50px var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder input::placeholder {
  color: rgba(13, 23, 38, .55) !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder--icon-search,
.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder--icon-close {
  color: #4a5661 !important;
  fill: currentColor !important;
}

.coverage-maplibre-section .coverage-maplibre-search .suggestions {
  border-color: rgba(13, 23, 38, .1) !important;
  background: rgba(255, 255, 255, .98) !important;
  color: #172331 !important;
  box-shadow: 0 18px 44px rgba(13, 23, 38, .18) !important;
}

.coverage-maplibre-section .coverage-maplibre-search .suggestions > li > a,
.coverage-maplibre-section .coverage-maplibre-search .suggestions > li > button {
  border-bottom-color: rgba(13, 23, 38, .08) !important;
  color: #172331 !important;
}

.coverage-maplibre-section .coverage-maplibre-actions {
  top: 18px !important;
  right: auto !important;
  left: calc(322px + min(430px, calc(100% - 520px)) + 10px) !important;
  z-index: 11 !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  transform: none !important;
  backdrop-filter: none !important;
}

.coverage-maplibre-section .coverage-maplibre-action {
  position: relative !important;
  min-height: 52px !important;
  padding: 0 17px 0 40px !important;
  border: 1px solid rgba(13, 23, 38, .12) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, .96) !important;
  color: #172331 !important;
  font: 700 12px/1 var(--dui-font-body, Arial, sans-serif) !important;
  box-shadow: 0 10px 30px rgba(13, 23, 38, .16) !important;
}

.coverage-maplibre-section .coverage-maplibre-action::before {
  content: none !important;
  position: absolute !important;
  left: 15px !important;
  margin: 0 !important;
  color: #b75f1c !important;
  font-size: 18px !important;
}

.coverage-maplibre-section .coverage-maplibre-action:hover,
.coverage-maplibre-section .coverage-maplibre-action.is-busy {
  border-color: rgba(201, 111, 36, .65) !important;
  background: #fff8f1 !important;
  color: #944914 !important;
  transform: translateY(-1px) !important;
}

.coverage-maplibre-section .coverage-maplibre-zoom {
  top: 18px !important;
  right: 18px !important;
  z-index: 11 !important;
  width: 48px !important;
  overflow: hidden !important;
  border: 1px solid rgba(13, 23, 38, .12) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 10px 30px rgba(13, 23, 38, .16) !important;
  backdrop-filter: blur(16px) !important;
}

.coverage-maplibre-section .coverage-maplibre-search .coverage-maplibre-live-suggestions {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: 0 !important;
  width: auto !important;
  margin: 0 !important;
}

.coverage-maplibre-section .coverage-maplibre-zoom button {
  width: 48px !important;
  height: 45px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #172331 !important;
  font-size: 22px !important;
}

.coverage-maplibre-section .coverage-maplibre-zoom button + button {
  border-top: 1px solid rgba(13, 23, 38, .09) !important;
}

.coverage-maplibre-section .coverage-maplibre-perspective.is-active {
  outline: 0 !important;
  background-color: #c96f24 !important;
  color: #fff !important;
}

.coverage-maplibre-section .coverage-maplibre-themes {
  right: 18px !important;
  bottom: 18px !important;
  left: auto !important;
  z-index: 11 !important;
  display: flex !important;
  gap: 3px !important;
  padding: 4px !important;
  border: 1px solid rgba(13, 23, 38, .12) !important;
  border-radius: 13px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 10px 30px rgba(13, 23, 38, .14) !important;
  transform: none !important;
  backdrop-filter: blur(16px) !important;
}

.coverage-maplibre-section .coverage-maplibre-themes button {
  min-height: 33px !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: transparent !important;
  color: rgba(13, 23, 38, .62) !important;
  font: 700 10px/1 var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-themes button.is-active,
.coverage-maplibre-section .coverage-maplibre-themes button[aria-pressed="true"] {
  outline: 0 !important;
  background: #c96f24 !important;
  color: #fff !important;
}

body:has(.home-intro) .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.coverage-maplibre-section .maplibregl-ctrl-attrib {
  margin: 0 12px 10px 0 !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .84) !important;
  color: rgba(13, 23, 38, .62) !important;
}

.coverage-maplibre-section .maplibregl-ctrl-attrib a {
  color: rgba(13, 23, 38, .78) !important;
}

@media (max-width: 980px) and (min-width: 761px) {
  .coverage-maplibre-section .coverage-maplibre-sidebar {
    width: 250px;
    padding-inline: 18px;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy h2 {
    font-size: 24px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-search {
    left: 286px !important;
    width: min(360px, calc(100% - 470px)) !important;
  }

  .coverage-maplibre-section .coverage-maplibre-actions {
    left: calc(286px + min(360px, calc(100% - 470px)) + 8px) !important;
  }
}

@media (max-width: 760px) {
  .coverage-main.coverage-maplibre-section .coverage-maplibre-shell {
    height: 820px !important;
    min-height: 820px !important;
    border-radius: 20px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar {
    top: 12px;
    right: 12px;
    bottom: auto;
    left: 12px;
    width: auto;
    height: 254px;
    gap: 15px;
    padding: 18px;
    overflow: visible;
    border-radius: 16px;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy {
    padding-bottom: 13px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-kicker {
    margin-bottom: 5px !important;
    font-size: 9px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy h2 {
    max-width: 310px !important;
    font-size: 23px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy p:last-child {
    display: none !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators,
  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks {
    padding-top: 17px !important;
    gap: 6px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  body:has(.home-intro) .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator,
  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-network {
    min-height: 34px !important;
    padding: 0 4px !important;
    border-radius: 9px !important;
    font-size: 10px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator.is-active::after {
    display: none !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-note {
    position: absolute !important;
    top: 640px !important;
    right: 0 !important;
    left: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding: 12px !important;
    border: 1px solid rgba(13, 23, 38, .12) !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, .94) !important;
    color: rgba(13, 23, 38, .58) !important;
    box-shadow: 0 10px 28px rgba(13, 23, 38, .14) !important;
    backdrop-filter: blur(14px) !important;
  }

  .coverage-maplibre-section .coverage-maplibre-search {
    top: 280px !important;
    right: 120px !important;
    left: 12px !important;
    width: auto !important;
  }

  .coverage-maplibre-section .coverage-maplibre-actions {
    top: 280px !important;
    right: 12px !important;
    left: auto !important;
    width: 98px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-action {
    width: 98px !important;
    padding: 0 8px !important;
    justify-content: center !important;
    font-size: 10px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-action::before {
    content: none !important;
  }

  .coverage-maplibre-section .coverage-maplibre-zoom {
    top: 346px !important;
    right: 12px !important;
    width: 44px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-zoom button {
    width: 44px !important;
    height: 42px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-themes {
    right: 12px !important;
    bottom: 12px !important;
  }

  .coverage-maplibre-section .maplibregl-ctrl-attrib {
    max-width: calc(100% - 24px) !important;
    margin: 0 12px 8px 0 !important;
  }
}
*/

html body:has(.home-intro) .site-header .brand--logo {
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

html body .site-header .brand-logo {
  display: block !important;
  width: clamp(170px, 18vw, 260px) !important;
  height: auto !important;
  max-width: none !important;
  filter: none !important;
}

@media (max-width: 980px) {
  html body .site-header .brand-logo {
    width: min(180px, 42vw) !important;
    height: auto !important;
  }
}

html body .bankid-modal__qr-logo {
  width: 54% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body .bankid-modal__qr-logo img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
}

html body .terms-review-compact img {
  width: min(150px, 34vw) !important;
  max-width: none !important;
  max-height: none !important;
  height: auto !important;
}

html body .terms-review-compact {
  grid-template-columns: max-content minmax(0, 1fr) !important;
}

@media (max-width: 620px) {
  html body .terms-review-compact {
    grid-template-columns: 1fr !important;
  }
}

html body.legal-document-page .site-header {
  overflow-x: clip !important;
}

html:has(body.legal-document-page),
html body.legal-document-page {
  max-width: 100%;
  overflow-x: hidden !important;
}

/* Landing offer-card fit lock: keep all text and buttons inside each tile. */
html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile {
  padding: 16px 18px !important;
  overflow: hidden !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-kicker {
  min-height: 24px !important;
  padding: 0 12px !important;
  font-size: 9px !important;
  letter-spacing: .1em !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile strong {
  margin-top: 10px !important;
  line-height: .82 !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-count {
  font-size: 36px !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-subscriptions {
  font-size: 15px !important;
  line-height: 1.08 !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-gift {
  margin-top: 8px !important;
  font-size: 39px !important;
  line-height: .92 !important;
  white-space: nowrap !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-copy {
  margin-top: 4px !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile small {
  min-height: 29px !important;
  max-width: 100% !important;
  gap: 9px !important;
  margin-top: 8px !important;
  padding: 0 12px !important;
  overflow: hidden !important;
  font-size: 10px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile small::after {
  font-size: 14px !important;
}

@media (max-width: 560px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile {
    padding: 10px 9px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-kicker {
    min-height: 22px !important;
    padding-inline: 9px !important;
    font-size: 7px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile strong {
    margin-top: 8px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-count {
    font-size: 28px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-subscriptions {
    font-size: 11px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-gift {
    margin-top: 6px !important;
    font-size: 25px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-copy {
    font-size: 12px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile small {
    min-height: 26px !important;
    gap: 7px !important;
    margin-top: 7px !important;
    padding-inline: 8px !important;
    font-size: 8px !important;
  }
}

/* Header cart: show Varukorg beside Mina sidor on the landing header. */
html body:has(.home-intro) .site-header .header-topbar-group--right {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: 34px !important;
}

html body:has(.home-intro) .site-header .header-cart-link {
  position: relative !important;
  display: inline-flex !important;
  width: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .28) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .13) !important;
  color: #fff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    0 14px 32px rgba(13, 23, 38, .32) !important;
  backdrop-filter: blur(14px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.1) !important;
  font-size: 17px !important;
}

html body:has(.home-intro) .site-header .header-cart-link:hover,
html body:has(.home-intro) .site-header .header-cart-link:focus-visible,
html body:has(.home-intro) .site-header .header-account-link:hover,
html body:has(.home-intro) .site-header .header-account-link:focus-visible {
  background: rgba(255, 255, 255, .2) !important;
}

html body:has(.home-intro) .site-header .header-cart-count {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  display: inline-grid !important;
  min-width: 16px !important;
  height: 16px !important;
  place-items: center !important;
  padding: 0 4px !important;
  border-radius: 999px !important;
  background: #c8792b !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

html body:has(.home-intro) .site-header .header-cart-count.is-hidden {
  display: none !important;
}

@media (max-width: 980px) {
  html body:has(.home-intro) .site-header .header-topbar-group--right {
    margin: 0 54px 0 auto !important;
    gap: 8px !important;
  }

  html body:has(.home-intro) .site-header .header-cart-link {
    width: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 15px !important;
  }
}

/* Tiny customer-type switch, absolutely positioned so header spacing stays unchanged. */
html body .site-header .audience-switch {
  position: absolute !important;
  top: 6px !important;
  left: 18px !important;
  z-index: 4 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
  pointer-events: auto !important;
}

html body .site-header .audience-switch__link {
  display: inline-flex !important;
  min-height: 18px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 7px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0D1726 !important;
  font-size: 10px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 760px) {
  html body .site-header .audience-switch {
    top: 4px !important;
    left: 10px !important;
    gap: 2px !important;
  }

  html body .site-header .audience-switch__link {
    min-height: 16px !important;
    padding-inline: 5px !important;
    font-size: 8px !important;
  }
}

/* True quiz popup: keep the landing view intact and float a compact modal above it. */
html body.quiz-overlay-open .site-header {
  display: block !important;
  visibility: visible !important;
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 10001 !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1 !important;
  isolation: isolate !important;
  display: grid !important;
  grid-template-rows: 1fr auto auto !important;
  gap: 16px !important;
  width: 100% !important;
  height: 100svh !important;
  min-height: 941px !important;
  max-height: 100svh !important;
  margin: 0 !important;
  padding: 145px 64px 20px !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(13, 23, 38, .66) 0%, rgba(13, 23, 38, .28) 31%, rgba(13, 23, 38, .08) 63%, rgba(13, 23, 38, .32) 100%),
    linear-gradient(180deg, rgba(13, 23, 38, .2) 0%, rgba(13, 23, 38, .04) 46%, rgba(13, 23, 38, .54) 100%),
    url("../images/hherro.png") right center / auto 118% no-repeat !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero::before {
  display: none !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 !important;
  z-index: -1 !important;
  display: block !important;
  height: 45% !important;
  background: linear-gradient(180deg, transparent, rgba(13, 23, 38, .58)) !important;
  pointer-events: none !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-bottom {
  position: relative !important;
  z-index: 5 !important;
  order: 1 !important;
  align-self: start !important;
  justify-self: start !important;
  display: grid !important;
  grid-template-columns: minmax(0, 760px) !important;
  width: min(760px, 100%) !important;
  margin: 0 0 0 117px !important;
  padding: 0 !important;
  gap: 33px !important;
  color: #fff !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-showcase {
  position: absolute !important;
  right: clamp(34px, 5.4vw, 92px) !important;
  bottom: clamp(78px, 11svh, 116px) !important;
  z-index: 3 !important;
  order: 2 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: clamp(780px, 52vw, 880px) !important;
  max-width: calc(100vw - 760px) !important;
  margin: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-offer-tile {
  height: 254px !important;
  min-height: 0 !important;
  padding: 16px 18px !important;
  overflow: hidden !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-offer-kicker {
  min-height: 24px !important;
  padding: 0 12px !important;
  font-size: 9px !important;
  letter-spacing: .1em !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-offer-tile strong {
  margin-top: 10px !important;
  line-height: .82 !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-offer-count {
  font-size: 36px !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-offer-subscriptions {
  font-size: 15px !important;
  line-height: 1.08 !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-offer-gift {
  margin-top: 8px !important;
  font-size: 39px !important;
  line-height: .92 !important;
  white-space: nowrap !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-offer-copy {
  margin-top: 4px !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-offer-tile small {
  min-height: 29px !important;
  max-width: 100% !important;
  gap: 9px !important;
  margin-top: 8px !important;
  padding: 0 12px !important;
  overflow: hidden !important;
  font-size: 10px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .hero-quiz-mount {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10002 !important;
  display: grid !important;
  width: 100vw !important;
  min-height: 100svh !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center !important;
  background: transparent !important;
  pointer-events: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero #quiz-steps-wrapper {
  width: min(680px, calc(100vw - 48px)) !important;
  max-width: min(680px, calc(100vw - 48px)) !important;
  max-height: min(620px, calc(100svh - 96px)) !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  pointer-events: auto !important;
  animation: dealettQuizOverlayIn .24s ease-out both !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero #quiz-card-stack,
html body.quiz-overlay-open .hero.quiz-in-hero #quiz-steps-wrapper > *,
html body.quiz-overlay-open .hero.quiz-in-hero .quiz-step-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-step-card:not(.active-step) {
  display: none !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-step-card.active-step {
  display: block !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-card {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  max-height: min(620px, calc(100svh - 96px)) !important;
  padding: 22px 28px 26px !important;
  border: 1px solid rgba(255, 255, 255, .45) !important;
  border-radius: 18px !important;
  background: rgba(255, 252, 246, .92) !important;
  box-shadow: 0 22px 72px rgba(13, 23, 38, .34) !important;
  overflow: hidden !important;
  backdrop-filter: blur(12px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.1) !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-card-toolbar {
  margin-bottom: 16px !important;
  padding-bottom: 14px !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-card-body {
  max-height: min(470px, calc(100svh - 230px)) !important;
  padding-top: 18px !important;
  overflow: auto !important;
  scrollbar-width: none !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-card-body::-webkit-scrollbar {
  display: none !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-title,
html body.quiz-overlay-open .hero.quiz-in-hero .result-title {
  margin-top: 0 !important;
  font-size: clamp(34px, 4.2vw, 54px) !important;
  line-height: .96 !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-subtitle,
html body.quiz-overlay-open .hero.quiz-in-hero .result-desc,
html body.quiz-overlay-open .hero.quiz-in-hero .quiz-card-body > h3 {
  max-width: 560px !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-person-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 28px !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-option {
  min-height: 58px !important;
  min-width: 0 !important;
  padding: 12px 14px !important;
  font-size: 18px !important;
}

html body.quiz-overlay-open .hero.quiz-in-hero .quiz-more-toggle {
  min-height: 44px !important;
  margin-top: 18px !important;
  padding: 0 24px !important;
  font-size: 16px !important;
}

@media (max-width: 980px) {
  html body.quiz-overlay-open .hero.quiz-in-hero {
    min-height: 100svh !important;
    height: 100svh !important;
    max-height: 100svh !important;
    padding: 92px 14px 22px !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .hero-bottom,
  html body.quiz-overlay-open .hero.quiz-in-hero .hero-showcase {
    display: none !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero #quiz-steps-wrapper {
    width: min(350px, calc(100vw - 40px)) !important;
    max-width: min(350px, calc(100vw - 40px)) !important;
    max-height: calc(100svh - 96px) !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-card {
    max-height: calc(100svh - 96px) !important;
    padding: 18px 14px !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-title,
  html body.quiz-overlay-open .hero.quiz-in-hero .result-title {
    font-size: clamp(28px, 9.4vw, 38px) !important;
  }

  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-person-grid,
  html body.quiz-overlay-open .hero.quiz-in-hero .quiz-option-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

/* Standalone quiz modal. The landing hero stays exactly where it is. */
.quiz-popup-actions {
  display: none;
}

html body.quiz-overlay-open {
  overflow: hidden !important;
}

html body.quiz-overlay-open .quiz-modal-layer {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10002 !important;
  display: grid !important;
  width: 100vw !important;
  height: 100svh !important;
  margin: 0 !important;
  padding: 112px 5vw 38px !important;
  place-items: center !important;
  background: transparent !important;
  pointer-events: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #quiz-steps-wrapper {
  width: min(1180px, calc(100vw - 10vw)) !important;
  max-width: min(1180px, calc(100vw - 10vw)) !important;
  height: min(720px, calc(100svh - 150px)) !important;
  max-height: min(720px, calc(100svh - 150px)) !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  pointer-events: auto !important;
  transform-origin: center !important;
  animation: dealettQuizOverlayIn .24s ease-out both !important;
}

html body.quiz-overlay-open .quiz-modal-layer #quiz-card-stack,
html body.quiz-overlay-open .quiz-modal-layer #quiz-steps-wrapper > *,
html body.quiz-overlay-open .quiz-modal-layer .quiz-step-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: 100% !important;
  overflow: visible !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-step-card {
  position: static !important;
  inset: auto !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-step-card:not(.active-step) {
  display: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-step-card.active-step {
  display: block !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-card {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 100% !important;
  height: 100% !important;
  max-height: min(720px, calc(100svh - 150px)) !important;
  padding: clamp(24px, 3vw, 38px) clamp(28px, 4vw, 56px) !important;
  border: 1px solid rgba(255, 255, 255, .42) !important;
  border-radius: 18px !important;
  background: rgba(255, 252, 246, .94) !important;
  color: #141414 !important;
  box-shadow: 0 26px 80px rgba(13, 23, 38, .34) !important;
  overflow: hidden !important;
  backdrop-filter: blur(9px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(9px) saturate(1.08) !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-card-toolbar {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin: 0 0 clamp(18px, 2.4vw, 30px) !important;
  min-height: 64px !important;
  padding: 56px 0 14px !important;
  border-bottom: 1px solid rgba(20, 20, 20, .18) !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-back-inline {
  min-height: 48px !important;
  padding: 0 22px !important;
  border-radius: 12px !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-progress-row {
  display: grid !important;
  justify-items: end !important;
  gap: 7px !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-progress-track {
  width: 220px !important;
  height: 5px !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-step-count {
  font-size: 17px !important;
  line-height: 1 !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-ai-actions {
  position: absolute !important;
  top: 78px !important;
  right: 0 !important;
  z-index: 8 !important;
  margin: 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-ai-button {
  width: auto !important;
  height: 48px !important;
  min-height: 48px !important;
  max-width: 310px !important;
  padding: 0 18px !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  white-space: nowrap !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-actions {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-restart,
html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-minimize {
  height: 52px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #272433 !important;
  font: 800 16px/1 Arial, sans-serif !important;
  cursor: pointer !important;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-restart {
  display: inline-grid !important;
  width: 52px !important;
  padding: 0 !important;
  place-items: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-minimize {
  display: inline-grid !important;
  width: 52px !important;
  padding: 0 !important;
  place-items: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-back-inline svg,
html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-restart svg,
html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-minimize svg {
  width: 22px !important;
  height: 22px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-width: 1.8 !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-minimize {
  border-top-right-radius: 17px !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-restart:hover,
html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-minimize:hover,
html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-restart:focus-visible,
html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-minimize:focus-visible {
  background: rgba(20, 20, 20, .09) !important;
  transform: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-card-body {
  flex: 1 1 auto !important;
  height: auto !important;
  max-height: min(520px, calc(100svh - 300px)) !important;
  padding-top: clamp(10px, 2vw, 28px) !important;
  justify-content: center !important;
  overflow: auto !important;
  overscroll-behavior: contain !important;
  scrollbar-width: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-card-body::-webkit-scrollbar {
  display: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-title,
html body.quiz-overlay-open .quiz-modal-layer .result-title {
  max-width: 760px !important;
  margin: 0 auto !important;
  font-size: clamp(52px, 5.2vw, 78px) !important;
  line-height: .96 !important;
  letter-spacing: 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-subtitle,
html body.quiz-overlay-open .quiz-modal-layer .result-desc,
html body.quiz-overlay-open .quiz-modal-layer .quiz-card-body > h3 {
  max-width: 720px !important;
  margin: 18px auto 0 !important;
  color: #697184 !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-person-grid,
html body.quiz-overlay-open .quiz-modal-layer .quiz-option-list {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 42px !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-option {
  min-width: 0 !important;
  min-height: 128px !important;
  padding: 20px 16px !important;
  border-radius: 10px !important;
  font-size: 24px !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-more-toggle,
html body.quiz-overlay-open .quiz-modal-layer .quiz-next-button {
  min-height: 56px !important;
  margin-top: 28px !important;
  padding: 0 34px !important;
  border-radius: 0 !important;
  font-size: 19px !important;
}

html body.quiz-overlay-open .quiz-modal-layer .offers-recommendation-grid {
  gap: 12px !important;
}

html body.quiz-overlay-open .quiz-modal-layer .offers-recommendation-grid.offers-recommendation-grid--featured,
html body.quiz-overlay-open .quiz-modal-layer .offers-recommendation-grid.offers-recommendation-grid--expanded {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 100% !important;
}

html body.quiz-overlay-open .quiz-modal-layer .offers-recommendation-grid > .quiz-refinement-panel,
html body.quiz-overlay-open .quiz-modal-layer .offers-recommendation-grid--expanded > .quiz-refinement-panel {
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
}

/* Keep every quiz control centered inside the popup. */
html body.quiz-overlay-open .quiz-modal-layer .quiz-card-toolbar {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  text-align: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-back-inline,
html body.quiz-overlay-open .quiz-modal-layer .quiz-progress-row,
html body.quiz-overlay-open .quiz-modal-layer .quiz-more-toggle,
html body.quiz-overlay-open .quiz-modal-layer .quiz-next-button,
html body.quiz-overlay-open .quiz-modal-layer .recommendation-results-toggle,
html body.quiz-overlay-open .quiz-modal-layer .quiz-refinement-link,
html body.quiz-overlay-open .quiz-modal-layer .operator-no-binding-button {
  justify-self: center !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-progress-row {
  justify-items: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-ai-actions {
  top: clamp(18px, 2.2vw, 26px) !important;
  right: auto !important;
  left: clamp(28px, 4vw, 56px) !important;
  transform: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-back-inline {
  position: absolute !important;
  top: 0 !important;
  right: 104px !important;
  left: auto !important;
  z-index: 9 !important;
  width: 52px !important;
  min-height: 52px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  justify-content: center !important;
  color: #272433 !important;
  font-size: 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-back-inline:hover,
html body.quiz-overlay-open .quiz-modal-layer .quiz-back-inline:focus-visible {
  background: rgba(20, 20, 20, .09) !important;
  transform: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-ai-button {
  justify-self: auto !important;
  margin: 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-person-grid,
html body.quiz-overlay-open .quiz-modal-layer .quiz-option-list,
html body.quiz-overlay-open .quiz-modal-layer .operator-per-person,
html body.quiz-overlay-open .quiz-modal-layer .operator-choice-grid,
html body.quiz-overlay-open .quiz-modal-layer .quiz-refinement-options,
html body.quiz-overlay-open .quiz-modal-layer .quiz-refinement-actions,
html body.quiz-overlay-open .quiz-modal-layer .offers-recommendation-grid {
  margin-right: auto !important;
  margin-left: auto !important;
  justify-content: center !important;
  justify-items: center !important;
  text-align: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-person-grid,
html body.quiz-overlay-open .quiz-modal-layer .quiz-option-list {
  width: min(100%, 980px) !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-option,
html body.quiz-overlay-open .quiz-modal-layer .quiz-refinement-option,
html body.quiz-overlay-open .quiz-modal-layer .operator-person-card {
  text-align: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-option,
html body.quiz-overlay-open .quiz-modal-layer .quiz-next-button,
html body.quiz-overlay-open .quiz-modal-layer .quiz-more-toggle,
html body.quiz-overlay-open .quiz-modal-layer .quiz-refinement-option {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-option {
  flex-direction: column !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-option span,
html body.quiz-overlay-open .quiz-modal-layer .operator-person-title {
  text-align: center !important;
}

/* Keep every selected quiz answer white with the same orange treatment. */
html body:has(.home-intro) #quiz-steps-wrapper .quiz-option:is(.selected, .active, [aria-pressed="true"]),
html body:has(.home-intro) #quiz-steps-wrapper .operator-no-binding-button:is(.selected, .active, [aria-pressed="true"]),
html body:has(.home-intro) #quiz-steps-wrapper .quiz-refinement-option:is(.selected, .active, .is-selected, [aria-pressed="true"]) {
  border-color: #c8792b !important;
  background: #fff !important;
  color: #272433 !important;
  box-shadow:
    inset 0 0 0 2px #c8792b,
    0 10px 24px rgba(200, 121, 43, .16) !important;
  transform: translateY(-1px) !important;
}

html body:has(.home-intro) #quiz-steps-wrapper .operator-choice-grid .quiz-option:is(.selected, .active, [aria-pressed="true"]) img {
  filter: none !important;
}

html body:has(.home-intro) #quiz-steps-wrapper .quiz-option:is(.selected, .active, [aria-pressed="true"])::after,
html body:has(.home-intro) #quiz-steps-wrapper .operator-no-binding-button:is(.selected, .active, [aria-pressed="true"])::after,
html body:has(.home-intro) #quiz-steps-wrapper .quiz-refinement-option:is(.selected, .active, .is-selected, [aria-pressed="true"])::after {
  border-color: #fff !important;
  background: #c8792b !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* Compact operator step: remove dead white space around logos and binding controls. */
html body.quiz-overlay-open .quiz-modal-layer #step1 .quiz-card-body {
  max-width: min(1320px, 100%) !important;
  padding-top: 0 !important;
  justify-content: flex-start !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .quiz-title {
  max-width: 820px !important;
  font-size: clamp(34px, 3.4vw, 52px) !important;
  line-height: .98 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .quiz-card-body > h3 {
  margin-top: 8px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person {
  display: grid !important;
  width: min(100%, 1260px) !important;
  gap: 14px !important;
  margin: 14px auto 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person[data-operator-count="1"] {
  max-width: 1200px !important;
  grid-template-columns: 1fr !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-person-card {
  display: grid !important;
  gap: 14px !important;
  width: 100% !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(15, 23, 42, .13) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, .62) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-person-title {
  margin: 0 !important;
  color: #101624 !important;
  font-size: 22px !important;
  line-height: 1 !important;
  text-align: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-card-controls {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  align-items: start !important;
  width: 100% !important;
  min-width: 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-choice-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(92px, 1fr)) !important;
  gap: 10px !important;
  width: min(100%, 900px) !important;
  margin: 0 !important;
  align-items: stretch !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-choice-grid .quiz-option {
  width: 100% !important;
  min-height: 76px !important;
  height: 76px !important;
  max-height: 76px !important;
  padding: 8px 10px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, .72) !important;
  overflow: hidden !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-choice-grid .partner-logo {
  width: auto !important;
  max-width: 112px !important;
  height: auto !important;
  max-height: 38px !important;
  object-fit: contain !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-choice-grid [data-operator="Other"] {
  font-size: 21px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-binding-controls {
  display: grid !important;
  grid-template-columns: minmax(280px, 430px) minmax(190px, 230px) !important;
  gap: 10px !important;
  width: min(100%, 700px) !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  padding: 8px !important;
  border: 1px solid rgba(201, 121, 43, .18) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .4) !important;
  box-shadow: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-date-field,
html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-no-binding-button {
  width: 100% !important;
  min-height: 56px !important;
  height: 56px !important;
  max-height: 56px !important;
  margin: 0 !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, .76) !important;
  box-shadow: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-date-field {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) minmax(145px, 170px) !important;
  gap: 8px !important;
  align-items: center !important;
  padding: 8px 10px !important;
  text-align: left !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-date-icon {
  width: 36px !important;
  height: 36px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-date-label {
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  text-align: left !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-date-field input {
  grid-column: auto !important;
  width: 100% !important;
  min-height: 38px !important;
  padding: 0 10px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-no-binding-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 16px !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  text-align: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-choice-grid .quiz-option.selected::after,
html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-choice-grid .quiz-option.active::after,
html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-choice-grid .quiz-option[aria-pressed="true"]::after,
html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-no-binding-button.selected::after,
html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-no-binding-button.active::after,
html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-no-binding-button[aria-pressed="true"]::after {
  top: 6px !important;
  right: 6px !important;
  width: 18px !important;
  height: 18px !important;
  font-size: 11px !important;
}

/* Multi-person operator step: fit up to 10 people on the popup without scrolling. */
html body.quiz-overlay-open .quiz-modal-layer #step1 .quiz-card-body--operator-active:not([data-operator-count="1"]) {
  max-height: none !important;
  padding-top: 0 !important;
  overflow: visible !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .quiz-card-body--operator-active:not([data-operator-count="1"]) .quiz-title {
  max-width: 100% !important;
  font-size: clamp(25px, 2.1vw, 34px) !important;
  line-height: 1 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .quiz-card-body--operator-active:not([data-operator-count="1"]) > h3 {
  margin-top: 4px !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) {
  display: grid !important;
  width: min(100%, 1060px) !important;
  grid-template-columns: 1fr !important;
  gap: 6px !important;
  margin-top: 10px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-person-card {
  display: grid !important;
  grid-template-columns: minmax(58px, 70px) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 42px !important;
  padding: 5px 8px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, .58) !important;
  box-shadow: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-person-title {
  margin: 0 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-card-controls {
  display: grid !important;
  grid-template-columns: minmax(290px, 1fr) minmax(320px, 395px) !important;
  align-items: center !important;
  gap: 8px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-choice-grid {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: repeat(5, minmax(44px, 1fr)) !important;
  gap: 5px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-choice-grid .quiz-option {
  min-height: 32px !important;
  height: 32px !important;
  max-height: 32px !important;
  padding: 4px 6px !important;
  border-radius: 8px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-choice-grid .partner-logo {
  max-width: 62px !important;
  max-height: 24px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-choice-grid [data-operator="Other"] {
  font-size: 12px !important;
  line-height: 1 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-binding-controls {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: minmax(186px, 1fr) minmax(112px, 128px) !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-date-field,
html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-no-binding-button {
  min-height: 32px !important;
  height: 32px !important;
  max-height: 32px !important;
  border-radius: 8px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-date-field {
  grid-template-columns: 24px minmax(118px, 1fr) !important;
  gap: 5px !important;
  padding: 4px 6px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-date-icon {
  width: 24px !important;
  height: 24px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-date-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-date-field input {
  min-height: 24px !important;
  height: 24px !important;
  padding: 0 5px !important;
  border-radius: 6px !important;
  font-size: 11px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:not([data-operator-count="1"]) .operator-no-binding-button {
  padding: 0 8px !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:is([data-operator-count="7"], [data-operator-count="8"], [data-operator-count="9"], [data-operator-count="10"]) {
  gap: 3px !important;
  margin-top: 7px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .quiz-card-body--operator-active:is([data-operator-count="7"], [data-operator-count="8"], [data-operator-count="9"], [data-operator-count="10"]) .quiz-title {
  font-size: clamp(22px, 1.8vw, 29px) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .quiz-card-body--operator-active:is([data-operator-count="7"], [data-operator-count="8"], [data-operator-count="9"], [data-operator-count="10"]) > h3 {
  display: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:is([data-operator-count="7"], [data-operator-count="8"], [data-operator-count="9"], [data-operator-count="10"]) .operator-person-card {
  min-height: 36px !important;
  padding: 3px 7px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:is([data-operator-count="7"], [data-operator-count="8"], [data-operator-count="9"], [data-operator-count="10"]) .operator-choice-grid .quiz-option,
html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:is([data-operator-count="7"], [data-operator-count="8"], [data-operator-count="9"], [data-operator-count="10"]) .operator-date-field,
html body.quiz-overlay-open .quiz-modal-layer #step1 .operator-per-person:is([data-operator-count="7"], [data-operator-count="8"], [data-operator-count="9"], [data-operator-count="10"]) .operator-no-binding-button {
  min-height: 28px !important;
  height: 28px !important;
  max-height: 28px !important;
}

/* Compact remaining modal steps so later questions fit the popup cleanly. */
html body.quiz-overlay-open .quiz-modal-layer :is(#step2, #step4, #step5, #step6) .quiz-card-body {
  padding-top: 6px !important;
  justify-content: flex-start !important;
}

html body.quiz-overlay-open .quiz-modal-layer :is(#step2, #step4, #step5, #step6) .quiz-title {
  max-width: 860px !important;
  font-size: clamp(36px, 3.6vw, 56px) !important;
  line-height: .98 !important;
}

html body.quiz-overlay-open .quiz-modal-layer :is(#step2, #step4, #step5, #step6) .quiz-subtitle,
html body.quiz-overlay-open .quiz-modal-layer :is(#step2, #step4, #step5, #step6) .quiz-card-body > h3 {
  max-width: 720px !important;
  margin-top: 10px !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

html body.quiz-overlay-open .quiz-modal-layer :is(#step2, #step4, #step5, #step6) .quiz-option-list {
  display: grid !important;
  width: min(100%, 880px) !important;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr)) !important;
  gap: 14px !important;
  margin-top: 28px !important;
}

html body.quiz-overlay-open .quiz-modal-layer :is(#step2, #step4, #step5, #step6) .quiz-option {
  width: 100% !important;
  min-height: 138px !important;
  padding: 18px 14px !important;
  border-radius: 12px !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, .72) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step2 .quiz-option {
  min-height: 158px !important;
}

html body.quiz-overlay-open .quiz-modal-layer :is(#step2, #step4, #step5, #step6) .quiz-option span:first-child {
  max-width: 100% !important;
  font-size: clamp(18px, 1.7vw, 23px) !important;
  line-height: 1.06 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

html body.quiz-overlay-open .quiz-modal-layer :is(#step2, #step4, #step5, #step6) .quiz-option span + span {
  max-width: 100% !important;
  margin-top: 2px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

html body.quiz-overlay-open .quiz-modal-layer :is(#step2, #step4, #step5, #step6) .quiz-option::before {
  flex: 0 0 auto !important;
  width: 58px !important;
  height: 58px !important;
  margin-bottom: 2px !important;
  font-size: 26px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step5 .quiz-option-list {
  width: min(100%, 787px) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .quiz-card-body {
  padding-top: 4px !important;
  justify-content: flex-start !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .quiz-title {
  max-width: 840px !important;
  font-size: clamp(34px, 3.3vw, 52px) !important;
  line-height: .98 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .quiz-subtitle {
  max-width: 720px !important;
  margin-top: 10px !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .streaming-checkbox-grid {
  display: grid !important;
  width: min(100%, 960px) !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 24px auto 0 !important;
  justify-content: center !important;
  justify-items: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .streaming-checkbox {
  position: relative !important;
  display: grid !important;
  width: 100% !important;
  min-height: 96px !important;
  align-content: center !important;
  justify-items: center !important;
  gap: 8px !important;
  padding: 13px 12px !important;
  border: 1px solid rgba(15, 23, 42, .12) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, .72) !important;
  color: #111827 !important;
  text-align: center !important;
  cursor: pointer !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .streaming-checkbox input[type="checkbox"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  opacity: 0 !important;
  clip: rect(0 0 0 0) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .streaming-checkbox span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  line-height: 1.1 !important;
  text-align: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .streaming-checkbox span::before {
  display: none !important;
  content: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .streaming-checkbox:has(input[type="checkbox"]:checked) {
  border-color: #c8792b !important;
  background: rgba(255, 244, 228, .86) !important;
  box-shadow: inset 0 0 0 2px #c8792b !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .streaming-checkbox:has(input[type="checkbox"]:checked)::after {
  content: "✓" !important;
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  display: grid !important;
  width: 24px !important;
  height: 24px !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: #c8792b !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step3 .streaming-cost-input {
  width: min(100%, 108px) !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 8px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  text-align: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-card-body {
  padding-top: 0 !important;
  justify-content: flex-start !important;
  max-height: calc(100% - 86px) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .result-title {
  max-width: 820px !important;
  font-size: clamp(32px, 3.1vw, 48px) !important;
  line-height: .98 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .result-desc {
  max-width: 780px !important;
  margin-top: 8px !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offers-recommendation-grid {
  display: grid !important;
  width: min(100%, 1060px) !important;
  max-height: 500px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 18px !important;
  overflow: auto !important;
  padding: 2px 4px 8px !important;
  align-items: stretch !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offers-recommendation-grid > .quiz-refinement-panel--blind {
  grid-column: 1 / -1 !important;
  order: 0 !important;
  width: 100% !important;
  border-radius: 14px !important;
  background: rgba(255, 252, 246, .74) !important;
  box-shadow: 0 14px 34px rgba(13, 23, 38, .12) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-blind {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 14px !important;
  max-height: 118px !important;
  padding: 13px 16px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-tab {
  display: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind.is-collapsed .quiz-refinement-tab {
  display: inline-flex !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind.is-collapsed .quiz-refinement-blind {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-copy {
  gap: 4px !important;
  text-align: left !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-copy h4 {
  font-size: clamp(19px, 1.7vw, 24px) !important;
  line-height: 1.05 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-copy p:last-child {
  font-size: 13px !important;
  line-height: 1.22 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  margin: 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-next-button,
html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-link {
  width: auto !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  white-space: nowrap !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card,
html body.quiz-overlay-open .quiz-modal-layer #step7 .recommendation-card {
  min-width: 0 !important;
  order: 1 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .recommendation-results-toggle {
  grid-column: 1 / -1 !important;
  order: 2 !important;
  width: auto !important;
  min-height: 42px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card {
  min-height: 0 !important;
  max-height: 264px !important;
  overflow: hidden !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__inner {
  display: grid !important;
  gap: 8px !important;
  padding: 12px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__top {
  min-height: 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__label {
  min-height: 24px !important;
  padding: 0 10px !important;
  font-size: 10px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__head {
  min-height: 76px !important;
  padding: 10px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__logo {
  max-width: 150px !important;
  max-height: 50px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__gift-badge {
  width: 56px !important;
  height: 56px !important;
  font-size: 9px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__gift-badge strong {
  font-size: 13px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__stat {
  min-height: 52px !important;
  padding: 8px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__stat-label {
  font-size: 10px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__stat-value {
  font-size: 14px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__desc,
html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__reason,
html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__benefits,
html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__actions {
  display: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__cta {
  min-height: 38px !important;
  margin-top: 0 !important;
  border-radius: 999px !important;
  font-size: 13px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #quiz-steps-wrapper .quiz-option:is(.selected, .active, [aria-pressed="true"]),
html body.quiz-overlay-open .quiz-modal-layer #quiz-steps-wrapper .operator-no-binding-button:is(.selected, .active, [aria-pressed="true"]),
html body.quiz-overlay-open .quiz-modal-layer #quiz-steps-wrapper .quiz-refinement-option:is(.selected, .active, .is-selected, [aria-pressed="true"]) {
  background: #fff !important;
}

@media (max-width: 760px) {
  html body.quiz-overlay-open .quiz-modal-layer {
    padding: 82px 14px 18px !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer #quiz-steps-wrapper {
    width: min(350px, calc(100vw - 32px)) !important;
    max-width: min(350px, calc(100vw - 32px)) !important;
    max-height: calc(100svh - 104px) !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer .quiz-card {
    max-height: calc(100svh - 104px) !important;
    padding: 16px 14px 18px !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer .quiz-card-toolbar {
    gap: 10px !important;
    padding-top: 106px !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer .quiz-ai-actions {
    position: absolute !important;
    top: 70px !important;
    left: 14px !important;
    margin: 0 !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer .quiz-back-inline {
    top: 0 !important;
    right: 104px !important;
    left: auto !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer .quiz-popup-actions {
    top: 0 !important;
    right: 0 !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer .quiz-ai-button {
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 13px !important;
    font-size: 14px !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer .quiz-title,
  html body.quiz-overlay-open .quiz-modal-layer .result-title {
    font-size: clamp(28px, 9vw, 38px) !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer .quiz-person-grid,
  html body.quiz-overlay-open .quiz-modal-layer .quiz-option-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Inline hero analysis action: one sentence with a clear orange CTA. */
html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-lead {
  display: flex !important;
  width: min(700px, 100%) !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-inline-action {
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 34px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: #c8792b !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(13, 23, 38, .3) !important;
  font: inherit !important;
  font-size: .86em !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-shadow: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-inline-action span {
  display: inline !important;
  margin-left: 2px !important;
  color: inherit !important;
  font: inherit !important;
  line-height: inherit !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-inline-action:hover,
html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-inline-action:focus-visible {
  background: #d98935 !important;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-1px) !important;
}

/* Compact page introductions: keep route context without delaying primary content. */
html body.mobile-plans-page .shop-hero,
html body.family-page .shop-hero,
html body.business-page .business-hero,
html body.bredband-page .bredband-hero,
html body.about-page .about-hero,
html body.support-page .support-hero,
html body.jamfor-page .coverage-hero,
html body.package-page .package-hero {
  min-height: 0 !important;
  padding: 116px var(--dui-page-x) 44px !important;
  border-bottom: 1px solid var(--dui-line) !important;
  overflow: visible !important;
}

html body.mobile-plans-page .shop-hero-image,
html body.family-page .shop-hero-image,
html body.business-page .business-hero-image,
html body.bredband-page .bredband-hero-image,
html body.about-page .about-hero-image,
html body.support-page .support-hero-image,
html body.jamfor-page .coverage-hero__img,
html body.package-page .package-hero__art,
html body.business-page .business-hero-panel,
html body.about-page .about-hero-side,
html body.support-page .support-hero-panel,
html body.jamfor-page .coverage-hero__panel {
  display: none !important;
}

html body.mobile-plans-page .shop-hero-content,
html body.family-page .shop-hero-content,
html body.business-page .business-hero-inner,
html body.about-page .about-hero-inner,
html body.support-page .support-hero-inner,
html body.jamfor-page .coverage-hero__inner {
  display: block !important;
  width: var(--dui-shell) !important;
  min-height: 0 !important;
  max-width: none !important;
  margin: 0 auto !important;
  background: transparent !important;
}

html body.business-page .business-hero-copy,
html body.about-page .about-hero-copy,
html body.support-page .support-hero-copy,
html body.jamfor-page .coverage-hero__copy {
  max-width: 800px !important;
}

html body.bredband-page .bredband-hero-inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr) !important;
  min-height: 0 !important;
  gap: clamp(32px, 5vw, 72px) !important;
}

html body.package-page .package-hero {
  display: block !important;
}

html body.package-page .package-hero__copy {
  max-width: 820px !important;
  margin: 0 !important;
}

html body.mobile-plans-page .shop-hero h1,
html body.family-page .shop-hero h1,
html body.business-page .business-hero h1,
html body.bredband-page .bredband-hero h1,
html body.about-page .about-hero h1,
html body.support-page .support-hero h1,
html body.jamfor-page .coverage-hero h1,
html body.package-page .package-hero h1 {
  max-width: 820px !important;
  margin: 10px 0 14px !important;
  font-size: clamp(38px, 4.5vw, 62px) !important;
  line-height: 1 !important;
}

html body.mobile-plans-page .shop-hero-lead,
html body.family-page .shop-hero-lead,
html body.business-page .business-hero-copy > p,
html body.bredband-page .bredband-hero-copy > p,
html body.about-page .about-hero-copy > p,
html body.support-page .support-hero-copy > p,
html body.jamfor-page .coverage-hero__copy > p,
html body.package-page .package-hero__copy > p {
  max-width: 720px !important;
  margin-bottom: 0 !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
}

html body .business-hero-points,
html body .bredband-trust-row,
html body .about-hero-points,
html body .support-hero-tags {
  display: none !important;
}

html body.business-page .business-hero-actions,
html body.bredband-page .bredband-hero-actions,
html body.jamfor-page .coverage-hero__actions,
html body.package-page .package-hero__copy .primary-btn {
  margin-top: 24px !important;
}

@media (max-width: 760px) {
  html body.mobile-plans-page .shop-hero,
  html body.family-page .shop-hero,
  html body.business-page .business-hero,
  html body.bredband-page .bredband-hero,
  html body.about-page .about-hero,
  html body.support-page .support-hero,
  html body.jamfor-page .coverage-hero,
  html body.package-page .package-hero {
    padding: 92px 18px 30px !important;
  }

  html body.mobile-plans-page .shop-hero h1,
  html body.family-page .shop-hero h1,
  html body.business-page .business-hero h1,
  html body.bredband-page .bredband-hero h1,
  html body.about-page .about-hero h1,
  html body.support-page .support-hero h1,
  html body.jamfor-page .coverage-hero h1,
  html body.package-page .package-hero h1 {
    font-size: clamp(34px, 9vw, 42px) !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  html body.bredband-page .bredband-hero-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  html body.mobile-plans-page .shop-hero-content,
  html body.family-page .shop-hero-content {
    width: 100% !important;
    margin: 0 !important;
  }

  html body.bredband-page .bredband-search-panel {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

/* Codex-inspired interactive WebGL background for the newsletter panel only. */
html body:has(.home-intro) .newsletter-panel {
  isolation: isolate !important;
  background:
    radial-gradient(circle at 16% 20%, rgba(69, 112, 201, .56), transparent 38%),
    radial-gradient(circle at 86% 72%, rgba(116, 80, 190, .38), transparent 36%),
    #071027 !important;
}

html body:has(.home-intro) .newsletter-panel::before {
  display: none !important;
  content: none !important;
}

html body:has(.home-intro) .newsletter-panel .codex-bg-canvas {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  opacity: .98 !important;
}

html body:has(.home-intro) .newsletter-panel::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  background:
    linear-gradient(90deg, rgba(4, 10, 28, .5) 0%, rgba(4, 10, 28, .08) 48%, rgba(4, 10, 28, .44) 100%),
    linear-gradient(180deg, rgba(4, 10, 28, .04), rgba(4, 10, 28, .32)) !important;
  pointer-events: none !important;
}

html body:has(.home-intro) .newsletter-panel.codex-bg-fallback::after {
  background:
    radial-gradient(circle at 28% 38%, rgba(80, 175, 213, .26), transparent 20%),
    radial-gradient(circle at 70% 58%, rgba(139, 104, 220, .3), transparent 24%),
    radial-gradient(circle, rgba(191, 226, 255, .24) 0 1px, transparent 1.5px) 0 0 / 12px 12px,
    linear-gradient(90deg, rgba(4, 10, 28, .7) 0%, rgba(4, 10, 28, .28) 48%, rgba(4, 10, 28, .7) 100%),
    #071027 !important;
}

html body:has(.home-intro) .newsletter-panel > :not(.codex-bg-canvas) {
  position: relative !important;
  z-index: 1 !important;
}

html body:has(.home-intro) .newsletter-panel .newsletter-copy h2,
html body:has(.home-intro) .newsletter-panel .newsletter-form label > span {
  color: #fff !important;
}

html body:has(.home-intro) .newsletter-panel .newsletter-copy p:last-child,
html body:has(.home-intro) .newsletter-panel .newsletter-status {
  color: rgba(255, 255, 255, .72) !important;
}

@media (prefers-reduced-motion: reduce) {
  html body:has(.home-intro) .newsletter-panel .codex-bg-canvas {
    opacity: .72 !important;
  }
}

/* Results refinement slider: a persistent top handle with a warm drop-down message. */
html body.quiz-overlay-open .quiz-modal-layer #step7 .offers-recommendation-grid > .quiz-refinement-panel--blind {
  position: relative !important;
  grid-column: 1 / -1 !important;
  order: -1 !important;
  width: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(200, 121, 43, .58) !important;
  border-radius: 14px !important;
  background: #fffdf9 !important;
  box-shadow: 0 14px 34px rgba(72, 43, 18, .12) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-tab {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  width: 100% !important;
  min-height: 48px !important;
  grid-template-columns: 30px minmax(0, 1fr) 28px !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(200, 121, 43, .2) !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, #fff9ef 0%, #fffdf9 60%, #fff7e8 100%) !important;
  color: #1b2230 !important;
  text-align: left !important;
  cursor: pointer !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-tab-icon,
html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-target {
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(200, 121, 43, .34) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #c8792b !important;
  box-shadow: 0 6px 16px rgba(200, 121, 43, .14) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-tab-icon {
  width: 28px !important;
  height: 28px !important;
  font-size: 19px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-tab-label {
  color: #b76c26 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .09em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-tab-chevron {
  display: grid !important;
  width: 28px !important;
  height: 28px !important;
  place-items: center !important;
  color: #8b551f !important;
  font-size: 20px !important;
  line-height: 1 !important;
  transition: transform .36s ease !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind.is-collapsed .quiz-refinement-tab {
  display: grid !important;
  border-bottom-color: transparent !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind.is-collapsed .quiz-refinement-tab-chevron {
  transform: rotate(180deg) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-blind {
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 16px !important;
  max-height: 190px !important;
  padding: 16px 18px !important;
  overflow: hidden !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transform-origin: top center !important;
  transition:
    max-height .42s cubic-bezier(.22, 1, .36, 1),
    padding .42s cubic-bezier(.22, 1, .36, 1),
    opacity .24s ease,
    transform .42s cubic-bezier(.22, 1, .36, 1) !important;
  animation: dealettRefinementDrop .5s cubic-bezier(.22, 1, .36, 1) both !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind.is-collapsed .quiz-refinement-blind {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0 !important;
  transform: translateY(-18px) !important;
  pointer-events: none !important;
  animation: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-target {
  width: 54px !important;
  height: 54px !important;
  font-size: 34px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-copy {
  display: grid !important;
  gap: 4px !important;
  text-align: left !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-kicker {
  display: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-copy h4 {
  margin: 0 !important;
  color: #171d29 !important;
  font-size: clamp(18px, 1.55vw, 23px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-copy p:last-child {
  margin: 0 !important;
  max-width: 650px !important;
  color: #5d6471 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-actions {
  display: block !important;
  margin: 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-next-button {
  width: auto !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #d99a3d 0%, #c8792b 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(200, 121, 43, .24) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

@keyframes dealettRefinementDrop {
  from {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-22px);
  }
}

@media (max-width: 760px) {
  html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-blind {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 10px !important;
    max-height: 280px !important;
    padding: 14px !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-target {
    width: 42px !important;
    height: 42px !important;
    font-size: 27px !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-actions {
    grid-column: 1 / -1 !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-next-button {
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body.quiz-overlay-open .quiz-modal-layer #step7 .quiz-refinement-panel--blind .quiz-refinement-blind {
    animation: none !important;
    transition: none !important;
  }
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offers-recommendation-grid.offers-recommendation-grid--featured {
  width: min(100%, 620px) !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 14px 16px 10px 4px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offers-recommendation-grid.offers-recommendation-grid--expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card {
  --offer-theme: #0b1931;
  --offer-theme-soft: #f1f4f8;
  --offer-gift: #be7624;
  position: relative !important;
  width: 100% !important;
  min-height: 228px !important;
  max-width: none !important;
  max-height: none !important;
  overflow: visible !important;
  border: 1px solid rgba(19, 27, 43, .12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 5px 14px rgba(24, 30, 42, .08) !important;
  transform: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card--top {
  --offer-theme: #07152d;
  --offer-theme-soft: #fff4e4;
  --offer-gift: #b97522;
  border-color: rgba(203, 130, 47, .72) !important;
  box-shadow: 0 5px 14px rgba(187, 114, 31, .09) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card.provider-card--telia {
  --offer-theme: #6917b7;
  --offer-theme-soft: #f1e7f8;
  --offer-gift: #5e16a7;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card.provider-card--telenor {
  --offer-theme: #07152d;
  --offer-theme-soft: #f5ecdc;
  --offer-gift: #bd7625;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card.provider-card--tre {
  --offer-theme: #e64e81;
  --offer-theme-soft: #fdeaf1;
  --offer-gift: #d83c70;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card.provider-card--tele2 {
  --offer-theme: #101727;
  --offer-theme-soft: #edf0f4;
  --offer-gift: #bd7625;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card--top .offer-card__label {
  background: #fff4e4 !important;
  color: #b77420 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card--top .offer-card__gift-badge {
  background: #b97522 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__accent {
  display: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card::before {
  display: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__inner {
  display: flex !important;
  min-height: 0 !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 9px 14px 6px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__top {
  display: flex !important;
  min-height: 18px !important;
  align-items: center !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__label {
  display: inline-flex !important;
  min-height: 18px !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 0 8px !important;
  border-radius: 6px !important;
  background: var(--offer-theme-soft) !important;
  color: var(--offer-theme) !important;
  font-size: 8px !important;
  font-weight: 900 !important;
  letter-spacing: .035em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__head {
  position: static !important;
  display: flex !important;
  min-height: 56px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 !important;
  padding: 2px 72px 2px 8px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__head::before,
html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__head::after {
  display: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__logo,
html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__logo--telenor,
html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__logo--tre {
  position: static !important;
  width: auto !important;
  max-width: 122px !important;
  height: 50px !important;
  max-height: 50px !important;
  object-fit: contain !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__gift-badge {
  position: absolute !important;
  top: -9px !important;
  right: -12px !important;
  z-index: 5 !important;
  display: flex !important;
  width: 68px !important;
  height: 68px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--offer-gift) !important;
  color: #fff !important;
  box-shadow: 0 6px 13px rgba(30, 23, 16, .17) !important;
  text-align: center !important;
  transform: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__gift-badge span {
  order: 0 !important;
  margin: 0 0 4px !important;
  font-size: 6px !important;
  font-weight: 800 !important;
  letter-spacing: .03em !important;
  text-transform: uppercase !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__gift-badge strong {
  order: 1 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__offer-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 14px !important;
  min-height: 55px !important;
  border-bottom: 1px solid rgba(20, 27, 40, .14) !important;
  padding: 3px 8px 8px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__data,
html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__price {
  display: flex !important;
  flex-direction: column !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__data {
  align-items: flex-start !important;
  text-align: left !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__data strong,
html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__price strong {
  color: #101827 !important;
  font-family: var(--dui-font-heading) !important;
  font-size: 23px !important;
  font-weight: 900 !important;
  letter-spacing: -.04em !important;
  line-height: 1 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__price {
  align-items: flex-end !important;
  text-align: right !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__price strong {
  color: var(--offer-theme) !important;
  font-size: 27px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__price small {
  font-size: 15px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__data span,
html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__price span {
  margin-top: 2px !important;
  color: #4f5662 !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__highlights {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 4px 10px !important;
  margin: 0 !important;
  min-height: 31px !important;
  align-items: center !important;
  padding: 6px 2px 5px !important;
  list-style: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__highlights li {
  display: flex !important;
  min-width: 0 !important;
  align-items: center !important;
  gap: 5px !important;
  color: #3e4653 !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__highlights i {
  flex: 0 0 auto !important;
  color: var(--offer-theme) !important;
  font-size: 10px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__cta {
  display: inline-flex !important;
  min-height: 28px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin: auto 8px 0 !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: var(--offer-theme) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 10px !important;
  font-weight: 700 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__details {
  display: inline-flex !important;
  min-height: 19px !important;
  align-items: center !important;
  align-self: center !important;
  gap: 6px !important;
  margin: 2px 0 0 !important;
  padding: 0 4px !important;
  border: 0 !important;
  border-bottom: 1px solid currentColor !important;
  background: transparent !important;
  color: #59606c !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__details span {
  font-size: 12px !important;
  line-height: 1 !important;
  transition: transform .2s ease !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__details[aria-expanded="true"] span {
  transform: rotate(90deg) !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__details-panel {
  margin-top: 8px !important;
  border-top: 1px solid rgba(20, 27, 40, .12) !important;
  padding: 10px 8px 4px !important;
  color: #4f5662 !important;
  font-size: 11px !important;
  line-height: 1.4 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__details-panel[hidden] {
  display: none !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__details-panel p,
html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__details-panel ul {
  margin: 0 0 7px !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__details-panel .offer-card__actions {
  display: grid !important;
  margin: 8px 0 0 !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__details-panel .offer-compare-button {
  min-height: 36px !important;
  margin: 0 !important;
  border-radius: 6px !important;
  font-size: 12px !important;
}

@media (max-width: 760px) {
  html body.quiz-overlay-open .quiz-modal-layer #step7 .offers-recommendation-grid.offers-recommendation-grid--featured,
  html body.quiz-overlay-open .quiz-modal-layer #step7 .offers-recommendation-grid.offers-recommendation-grid--expanded {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-right: 18px !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__gift-badge {
    top: -9px !important;
    right: -12px !important;
    width: 68px !important;
    height: 68px !important;
  }

  html body.quiz-overlay-open .quiz-modal-layer #step7 .offer-card__head {
    padding-right: 68px !important;
  }
}

/* Header utility corners: customer type on the left; language, cart and account on the right. */
html body .site-header .header-account-link::before {
  display: none !important;
  content: none !important;
}

html body .site-header .header-account-link,
html body .site-header .header-cart-link,
html body:has(.home-intro) .site-header .header-account-link,
html body:has(.home-intro) .site-header .header-cart-link {
  position: relative !important;
  display: inline-flex !important;
  width: 30px !important;
  min-width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 1px solid currentColor !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

html body .site-header .header-account-link i,
html body .site-header .header-cart-link i {
  pointer-events: none;
}

@media (min-width: 901px) {
  html body .site-header .site-nav,
  html body:has(.home-intro) .site-header .site-nav {
    margin-right: 190px !important;
  }

  html body .site-header .header-topbar-group--right,
  html body:has(.home-intro) .site-header .header-topbar-group--right {
    position: absolute !important;
    top: 6px !important;
    right: 18px !important;
    z-index: 4 !important;
    display: inline-flex !important;
    width: auto !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 !important;
    pointer-events: auto !important;
  }

  html body .site-header .language-switcher,
  html body:has(.home-intro) .site-header .language-switcher {
    display: inline-flex !important;
    margin: 0 !important;
  }

  html body .site-header .language-switcher select,
  html body:has(.home-intro) .site-header .language-switcher select {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    padding: 0 !important;
    border: 1px solid currentColor !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
    text-align: left !important;
    text-align-last: left !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-size: 11px !important;
    font-weight: 800 !important;
  }

  html body:has(.home-intro) .site-header .header-topbar-group--right,
  html body:has(.home-intro) .site-header .language-switcher select,
  html body:has(.home-intro) .site-header .header-account-link,
  html body:has(.home-intro) .site-header .header-cart-link {
    color: #fff !important;
  }

  html body:has(.home-intro) .site-header .header-account-link,
  html body:has(.home-intro) .site-header .header-cart-link {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 10px 0 4px !important;
    background: rgba(13, 23, 38, .10) !important;
    box-shadow: none !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }
}

@media (max-width: 900px) {
  html body .site-header .header-topbar-group--right,
  html body:has(.home-intro) .site-header .header-topbar-group--right {
    display: inline-flex !important;
    width: auto !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 48px 0 auto !important;
    overflow: visible !important;
  }

  html body .site-header .language-switcher,
  html body:has(.home-intro) .site-header .language-switcher,
  html body .site-header .header-account-link,
  html body:has(.home-intro) .site-header .header-account-link {
    display: inline-flex !important;
  }

  html body .site-header .language-switcher select,
  html body:has(.home-intro) .site-header .language-switcher select {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    text-align: left !important;
    text-align-last: left !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-size: 10px !important;
    font-weight: 800 !important;
  }

  html body .site-header .header-account-link,
  html body .site-header .header-cart-link,
  html body:has(.home-intro) .site-header .header-account-link,
  html body:has(.home-intro) .site-header .header-cart-link {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    padding: 0 12px 0 7px !important;
    color: #0D1726 !important;
  }
}

/* Window-control geometry for the two top-corner utility groups. */
html body .site-header .audience-switch,
html body:has(.home-intro) .site-header .audience-switch,
html body .site-header .header-topbar-group--right,
html body:has(.home-intro) .site-header .header-topbar-group--right {
  gap: 0 !important;
}

/* Native language menus use a light popup even when the landing header is dark. */
html body .site-header .language-switcher select option,
html body .site-header .language-switcher select optgroup {
  background: #fff !important;
  color: #0D1726 !important;
}

html body .site-header .language-switcher select option:checked {
  background: #1769d2 !important;
  color: #fff !important;
}

/* One shared header treatment for the landing page and all inner pages. */
html body .site-header,
html body:has(.home-intro) .site-header {
  position: absolute !important;
  inset: 0 0 auto !important;
  z-index: 120 !important;
  padding: 0 !important;
  background: rgba(248, 245, 240, .97) !important;
  color: #0D1726 !important;
  border-bottom: 1px solid rgba(13, 23, 38, .12) !important;
  pointer-events: none !important;
}

html body .site-header .header-inner,
html body:has(.home-intro) .site-header .header-inner {
  display: flex !important;
  width: 100% !important;
  height: 43px !important;
  min-height: 43px !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 clamp(18px, 3.2vw, 58px) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: #0D1726 !important;
  pointer-events: auto !important;
}

html body .site-header .brand--logo,
html body:has(.home-intro) .site-header .brand--logo {
  position: relative !important;
  display: inline-flex !important;
  width: clamp(150px, 11vw, 180px) !important;
  height: auto !important;
  aspect-ratio: auto !important;
  min-height: 0 !important;
  align-items: center !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

html body .site-header .brand-logo,
html body:has(.home-intro) .site-header .brand-logo {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
}

html body .site-header .brand-logo-crop,
html body:has(.home-intro) .site-header .brand-logo-crop {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 5 / 1 !important;
  overflow: hidden !important;
}

html body .site-header .brand-logo-crop img,
html body:has(.home-intro) .site-header .brand-logo-crop img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  filter: none !important;
}

html body .site-header .nav-menu,
html body:has(.home-intro) .site-header .nav-menu {
  display: flex !important;
  min-width: 0 !important;
  align-items: center !important;
  gap: clamp(18px, 2.25vw, 34px) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body .site-header .nav-link,
html body .site-header .nav-item a,
html body:has(.home-intro) .site-header .nav-link,
html body:has(.home-intro) .site-header .nav-item a {
  min-height: 0 !important;
  padding: 7px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0D1726 !important;
  font: 500 clamp(14px, 1vw, 16px)/1 Arial, Helvetica, sans-serif !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

html body .site-header .language-switcher select,
html body:has(.home-intro) .site-header .language-switcher select,
html body .site-header .header-account-link,
html body .site-header .header-cart-link,
html body:has(.home-intro) .site-header .header-account-link,
html body:has(.home-intro) .site-header .header-cart-link {
  border-color: rgba(13, 23, 38, .32) !important;
  background: transparent !important;
  color: #0D1726 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (min-width: 901px) {
  html body .site-header .audience-switch,
  html body:has(.home-intro) .site-header .audience-switch {
    top: 0 !important;
    left: 0 !important;
    z-index: 1002 !important;
  }

  html body .site-header .header-topbar-group--right,
  html body:has(.home-intro) .site-header .header-topbar-group--right {
    top: 0 !important;
    right: 0 !important;
    z-index: 1002 !important;
  }

  html body .site-header .brand--logo,
  html body:has(.home-intro) .site-header .brand--logo {
    margin-left: 102px !important;
  }

  html body .site-header .header-account-link,
  html body .site-header .header-cart-link,
  html body:has(.home-intro) .site-header .header-account-link,
  html body:has(.home-intro) .site-header .header-cart-link {
    width: 42px !important;
    min-width: 42px !important;
    height: 43px !important;
    min-height: 43px !important;
    box-sizing: border-box !important;
  }

  html body .site-header .language-switcher select,
  html body:has(.home-intro) .site-header .language-switcher select {
    width: 42px !important;
    min-width: 42px !important;
    height: 43px !important;
    min-height: 43px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    text-align: left !important;
    text-align-last: left !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }

  html body .site-header .audience-switch__link,
  html body:has(.home-intro) .site-header .audience-switch__link {
    height: 43px !important;
    min-height: 43px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 900px) {
  html body .site-header,
  html body:has(.home-intro) .site-header {
    position: fixed !important;
  }

  html body .site-header::after,
  html body:has(.home-intro) .site-header::after {
    display: none !important;
    content: none !important;
  }

  html body .site-header .header-inner,
  html body:has(.home-intro) .site-header .header-inner {
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 16px !important;
    background: rgba(248, 245, 240, .97) !important;
  }

  html body .site-header .brand--logo,
  html body:has(.home-intro) .site-header .brand--logo {
    width: 140px !important;
    margin-top: 8px !important;
    margin-left: 8px !important;
  }

  html body .site-header .mobile-nav-toggle span,
  html body:has(.home-intro) .site-header .mobile-nav-toggle span {
    background: #0D1726 !important;
  }
}

/* Borderless corner controls. */
html body .site-header,
html body:has(.home-intro) .site-header {
  border-bottom: 0 !important;
}

html body .site-header .audience-switch__link,
html body:has(.home-intro) .site-header .audience-switch__link,
html body .site-header .language-switcher select,
html body:has(.home-intro) .site-header .language-switcher select,
html body .site-header .header-cart-link,
html body .site-header .header-account-link,
html body:has(.home-intro) .site-header .header-cart-link,
html body:has(.home-intro) .site-header .header-account-link {
  border: 0 !important;
  box-shadow: none !important;
}

@media (min-width: 901px) {
  html body .site-header .nav-link,
  html body .site-header .nav-item a,
  html body:has(.home-intro) .site-header .nav-link,
  html body:has(.home-intro) .site-header .nav-item a {
    display: inline-flex !important;
    height: 43px !important;
    align-items: center !important;
    padding: 0 8px !important;
    box-sizing: border-box !important;
  }

}

/* Header interaction: copper line draws left-to-right; current choices keep it. */
html body .site-header .audience-switch__link,
html body:has(.home-intro) .site-header .audience-switch__link,
html body .site-header .audience-switch__link--active,
html body:has(.home-intro) .site-header .audience-switch__link--active,
html body .site-header .language-switcher select,
html body:has(.home-intro) .site-header .language-switcher select,
html body .site-header .header-cart-link,
html body .site-header .header-account-link,
html body:has(.home-intro) .site-header .header-cart-link,
html body:has(.home-intro) .site-header .header-account-link,
html body .site-header .nav-link,
html body .site-header .nav-item a,
html body:has(.home-intro) .site-header .nav-link,
html body:has(.home-intro) .site-header .nav-item a,
html body .site-header .nav-item--active > .nav-link,
html body:has(.home-intro) .site-header .nav-item--active > .nav-link {
  background: transparent !important;
  color: #0D1726 !important;
}

html body .site-header .audience-switch__link,
html body .site-header .nav-link,
html body .site-header .nav-item a,
html body .site-header .header-cart-link,
html body .site-header .header-account-link,
html body:has(.home-intro) .site-header .audience-switch__link,
html body:has(.home-intro) .site-header .nav-link,
html body:has(.home-intro) .site-header .nav-item a,
html body:has(.home-intro) .site-header .header-cart-link,
html body:has(.home-intro) .site-header .header-account-link {
  position: relative !important;
}

html body .site-header .audience-switch__link:hover,
html body .site-header .audience-switch__link:focus-visible,
html body:has(.home-intro) .site-header .audience-switch__link:hover,
html body:has(.home-intro) .site-header .audience-switch__link:focus-visible,
html body .site-header .language-switcher select:hover,
html body .site-header .language-switcher select:focus-visible,
html body:has(.home-intro) .site-header .language-switcher select:hover,
html body:has(.home-intro) .site-header .language-switcher select:focus-visible,
html body .site-header .header-cart-link:hover,
html body .site-header .header-cart-link:focus-visible,
html body .site-header .header-account-link:hover,
html body .site-header .header-account-link:focus-visible,
html body:has(.home-intro) .site-header .header-cart-link:hover,
html body:has(.home-intro) .site-header .header-cart-link:focus-visible,
html body:has(.home-intro) .site-header .header-account-link:hover,
html body:has(.home-intro) .site-header .header-account-link:focus-visible,
html body .site-header .nav-link:hover,
html body .site-header .nav-link:focus-visible,
html body .site-header .nav-item a:hover,
html body .site-header .nav-item a:focus-visible,
html body:has(.home-intro) .site-header .nav-link:hover,
html body:has(.home-intro) .site-header .nav-link:focus-visible,
html body:has(.home-intro) .site-header .nav-item a:hover,
html body:has(.home-intro) .site-header .nav-item a:focus-visible {
  background: transparent !important;
  color: #0D1726 !important;
}

  html body .site-header .language-switcher,
  html body:has(.home-intro) .site-header .language-switcher {
    position: relative !important;
    display: inline-flex !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 43px !important;
    min-height: 43px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body .site-header .language-switcher::before,
  html body:has(.home-intro) .site-header .language-switcher::before {
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
    z-index: 2 !important;
    display: block !important;
    width: 4px !important;
    height: 4px !important;
    border-right: 1.25px solid currentColor !important;
    border-bottom: 1.25px solid currentColor !important;
    color: currentColor !important;
    content: "" !important;
    opacity: .58 !important;
    transform: translateY(-65%) rotate(45deg) !important;
    pointer-events: none !important;
  }

  html body .site-header .language-switcher select,
  html body:has(.home-intro) .site-header .language-switcher select {
    overflow: hidden !important;
    line-height: 1 !important;
    cursor: pointer !important;
  }

@media (max-width: 900px) {
  html body .site-header .language-switcher,
  html body:has(.home-intro) .site-header .language-switcher,
  html body .site-header .language-switcher select,
  html body:has(.home-intro) .site-header .language-switcher select {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
  }

  html body .site-header .language-switcher::before,
  html body:has(.home-intro) .site-header .language-switcher::before {
    right: 4px !important;
    width: 3.5px !important;
    height: 3.5px !important;
    border-width: 1px !important;
  }

  html body .site-header .language-switcher select,
  html body:has(.home-intro) .site-header .language-switcher select {
    padding: 0 9px 0 3px !important;
    font-size: 9px !important;
  }
}

html body .site-header .audience-switch__link::after,
html body:has(.home-intro) .site-header .audience-switch__link::after,
html body .site-header .nav-link::after,
html body .site-header .nav-item a::after,
html body:has(.home-intro) .site-header .nav-link::after,
html body:has(.home-intro) .site-header .nav-item a::after,
html body .site-header .header-cart-link::after,
html body .site-header .header-account-link::after,
html body:has(.home-intro) .site-header .header-cart-link::after,
html body:has(.home-intro) .site-header .header-account-link::after,
html body .site-header .language-switcher::after,
html body:has(.home-intro) .site-header .language-switcher::after {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  display: block !important;
  height: 2px !important;
  content: "" !important;
  background: #C96F24 !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  transition: transform .24s ease !important;
  pointer-events: none !important;
}

html body .site-header .audience-switch__link:hover::after,
html body .site-header .audience-switch__link:focus-visible::after,
html body:has(.home-intro) .site-header .audience-switch__link:hover::after,
html body:has(.home-intro) .site-header .audience-switch__link:focus-visible::after,
html body .site-header .nav-link:hover::after,
html body .site-header .nav-link:focus-visible::after,
html body .site-header .nav-item a:hover::after,
html body .site-header .nav-item a:focus-visible::after,
html body:has(.home-intro) .site-header .nav-link:hover::after,
html body:has(.home-intro) .site-header .nav-link:focus-visible::after,
html body:has(.home-intro) .site-header .nav-item a:hover::after,
html body:has(.home-intro) .site-header .nav-item a:focus-visible::after,
html body .site-header .header-cart-link:hover::after,
html body .site-header .header-cart-link:focus-visible::after,
html body .site-header .header-account-link:hover::after,
html body .site-header .header-account-link:focus-visible::after,
html body:has(.home-intro) .site-header .header-cart-link:hover::after,
html body:has(.home-intro) .site-header .header-cart-link:focus-visible::after,
html body:has(.home-intro) .site-header .header-account-link:hover::after,
html body:has(.home-intro) .site-header .header-account-link:focus-visible::after,
html body .site-header .language-switcher:hover::after,
html body .site-header .language-switcher:focus-within::after,
html body:has(.home-intro) .site-header .language-switcher:hover::after,
html body:has(.home-intro) .site-header .language-switcher:focus-within::after,
html body .site-header .audience-switch__link--active::after,
html body:has(.home-intro) .site-header .audience-switch__link--active::after,
html body .site-header .nav-item--active > .nav-link::after,
html body:has(.home-intro) .site-header .nav-item--active > .nav-link::after,
html body .site-header .header-cart-link[aria-current="page"]::after,
html body .site-header .header-account-link[aria-current="page"]::after,
html body:has(.home-intro) .site-header .header-cart-link[aria-current="page"]::after,
html body:has(.home-intro) .site-header .header-account-link[aria-current="page"]::after {
  transform: scaleX(1) !important;
}

/* Inactive first map-control draft retained to preserve the surrounding dirty worktree.
.coverage-main.coverage-maplibre-section {
  --map-ink: #0d1726;
  --map-copper: #c96f24;
  --map-paper: #f8f5f0;
  padding: clamp(48px, 6vw, 88px) clamp(18px, 4vw, 72px) clamp(72px, 8vw, 112px) !important;
  background: var(--map-paper) !important;
}

.coverage-maplibre-heading {
  width: min(100%, 1480px);
  margin: 0 auto 30px !important;
  padding: 0 !important;
}

.coverage-maplibre-heading__eyebrow {
  margin: 0 0 12px;
  color: var(--map-copper);
  font: 700 12px/1.2 var(--dui-font-body, Arial, sans-serif);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.coverage-maplibre-heading h2 {
  max-width: 760px !important;
  margin: 0 !important;
  color: var(--map-ink) !important;
  font: 600 clamp(38px, 4.2vw, 66px)/.98 var(--dui-font-heading, Arial, sans-serif) !important;
  letter-spacing: -.045em !important;
}

.coverage-maplibre-heading__intro {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(13, 23, 38, .66);
  font: 400 17px/1.55 var(--dui-font-body, Arial, sans-serif);
}

.coverage-maplibre-section .coverage-maplibre-shell {
  position: relative;
  width: min(100%, 1480px) !important;
  height: clamp(620px, 72vh, 760px) !important;
  min-height: 620px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border: 1px solid rgba(13, 23, 38, .22) !important;
  border-radius: 28px !important;
  background: #10202a !important;
  box-shadow: 0 28px 70px rgba(13, 23, 38, .16) !important;
  isolation: isolate;
}

.coverage-maplibre-section .coverage-maplibre-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 320px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(10, 21, 31, .86);
  box-shadow: 0 18px 52px rgba(13, 23, 38, .26);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  pointer-events: none;
}

.coverage-maplibre-section .coverage-maplibre-scrim {
  background:
    linear-gradient(90deg, rgba(5, 12, 19, .28), transparent 46%),
    linear-gradient(180deg, rgba(5, 12, 19, .08), transparent 60%, rgba(5, 12, 19, .12)) !important;
}

.coverage-maplibre-section .coverage-maplibre-copy,
.coverage-maplibre-section .coverage-maplibre-search,
.coverage-maplibre-section .coverage-maplibre-actions,
.coverage-maplibre-section .coverage-maplibre-themes,
.coverage-maplibre-section .coverage-maplibre-operators,
.coverage-maplibre-section .coverage-maplibre-networks,
.coverage-maplibre-section .coverage-maplibre-zoom,
.coverage-maplibre-section .coverage-maplibre-note {
  z-index: 10 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.coverage-maplibre-section .coverage-maplibre-copy {
  top: 54px !important;
  left: 54px !important;
  width: 260px !important;
  max-width: 260px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
}

.coverage-maplibre-section .coverage-maplibre-kicker {
  margin: 0 0 10px !important;
  color: #efad73 !important;
  font: 700 11px/1.2 var(--dui-font-body, Arial, sans-serif) !important;
  letter-spacing: .13em !important;
}

.coverage-maplibre-section .coverage-maplibre-copy h2 {
  color: #fff !important;
  font: 600 clamp(28px, 2.2vw, 36px)/1.02 var(--dui-font-heading, Arial, sans-serif) !important;
  letter-spacing: -.035em !important;
  text-shadow: none !important;
}

.coverage-maplibre-section .coverage-maplibre-copy p:last-child {
  margin-top: 12px !important;
  color: rgba(255, 255, 255, .66) !important;
  font: 400 13px/1.5 var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-search {
  --coverage-search-transform: translateX(-50%);
  top: 24px !important;
  left: 56% !important;
  z-index: 12 !important;
  width: min(440px, 38vw) !important;
  min-height: 52px !important;
  transform: translateX(-50%) !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  border-radius: 16px !important;
  background: rgba(10, 21, 31, .9) !important;
  box-shadow: 0 14px 36px rgba(13, 23, 38, .24) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.coverage-maplibre-section .coverage-maplibre-search:focus-within {
  border-color: #efad73 !important;
  box-shadow: 0 0 0 4px rgba(201, 111, 36, .22), 0 18px 42px rgba(13, 23, 38, .28) !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder {
  min-height: 50px !important;
  border-radius: 16px !important;
  background: transparent !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder input {
  height: 50px !important;
  padding: 0 44px 0 52px !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font: 600 14px/50px var(--dui-font-body, Arial, sans-serif) !important;
  box-shadow: none !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder input::placeholder {
  color: rgba(255, 255, 255, .62) !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder--icon-search,
.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder--icon-close {
  color: #fff !important;
  fill: currentColor !important;
}

.coverage-maplibre-section .coverage-maplibre-actions {
  top: 24px !important;
  left: calc(56% + min(220px, 19vw) + 10px) !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
}

.coverage-maplibre-section .coverage-maplibre-action {
  min-height: 52px !important;
  padding: 0 18px 0 42px !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  border-radius: 16px !important;
  background: rgba(10, 21, 31, .9) !important;
  color: #fff !important;
  font: 700 12px/1 var(--dui-font-body, Arial, sans-serif) !important;
  box-shadow: 0 14px 36px rgba(13, 23, 38, .24) !important;
}

.coverage-maplibre-section .coverage-maplibre-action::before {
  content: "⌖";
  position: absolute;
  margin-left: -24px;
  color: #efad73;
  font-size: 20px;
}

.coverage-maplibre-section .coverage-maplibre-action:hover,
.coverage-maplibre-section .coverage-maplibre-action.is-busy {
  border-color: #efad73 !important;
  background: #c96f24 !important;
  transform: translateY(-1px) !important;
}

.coverage-maplibre-section .coverage-maplibre-operators {
  top: 250px !important;
  left: 54px !important;
  width: 260px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  padding: 24px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
}

.coverage-maplibre-section .coverage-maplibre-operators::before,
.coverage-maplibre-section .coverage-maplibre-networks::before {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255, 255, 255, .48);
  font: 700 10px/1 var(--dui-font-body, Arial, sans-serif);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.coverage-maplibre-section .coverage-maplibre-operators::before {
  content: "Operatör";
}

.coverage-maplibre-section .coverage-maplibre-networks::before {
  content: "Nät";
}

.coverage-maplibre-section .coverage-maplibre-operator {
  min-height: 44px !important;
  padding: 0 15px !important;
  border: 1px solid rgba(255, 255, 255, .13) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, .06) !important;
  color: rgba(255, 255, 255, .78) !important;
  font: 700 13px/1 var(--dui-font-body, Arial, sans-serif) !important;
  text-align: left !important;
}

.coverage-maplibre-section .coverage-maplibre-operator:hover {
  border-color: rgba(239, 173, 115, .66) !important;
  background: rgba(255, 255, 255, .1) !important;
}

.coverage-maplibre-section .coverage-maplibre-operator.is-active,
.coverage-maplibre-section .coverage-maplibre-operator[aria-pressed="true"] {
  outline: 0 !important;
  border-color: #d98843 !important;
  background: #c96f24 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.coverage-maplibre-section .coverage-maplibre-operator.is-active::after {
  right: 9px !important;
  width: 18px !important;
  height: 18px !important;
  background: #fff !important;
  color: #a55318 !important;
  font-size: 11px !important;
}

.coverage-maplibre-section .coverage-maplibre-networks {
  left: 54px !important;
  bottom: 128px !important;
  width: 260px !important;
  max-width: 260px !important;
  display: flex !important;
  gap: 7px !important;
  padding: 24px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
}

.coverage-maplibre-section .coverage-maplibre-network {
  flex: 1 1 48px;
  min-width: 0 !important;
  min-height: 38px !important;
  padding: 0 9px !important;
  border: 1px solid rgba(255, 255, 255, .13) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .06) !important;
  color: rgba(255, 255, 255, .78) !important;
  font: 700 12px/1 var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-network.is-active,
.coverage-maplibre-section .coverage-maplibre-network[aria-pressed="true"] {
  outline: 0 !important;
  border-color: #efad73 !important;
  background: #fff !important;
  color: var(--map-ink) !important;
  box-shadow: inset 0 0 0 2px #c96f24 !important;
}

.coverage-maplibre-section .coverage-maplibre-note {
  left: 54px !important;
  bottom: 48px !important;
  width: 260px !important;
  grid-template-columns: 22px 1fr !important;
  gap: 9px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .58) !important;
  font: 400 10px/1.45 var(--dui-font-body, Arial, sans-serif) !important;
  backdrop-filter: none !important;
}

.coverage-maplibre-section .coverage-maplibre-note__icon {
  width: 20px !important;
  height: 20px !important;
  border-color: rgba(239, 173, 115, .72) !important;
  color: #efad73 !important;
  font-size: 10px !important;
}

.coverage-maplibre-section .coverage-maplibre-note a {
  color: #efad73 !important;
}

.coverage-maplibre-section .coverage-maplibre-themes {
  left: 58% !important;
  bottom: 24px !important;
  display: flex !important;
  gap: 3px !important;
  padding: 4px !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: 14px !important;
  background: rgba(10, 21, 31, .86) !important;
  box-shadow: 0 12px 32px rgba(13, 23, 38, .2) !important;
  transform: translateX(-50%) !important;
  backdrop-filter: blur(18px) !important;
}

.coverage-maplibre-section .coverage-maplibre-themes button {
  min-height: 34px !important;
  padding: 0 13px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .62) !important;
  font: 700 11px/1 var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-themes button.is-active,
.coverage-maplibre-section .coverage-maplibre-themes button[aria-pressed="true"] {
  outline: 0 !important;
  background: #c96f24 !important;
  color: #fff !important;
}

.coverage-maplibre-section .coverage-maplibre-zoom {
  top: 24px !important;
  right: 24px !important;
  width: 52px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 16px !important;
  background: rgba(10, 21, 31, .9) !important;
  box-shadow: 0 14px 36px rgba(13, 23, 38, .24) !important;
  backdrop-filter: blur(18px) !important;
}

.coverage-maplibre-section .coverage-maplibre-zoom button {
  width: 52px !important;
  height: 48px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 24px !important;
}

.coverage-maplibre-section .coverage-maplibre-zoom button + button {
  border-top: 1px solid rgba(255, 255, 255, .1) !important;
}

.coverage-maplibre-section .coverage-maplibre-perspective.is-active {
  outline: 0 !important;
  background: #c96f24 !important;
  color: #fff !important;
}

.coverage-maplibre-section .maplibregl-ctrl-attrib {
  border-radius: 10px !important;
  background: rgba(10, 21, 31, .78) !important;
  color: rgba(255, 255, 255, .62) !important;
}

body:has(.home-intro) .coverage-maplibre-section {
  padding-top: clamp(72px, 7vw, 104px) !important;
}

@media (max-width: 1100px) {
  .coverage-maplibre-section .coverage-maplibre-search {
    left: 59% !important;
    width: min(360px, 34vw) !important;
  }

  .coverage-maplibre-section .coverage-maplibre-actions {
    left: calc(59% + min(180px, 17vw) + 8px) !important;
  }
}

@media (max-width: 760px) {
  .coverage-main.coverage-maplibre-section {
    padding: 54px 14px 72px !important;
  }

  .coverage-maplibre-heading {
    margin-bottom: 24px !important;
  }

  .coverage-maplibre-heading h2 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }

  .coverage-maplibre-heading__intro {
    font-size: 15px;
  }

  .coverage-maplibre-section .coverage-maplibre-shell {
    height: 850px !important;
    min-height: 850px !important;
    border-radius: 20px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-shell::before {
    top: 14px;
    right: 14px;
    bottom: auto;
    left: 14px;
    width: auto;
    height: 294px;
    border-radius: 17px;
  }

  .coverage-maplibre-section .coverage-maplibre-copy {
    top: 34px !important;
    left: 34px !important;
    width: calc(100% - 68px) !important;
    max-width: none !important;
  }

  .coverage-maplibre-section .coverage-maplibre-copy h2 {
    max-width: 320px !important;
    font-size: 27px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-copy p:last-child {
    display: none;
  }

  .coverage-maplibre-section .coverage-maplibre-operators,
  body:has(.home-intro) .coverage-maplibre-section .coverage-maplibre-operators {
    top: 158px !important;
    left: 34px !important;
    width: calc(100% - 68px) !important;
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .coverage-maplibre-section .coverage-maplibre-operator {
    min-width: 0 !important;
    min-height: 40px !important;
    padding: 0 8px !important;
    text-align: center !important;
    font-size: 11px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-operator.is-active::after {
    display: none !important;
  }

  .coverage-maplibre-section .coverage-maplibre-networks,
  body:has(.home-intro) .coverage-maplibre-section .coverage-maplibre-networks {
    top: 238px !important;
    bottom: auto !important;
    left: 34px !important;
    width: calc(100% - 68px) !important;
    max-width: none !important;
    flex-wrap: nowrap !important;
  }

  .coverage-maplibre-section .coverage-maplibre-network {
    padding: 0 5px !important;
    font-size: 10px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-search {
    --coverage-search-transform: none;
    top: 326px !important;
    right: 122px !important;
    left: 14px !important;
    width: auto !important;
    transform: none !important;
  }

  .coverage-maplibre-section .coverage-maplibre-actions {
    top: 326px !important;
    right: 14px !important;
    left: auto !important;
    width: 98px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-action {
    width: 98px !important;
    padding: 0 9px !important;
    font-size: 11px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-action::before {
    content: none;
  }

  .coverage-maplibre-section .coverage-maplibre-zoom {
    top: 394px !important;
    right: 14px !important;
    width: 46px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-zoom button {
    width: 46px !important;
    height: 44px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-themes {
    bottom: 18px !important;
    left: 50% !important;
  }

  .coverage-maplibre-section .coverage-maplibre-note {
    right: 14px !important;
    bottom: 70px !important;
    left: 14px !important;
    width: auto !important;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 14px !important;
    background: rgba(10, 21, 31, .84) !important;
    backdrop-filter: blur(16px) !important;
  }

}
*/

/* Final map control composition. The map canvas and coverage layers are unchanged. */
.coverage-main.coverage-maplibre-section .coverage-maplibre-shell {
  height: clamp(620px, 72vh, 760px) !important;
  min-height: 620px !important;
  border: 1px solid rgba(13, 23, 38, .16) !important;
  border-radius: 24px !important;
  background: #dce8ec !important;
  box-shadow: 0 24px 64px rgba(13, 23, 38, .14) !important;
}

.coverage-main.coverage-maplibre-section .coverage-maplibre-shell::before {
  content: none !important;
  display: none !important;
}

.coverage-main.coverage-maplibre-section .coverage-maplibre-scrim {
  background: transparent !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar {
  position: absolute !important;
  z-index: 10 !important;
  top: 18px !important;
  bottom: 18px !important;
  left: 18px !important;
  display: flex !important;
  width: 286px !important;
  flex-direction: column !important;
  gap: 22px !important;
  padding: 25px 22px 20px !important;
  overflow: hidden !important;
  border: 1px solid rgba(13, 23, 38, .12) !important;
  border-radius: 19px !important;
  background: rgba(255, 255, 255, .94) !important;
  color: #0d1726 !important;
  box-shadow: 0 16px 46px rgba(13, 23, 38, .18) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-note {
  position: relative !important;
  inset: auto !important;
  z-index: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy {
  padding: 0 0 20px !important;
  border-bottom: 1px solid rgba(13, 23, 38, .1) !important;
  color: #0d1726 !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-kicker {
  margin: 0 0 8px !important;
  color: #b75f1c !important;
  font: 750 10px/1.2 var(--dui-font-body, Arial, sans-serif) !important;
  letter-spacing: .13em !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy h2 {
  max-width: 230px !important;
  margin: 0 !important;
  color: #0d1726 !important;
  font: 650 27px/1.02 var(--dui-font-heading, Arial, sans-serif) !important;
  letter-spacing: -.035em !important;
  text-shadow: none !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy p:last-child {
  margin: 10px 0 0 !important;
  color: rgba(13, 23, 38, .62) !important;
  font: 400 12px/1.5 var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks {
  display: grid !important;
  padding: 22px 0 0 !important;
  gap: 8px !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators::before,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks::before {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  color: rgba(13, 23, 38, .5) !important;
  font: 750 9px/1 var(--dui-font-body, Arial, sans-serif) !important;
  letter-spacing: .13em !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-network {
  min-width: 0 !important;
  min-height: 39px !important;
  padding: 0 11px !important;
  border: 1px solid rgba(13, 23, 38, .13) !important;
  border-radius: 11px !important;
  background: #f5f6f6 !important;
  color: #23313f !important;
  font: 700 12px/1 var(--dui-font-body, Arial, sans-serif) !important;
  text-align: center !important;
  box-shadow: none !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator:hover,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-network:hover {
  border-color: rgba(201, 111, 36, .54) !important;
  background: #fff8f1 !important;
  color: #944914 !important;
  transform: translateY(-1px) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator.is-active,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator[aria-pressed="true"],
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-network.is-active,
.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-network[aria-pressed="true"] {
  outline: 0 !important;
  border-color: #b9601d !important;
  background: #c96f24 !important;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(201, 111, 36, .2) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator.is-active::after {
  right: 8px !important;
  width: 16px !important;
  height: 16px !important;
  background: #fff !important;
  color: #9b4c14 !important;
  font-size: 9px !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-note {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  gap: 9px !important;
  align-items: start !important;
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(13, 23, 38, .1) !important;
  color: rgba(13, 23, 38, .56) !important;
  font: 400 9.5px/1.45 var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-note__icon {
  width: 19px !important;
  height: 19px !important;
  border-color: rgba(201, 111, 36, .6) !important;
  color: #a95317 !important;
  font-size: 9px !important;
}

.coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-note a {
  color: #a95317 !important;
}

.coverage-maplibre-section .coverage-maplibre-search {
  --coverage-search-transform: none;
  top: 18px !important;
  right: auto !important;
  left: 322px !important;
  z-index: 12 !important;
  width: min(430px, calc(100% - 520px)) !important;
  min-height: 52px !important;
  transform: none !important;
  overflow: visible !important;
  border: 1px solid rgba(13, 23, 38, .12) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 10px 30px rgba(13, 23, 38, .16) !important;
  backdrop-filter: blur(16px) !important;
}

.coverage-maplibre-section .coverage-maplibre-search:focus-within {
  border-color: rgba(201, 111, 36, .75) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(201, 111, 36, .16), 0 14px 36px rgba(13, 23, 38, .18) !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder,
.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder input {
  background: transparent !important;
  box-shadow: none !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder input {
  height: 50px !important;
  padding: 0 44px 0 52px !important;
  border: 0 !important;
  outline: 0 !important;
  color: #172331 !important;
  font: 600 14px/50px var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder input::placeholder {
  color: rgba(13, 23, 38, .55) !important;
}

.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder--icon-search,
.coverage-maplibre-section .coverage-maplibre-search .maplibregl-ctrl-geocoder--icon-close {
  color: #4a5661 !important;
  fill: currentColor !important;
}

.coverage-maplibre-section .coverage-maplibre-actions {
  top: 18px !important;
  right: auto !important;
  left: calc(322px + min(430px, calc(100% - 520px)) + 10px) !important;
  z-index: 11 !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  transform: none !important;
  backdrop-filter: none !important;
}

.coverage-maplibre-section .coverage-maplibre-action {
  min-height: 52px !important;
  padding: 0 17px !important;
  border: 1px solid rgba(13, 23, 38, .12) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, .96) !important;
  color: #172331 !important;
  font: 700 12px/1 var(--dui-font-body, Arial, sans-serif) !important;
  box-shadow: 0 10px 30px rgba(13, 23, 38, .16) !important;
}

.coverage-maplibre-section .coverage-maplibre-action::before {
  content: none !important;
}

.coverage-maplibre-section .coverage-maplibre-zoom {
  top: 18px !important;
  right: 18px !important;
  z-index: 11 !important;
  width: 48px !important;
  overflow: hidden !important;
  border: 1px solid rgba(13, 23, 38, .12) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 10px 30px rgba(13, 23, 38, .16) !important;
  backdrop-filter: blur(16px) !important;
}

.coverage-maplibre-section .coverage-maplibre-zoom button {
  width: 48px !important;
  height: 45px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #172331 !important;
  font-size: 22px !important;
}

.coverage-maplibre-section .coverage-maplibre-zoom button + button {
  border-top: 1px solid rgba(13, 23, 38, .09) !important;
}

.coverage-maplibre-section .coverage-maplibre-perspective.is-active {
  outline: 0 !important;
  background: #c96f24 !important;
  color: #fff !important;
}

.coverage-maplibre-section .coverage-maplibre-themes {
  right: 18px !important;
  bottom: 18px !important;
  left: auto !important;
  z-index: 11 !important;
  display: flex !important;
  gap: 3px !important;
  padding: 4px !important;
  border: 1px solid rgba(13, 23, 38, .12) !important;
  border-radius: 13px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 10px 30px rgba(13, 23, 38, .14) !important;
  transform: none !important;
  backdrop-filter: blur(16px) !important;
}

.coverage-maplibre-section .coverage-maplibre-themes button {
  min-height: 33px !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: transparent !important;
  color: rgba(13, 23, 38, .62) !important;
  font: 700 10px/1 var(--dui-font-body, Arial, sans-serif) !important;
}

.coverage-maplibre-section .coverage-maplibre-themes button.is-active,
.coverage-maplibre-section .coverage-maplibre-themes button[aria-pressed="true"] {
  outline: 0 !important;
  background: #c96f24 !important;
  color: #fff !important;
}

@media (max-width: 760px) {
  .coverage-main.coverage-maplibre-section .coverage-maplibre-shell {
    height: 820px !important;
    min-height: 820px !important;
    border-radius: 20px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar {
    top: 12px !important;
    right: 12px !important;
    bottom: auto !important;
    left: 12px !important;
    width: auto !important;
    height: 254px !important;
    gap: 15px !important;
    padding: 18px !important;
    overflow: visible !important;
    border-radius: 16px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy {
    padding-bottom: 13px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-kicker {
    margin-bottom: 5px !important;
    font-size: 9px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy h2 {
    max-width: 310px !important;
    font-size: 23px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-copy p:last-child {
    display: none !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators,
  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks {
    padding-top: 17px !important;
    gap: 6px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operators {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-networks {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator,
  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-network {
    min-height: 34px !important;
    padding: 0 4px !important;
    border-radius: 9px !important;
    font-size: 10px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-operator.is-active::after {
    display: none !important;
  }

  .coverage-maplibre-section .coverage-maplibre-sidebar .coverage-maplibre-note {
    position: absolute !important;
    top: 640px !important;
    right: 0 !important;
    left: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding: 12px !important;
    border: 1px solid rgba(13, 23, 38, .12) !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, .94) !important;
    color: rgba(13, 23, 38, .58) !important;
    box-shadow: 0 10px 28px rgba(13, 23, 38, .14) !important;
    backdrop-filter: blur(14px) !important;
  }

  .coverage-maplibre-section .coverage-maplibre-search {
    top: 280px !important;
    right: 120px !important;
    left: 12px !important;
    width: auto !important;
  }

  .coverage-maplibre-section .coverage-maplibre-actions {
    top: 280px !important;
    right: 12px !important;
    left: auto !important;
    width: 98px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-action {
    width: 98px !important;
    padding: 0 8px !important;
    justify-content: center !important;
    font-size: 10px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-zoom {
    top: 346px !important;
    right: 12px !important;
    width: 44px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-zoom button {
    width: 44px !important;
    height: 42px !important;
  }

  .coverage-maplibre-section .coverage-maplibre-themes {
    right: 12px !important;
    bottom: 12px !important;
  }
}

/* Open chat: professional, simple panel treatment. */
html body #dealettChat .dealett-chat-panel {
  right: 0 !important;
  bottom: 66px !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto auto !important;
  width: min(420px, calc(100vw - 32px)) !important;
  height: min(640px, calc(100vh - 96px)) !important;
  max-height: min(640px, calc(100vh - 96px)) !important;
  overflow: hidden !important;
  border: 1px solid rgba(13, 23, 38, .14) !important;
  border-radius: 12px !important;
  background: #FFFFFF !important;
  color: #0D1726 !important;
  box-shadow: 0 20px 48px rgba(13, 23, 38, .18) !important;
}

html body #dealettChat .dealett-chat-panel[hidden] {
  display: none !important;
}

html body #dealettChat .dealett-chat-header {
  position: static !important;
  display: flex !important;
  min-height: 58px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding: 12px 14px !important;
  border-bottom: 1px solid rgba(13, 23, 38, .10) !important;
  background: #FFFFFF !important;
  color: #0D1726 !important;
}

html body #dealettChat .dealett-chat-header > div {
  position: static !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

html body #dealettChat .dealett-chat-header strong {
  display: block !important;
  margin: 0 !important;
  color: #0D1726 !important;
  font: 700 14px/1.2 var(--dui-font-body) !important;
}

html body #dealettChat .dealett-chat-header span {
  display: block !important;
  margin-top: 2px !important;
  color: rgba(13, 23, 38, .58) !important;
  font: 500 12px/1.25 var(--dui-font-body) !important;
}

html body #dealettChat .dealett-chat-reset,
html body #dealettChat .dealett-chat-close {
  flex: 0 0 auto !important;
  display: inline-grid !important;
  width: 34px !important;
  height: 34px !important;
  place-items: center !important;
  margin: 0 !important;
  border: 1px solid rgba(13, 23, 38, .14) !important;
  border-radius: 8px !important;
  background: #FFFFFF !important;
  color: #0D1726 !important;
  box-shadow: none !important;
}

html body #dealettChat .dealett-chat-reset {
  margin-left: auto !important;
}

html body #dealettChat .dealett-chat-reset:hover,
html body #dealettChat .dealett-chat-close:hover {
  border-color: rgba(201, 111, 36, .44) !important;
  background: #F8F5F0 !important;
  color: #0D1726 !important;
}

html body #dealettChat .dealett-chat-messages {
  min-height: 0 !important;
  padding: 16px !important;
  gap: 12px !important;
  overflow-y: auto !important;
  background: #F8F5F0 !important;
}

html body #dealettChat .dealett-chat-message {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: none !important;
  gap: 8px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0D1726 !important;
  font: 400 14px/1.48 var(--dui-font-body) !important;
}

html body #dealettChat .dealett-chat-message--assistant {
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

html body #dealettChat .dealett-chat-message--user {
  align-items: flex-end !important;
  justify-content: flex-end !important;
}

html body #dealettChat .dealett-chat-avatar {
  display: none !important;
}

html body #dealettChat .dealett-chat-bubble {
  width: auto !important;
  max-width: min(86%, 330px) !important;
  padding: 10px 12px !important;
  border: 1px solid rgba(13, 23, 38, .10) !important;
  border-radius: 10px !important;
  background: #FFFFFF !important;
  color: #0D1726 !important;
  box-shadow: none !important;
}

html body #dealettChat .dealett-chat-message--assistant .dealett-chat-bubble {
  min-width: min(230px, 86%) !important;
  border-bottom-left-radius: 4px !important;
}

html body #dealettChat .dealett-chat-message--user .dealett-chat-bubble {
  justify-self: auto !important;
  max-width: min(86%, 330px) !important;
  padding: 10px 30px 10px 12px !important;
  border-color: #0D1726 !important;
  border-bottom-right-radius: 4px !important;
  background: #0D1726 !important;
  color: #FFFFFF !important;
}

html body #dealettChat .dealett-chat-message p {
  margin: 0 !important;
  color: inherit !important;
  white-space: pre-wrap !important;
}

html body #dealettChat .dealett-chat-time {
  display: block !important;
  margin-top: 6px !important;
  color: rgba(13, 23, 38, .46) !important;
  font: 500 11px/1 var(--dui-font-body) !important;
}

html body #dealettChat .dealett-chat-message--user .dealett-chat-time {
  color: rgba(255, 255, 255, .66) !important;
}

html body #dealettChat .dealett-chat-check {
  right: 12px !important;
  bottom: 11px !important;
  width: 10px !important;
  height: 6px !important;
  border-color: rgba(255, 255, 255, .76) !important;
}

html body #dealettChat .dealett-chat-typing-dots {
  height: 14px !important;
  gap: 5px !important;
}

html body #dealettChat .dealett-chat-typing-dots i {
  width: 6px !important;
  height: 6px !important;
  background: rgba(13, 23, 38, .46) !important;
}

html body #dealettChat .dealett-chat-quick-replies,
html body #dealettChat .dealett-chat-widget-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 10px !important;
}

html body #dealettChat .dealett-chat-quick-replies {
  width: 100% !important;
  max-width: 100% !important;
}

html body #dealettChat .dealett-chat-quick-reply,
html body #dealettChat .dealett-chat-widget-button,
html body #dealettChat .dealett-chat-chip {
  min-height: 34px !important;
  padding: 7px 11px !important;
  border: 1px solid rgba(13, 23, 38, .16) !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  color: #0D1726 !important;
  box-shadow: none !important;
  font: 700 12px/1.2 var(--dui-font-body) !important;
}

html body #dealettChat .dealett-chat-quick-reply:hover,
html body #dealettChat .dealett-chat-widget-button:hover,
html body #dealettChat .dealett-chat-chip:hover {
  border-color: rgba(201, 111, 36, .48) !important;
  background: #FFF8F1 !important;
  color: #0D1726 !important;
}

html body #dealettChat .dealett-chat-quick-reply.is-selected,
html body #dealettChat .dealett-chat-quick-reply--submit,
html body #dealettChat .dealett-chat-widget-button--primary {
  border-color: #0D1726 !important;
  background: #0D1726 !important;
  color: #FFFFFF !important;
}

html body #dealettChat .dealett-chat-embedded-widget {
  width: min(100%, 330px) !important;
  margin-top: 10px !important;
  padding: 12px !important;
  border: 1px solid rgba(13, 23, 38, .10) !important;
  border-radius: 10px !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}

html body #dealettChat .dealett-chat-widget-title {
  color: #0D1726 !important;
  font: 700 13px/1.3 var(--dui-font-body) !important;
}

html body #dealettChat .dealett-chat-widget-description,
html body #dealettChat .dealett-chat-widget-status {
  color: rgba(13, 23, 38, .62) !important;
  font: 400 12px/1.45 var(--dui-font-body) !important;
}

html body #dealettChat .dealett-chat-address-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px !important;
}

html body #dealettChat .dealett-chat-address-input,
html body #dealettChat .dealett-chat-input {
  border: 1px solid rgba(13, 23, 38, .14) !important;
  border-radius: 8px !important;
  background: #FFFFFF !important;
  color: #0D1726 !important;
  box-shadow: none !important;
  font: 400 14px/1.2 var(--dui-font-body) !important;
}

html body #dealettChat .dealett-chat-address-input {
  height: 36px !important;
  padding: 0 10px !important;
}

html body #dealettChat .dealett-chat-address-input:focus,
html body #dealettChat .dealett-chat-input:focus {
  border-color: #C96F24 !important;
  outline: 3px solid rgba(201, 111, 36, .14) !important;
}

html body #dealettChat .dealett-chat-offers {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 10px !important;
  gap: 10px !important;
}

html body #dealettChat .dealett-chat-offer-card {
  border-radius: 10px !important;
  box-shadow: none !important;
}

html body #dealettChat .dealett-chat-suggestions {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  min-height: 48px !important;
  padding: 10px 14px !important;
  overflow-x: auto !important;
  border-top: 1px solid rgba(13, 23, 38, .08) !important;
  background: #FFFFFF !important;
}

html body #dealettChat .dealett-chat-suggestions:empty {
  display: none !important;
}

html body #dealettChat .dealett-chat-chip {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

html body #dealettChat .dealett-chat-form {
  position: static !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 42px !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 12px 14px 14px !important;
  border: 0 !important;
  border-top: 1px solid rgba(13, 23, 38, .10) !important;
  border-radius: 0 !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}

html body #dealettChat .dealett-chat-form::before {
  content: none !important;
}

html body #dealettChat .dealett-chat-input {
  min-width: 0 !important;
  width: 100% !important;
  height: 42px !important;
  padding: 0 12px !important;
}

html body #dealettChat .dealett-chat-send {
  display: inline-grid !important;
  width: 42px !important;
  height: 42px !important;
  place-items: center !important;
  border: 1px solid #0D1726 !important;
  border-radius: 8px !important;
  background: #0D1726 !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
  font-size: 14px !important;
}

html body #dealettChat .dealett-chat-send:hover {
  border-color: #C96F24 !important;
  background: #C96F24 !important;
  color: #FFFFFF !important;
}

@media (max-width: 680px) {
  html body #dealettChat .dealett-chat-panel {
    right: -2px !important;
    bottom: 62px !important;
    width: calc(100vw - 24px) !important;
    height: min(620px, calc(100vh - 84px)) !important;
    max-height: calc(100vh - 84px) !important;
    border-radius: 12px !important;
  }

  html body #dealettChat .dealett-chat-header {
    min-height: 56px !important;
    padding: 11px 12px !important;
  }

  html body #dealettChat .dealett-chat-messages {
    padding: 12px !important;
  }

  html body #dealettChat .dealett-chat-bubble,
  html body #dealettChat .dealett-chat-message--user .dealett-chat-bubble {
    max-width: 90% !important;
  }

  html body #dealettChat .dealett-chat-suggestions {
    padding: 9px 12px !important;
  }

  html body #dealettChat .dealett-chat-form {
    padding: 10px 12px 12px !important;
  }
}

/* Shared footer layout — curved forest reference */
html body .footer {
  --footer-forest: var(--dui-bg-deep);
  --footer-forest-deep: #08101C;
  --footer-cream: #F8F5F0;
  --footer-gold: var(--dui-accent);
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: var(--footer-forest) !important;
  color: #fff !important;
}

html body .footer::before {
  content: "" !important;
  position: absolute !important;
  z-index: 2 !important;
  inset-block-start: -1px !important;
  inset-inline-start: 0 !important;
  width: 100% !important;
  height: 64px !important;
  border-radius: 0 !important;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23F8F5F0' d='M0 0H1440V6C1320 16 1240 46 1100 48C940 50 860 12 720 10C580 8 500 58 340 56C190 54 110 15 0 6Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat !important;
  pointer-events: none !important;
}

html body .footer::after {
  content: none !important;
  display: none !important;
}

html body .footer .footer-inner {
  position: relative !important;
  z-index: 1 !important;
  width: var(--dui-shell) !important;
  max-width: 1480px !important;
  margin-inline: auto !important;
  padding: clamp(94px, 8vw, 122px) 0 clamp(36px, 4vw, 54px) !important;
  overflow: visible !important;
}

html body .footer .footer-main {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: start !important;
}

html body .footer .footer-identity {
  display: grid !important;
  min-width: 0 !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(24px, 3vw, 48px) !important;
  align-items: start !important;
}

html body .footer .footer-brand,
html body .footer .footer-contact,
html body .footer .footer-link-group {
  display: flex !important;
  min-width: 0 !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

html body .footer .footer-brand {
  gap: 10px !important;
}

html body .footer .footer-brand-link {
  display: inline-flex !important;
  width: fit-content !important;
  min-height: 0 !important;
  align-items: center !important;
  padding: 9px 12px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: var(--footer-cream) !important;
  box-shadow: none !important;
  color: #fff !important;
  text-decoration: none !important;
}

html body .footer .footer-brand-logo {
  display: block !important;
  width: clamp(138px, 11vw, 174px) !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

html body .footer .footer-brand p {
  max-width: 190px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, .68) !important;
  font: 400 12.5px/1.6 var(--dui-font-body) !important;
  letter-spacing: 0 !important;
}

html body .footer .footer-contact {
  width: 100% !important;
  gap: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: rgba(255, 255, 255, .68) !important;
  font-style: normal !important;
}

html body .footer .footer-contact .footer-contact-title {
  display: inline-flex !important;
  width: fit-content !important;
  min-height: 28px !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 8px !important;
  color: #fff !important;
  font: 700 11px/1.2 var(--dui-font-body) !important;
  letter-spacing: .025em !important;
  text-decoration: none !important;
  text-transform: none !important;
}

html body .footer .footer-contact-title > span:last-child {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--footer-gold) !important;
  font-size: 14px !important;
  line-height: 1 !important;
  transition: transform var(--dui-fast) !important;
}

html body .footer .footer-contact > a:not(.footer-contact-title),
html body .footer .footer-contact > span {
  display: flex !important;
  min-height: 27px !important;
  align-items: center !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, .7) !important;
  font: 400 12px/1.55 var(--dui-font-body) !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

html body .footer .footer-contact > span {
  min-height: 0 !important;
  padding-block-start: 3px !important;
}

html body .footer .footer-links {
  display: grid !important;
  min-width: 0 !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 3vw, 48px) !important;
  align-items: start !important;
}

html body .footer .footer-link-group {
  gap: 0 !important;
}

html body .footer .footer-link-group h2 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font: 700 11px/1.2 var(--dui-font-body) !important;
  letter-spacing: .025em !important;
  text-transform: none !important;
}

html body .footer .footer-link-group ul,
html body .footer .footer-social-grid {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body .footer .footer-link-group ul {
  display: grid !important;
  width: 100% !important;
  gap: 0 !important;
}

html body .footer .footer-link-group li,
html body .footer .footer-social-grid li {
  min-width: 0 !important;
  margin: 0 !important;
}

html body .footer .footer-link-group a {
  display: inline-flex !important;
  min-height: 28px !important;
  max-width: 100% !important;
  align-items: center !important;
  padding: 2px 0 !important;
  color: rgba(255, 255, 255, .7) !important;
  font: 400 12px/1.45 var(--dui-font-body) !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere !important;
  text-decoration: none !important;
  transition: color var(--dui-fast), transform var(--dui-fast) !important;
}

html body .footer .footer-bottom {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 30px !important;
  align-items: end !important;
  margin-top: clamp(40px, 5vw, 64px) !important;
  padding-right: 220px !important;
  padding-top: 18px !important;
  border-block-start: 1px solid rgba(255, 255, 255, .16) !important;
}

html body .footer .footer-copyright,
html body .footer .footer-bottom-label {
  margin: 0 !important;
  color: rgba(255, 255, 255, .7) !important;
  font: 600 10px/1.2 var(--dui-font-body) !important;
  letter-spacing: .03em !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

html body .footer .footer-social {
  display: flex !important;
  min-width: 0 !important;
  align-items: center !important;
  justify-self: end !important;
  gap: 16px !important;
}

html body .footer .footer-social-grid {
  display: flex !important;
  min-width: 0 !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 7px !important;
}

html body .footer .footer-social-plate {
  position: static !important;
  isolation: auto !important;
  display: grid !important;
  width: 34px !important;
  min-height: 34px !important;
  place-items: center !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  clip-path: none !important;
  color: #fff !important;
  filter: none !important;
  text-decoration: none !important;
  transform: none !important;
  transition: background-color var(--dui-fast), color var(--dui-fast), transform var(--dui-fast) !important;
}

html body .footer .footer-social-plate::before,
html body .footer .footer-social-plate::after,
html body .footer .footer-social-icon::after {
  content: none !important;
  display: none !important;
}

html body .footer .footer-social-icon {
  position: static !important;
  display: grid !important;
  width: 34px !important;
  height: 34px !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: inherit !important;
  font-size: 15px !important;
  line-height: 1 !important;
  text-shadow: none !important;
}

html body .footer .footer-social-copy {
  display: none !important;
}

html body .footer .footer-links a:focus-visible,
html body .footer .footer-contact a:focus-visible,
html body .footer .footer-social-plate:focus-visible,
html body .footer .footer-brand-link:focus-visible {
  border-radius: 2px !important;
  outline: 2px solid var(--footer-gold) !important;
  outline-offset: 4px !important;
}

@media (hover: hover) {
  html body .footer .footer-contact-title:hover > span:last-child {
    transform: translate(2px, -2px) !important;
  }

  html body .footer .footer-contact > a:not(.footer-contact-title):hover,
  html body .footer .footer-link-group a:hover {
    color: #fff !important;
    transform: translateX(3px) !important;
  }

  html[dir="rtl"] body .footer .footer-contact > a:not(.footer-contact-title):hover,
  html[dir="rtl"] body .footer .footer-link-group a:hover {
    transform: translateX(-3px) !important;
  }

  html body .footer .footer-social-plate:hover {
    background: var(--footer-gold) !important;
    color: var(--footer-forest-deep) !important;
    transform: translateY(-2px) !important;
  }
}

@media (max-width: 980px) {
  html body .footer .footer-main {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  html body .footer .footer-identity {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body .footer .footer-links {
    gap: clamp(24px, 5vw, 52px) !important;
  }
}

@media (max-width: 760px) {
  html body .footer::before {
    inset-block-start: -1px !important;
    height: 48px !important;
  }

  html body .footer .footer-inner {
    padding-top: 82px !important;
    padding-bottom: calc(88px + env(safe-area-inset-bottom)) !important;
  }

  html body .footer .footer-main {
    gap: 36px !important;
  }

  html body .footer .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 24px !important;
  }

  html body .footer .footer-link-group--legal {
    grid-column: 1 / -1 !important;
  }

  html body .footer .footer-link-group--legal ul {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 24px !important;
  }

  html body .footer .footer-bottom {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 38px !important;
    padding-right: 0 !important;
  }

  html body .footer .footer-social {
    grid-row: 1 !important;
    justify-self: start !important;
  }

  html body .footer .footer-social-grid {
    justify-content: flex-start !important;
  }

  html body .footer .footer-copyright {
    grid-row: 2 !important;
  }
}

@media (max-width: 520px) {
  html body .footer .footer-identity {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  html body .footer .footer-links {
    gap: 26px 18px !important;
  }

  html body .footer .footer-link-group--legal ul {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  html body .footer .footer-bottom-label {
    display: none !important;
  }

  html body .footer .footer-social {
    width: 100% !important;
  }

  html body .footer .footer-social-grid {
    flex-wrap: nowrap !important;
  }
}

/* Homepage composition from the compact AI-guide layout. */
@media (min-width: 901px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    --home-shell: min(1504px, calc(100vw - 48px));
    display: grid !important;
    grid-template-columns: minmax(0, 1.64fr) minmax(390px, 1fr) !important;
    grid-template-rows: auto auto auto auto minmax(0, 1fr) auto !important;
    column-gap: 18px !important;
    row-gap: 0 !important;
    min-height: calc(100svh + 165px) !important;
    padding: 24px max(24px, calc((100vw - 1504px) / 2)) 0 !important;
    background: #f4f6f8 !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom,
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
    min-height: clamp(342px, 46svh, 430px) !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: 1px solid #dfe3e8;
    border-radius: 12px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 30px rgba(13, 23, 38, .04);
  }

  html body:has(.home-intro) .hero-ai-guide {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: clamp(24px, 2vw, 34px);
    color: #0d1726;
  }

  html body:has(.home-intro) .hero-ai-guide__eyebrow {
    margin: 0 0 8px;
    color: #26364a;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  html body:has(.home-intro) .hero-ai-guide h1 {
    margin: 0;
    color: #0d1726 !important;
    font-size: clamp(42px, 3.55vw, 62px) !important;
    font-weight: 800 !important;
    line-height: .94 !important;
    letter-spacing: -.045em !important;
    text-shadow: none !important;
  }

  html body:has(.home-intro) .hero-ai-guide__intro {
    margin: 8px 0 16px;
    color: #0d1726;
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.25;
  }

  html body:has(.home-intro) .hero-ai-guide__composer {
    display: grid;
    flex: 1 1 auto;
    min-height: 112px;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    border: 1px solid #bfc7d0;
    border-radius: 10px;
    background: #fff;
  }

  html body:has(.home-intro) .hero-ai-guide__composer textarea {
    width: 100%;
    min-height: 66px;
    resize: none;
    padding: 17px 22px 4px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0d1726;
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
  }

  html body:has(.home-intro) .hero-ai-guide__composer textarea::placeholder {
    color: #778599;
    opacity: 1;
  }

  html body:has(.home-intro) .hero-ai-guide__composer:focus-within {
    border-color: #0d2847;
    box-shadow: 0 0 0 3px rgba(13, 40, 71, .1);
  }

  html body:has(.home-intro) .hero-ai-guide__composer-footer {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px 9px 18px;
  }

  html body:has(.home-intro) .hero-ai-guide__ask-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #6f7b8e;
    font-size: 15px;
  }

  html body:has(.home-intro) .hero-ai-guide__ask-label i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: #f0f3f6;
    color: #0d1726;
  }

  html body:has(.home-intro) .hero-ai-guide__composer-footer > button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: #172535;
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease;
  }

  html body:has(.home-intro) .hero-ai-guide__composer-footer > button:hover,
  html body:has(.home-intro) .hero-ai-guide__composer-footer > button:focus-visible {
    background: #0d2847;
    outline: none;
    transform: translateY(-1px);
  }

  html body:has(.home-intro) .hero-ai-guide__prompts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts button {
    display: inline-flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 9px 14px;
    border: 1px solid #cfd5dc;
    border-radius: 999px;
    background: #fff;
    color: #0d1726;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts button:hover,
  html body:has(.home-intro) .hero-ai-guide__prompts button:focus-visible {
    border-color: #0d2847;
    background: #f4f7fa;
    outline: none;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts i {
    flex: 0 0 auto;
    font-size: 20px;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
    grid-column: 2 !important;
    grid-row: 1 !important;
    gap: clamp(14px, 1.4svh, 22px) !important;
    padding: clamp(24px, 2vw, 32px) !important;
    border-color: #dfe3e8 !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 30px rgba(13, 23, 38, .04) !important;
  }

  html body:has(.home-intro) .hero-finder__title {
    font-size: clamp(30px, 2.45vw, 42px) !important;
  }

  html body:has(.home-intro) .hero-finder__option span {
    min-height: 46px;
  }

  html body:has(.home-intro) .hero-finder__options--data .hero-finder__option:nth-child(2) input:checked + span {
    border-color: #172535;
    background: #172535;
    box-shadow: 0 7px 16px rgba(13, 23, 38, .18);
    color: #fff;
  }

  html body:has(.home-intro) .hero-finder__submit {
    min-height: 54px;
    background: #172535;
  }

  html body:has(.home-intro) .hero-operators {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    grid-template-columns: .9fr repeat(4, 1fr) !important;
    width: 100vw !important;
    height: 64px;
    margin: 18px calc(50% - 50vw) 0 !important;
    padding: 0 max(24px, calc((100vw - 1504px) / 2));
    border-top: 1px solid #e0e4e8;
    border-bottom: 1px solid #e0e4e8;
    background: #fff;
  }

  html body:has(.home-intro) .hero-operators > strong,
  html body:has(.home-intro) .hero-operator {
    height: 100%;
    border-right: 1px solid #e0e4e8;
  }

  html body:has(.home-intro) .hero-operators > strong {
    display: grid;
    place-items: center;
    font-size: 16px;
  }

  html body:has(.home-intro) .hero-operator:last-child {
    border-right: 0;
  }

  html body:has(.home-intro) .hero-value {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    min-height: 112px;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 14px 0;
    color: #0d1726;
  }

  html body:has(.home-intro) .hero-value__intro,
  html body:has(.home-intro) .hero-value__item {
    min-width: 0;
    height: 100%;
    border-right: 1px solid #cfd5dc;
  }

  html body:has(.home-intro) .hero-value__intro {
    padding: 0 28px 0 4px;
  }

  html body:has(.home-intro) .hero-value__intro h2 {
    margin: 0 0 6px;
    color: #0d1726;
    font-size: clamp(30px, 2.65vw, 43px);
    line-height: 1;
    letter-spacing: -.045em;
  }

  html body:has(.home-intro) .hero-value__intro p,
  html body:has(.home-intro) .hero-value__item p {
    margin: 0;
    color: #314156;
    font-size: 14px;
    line-height: 1.42;
  }

  html body:has(.home-intro) .hero-value__item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 4px 20px;
  }

  html body:has(.home-intro) .hero-value__item:last-child {
    border-right: 0;
    padding-right: 0;
  }

  html body:has(.home-intro) .hero-value__item > i {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 50%;
    background: #e8edf1;
    color: #0d1726;
    font-size: 22px;
  }

  html body:has(.home-intro) .hero-value__item h3 {
    margin: 5px 0 8px;
    color: #0d1726;
    font-size: 16px;
    line-height: 1.15;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-information {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    display: grid !important;
    grid-template-columns: 1.05fr 1fr;
    width: 100% !important;
    min-height: 100px;
    justify-self: stretch !important;
    overflow: hidden;
    border: 0 !important;
    border-radius: 8px !important;
    background: linear-gradient(120deg, #1b2938, #34485c) !important;
    box-shadow: none !important;
    color: #fff !important;
  }

  html body:has(.home-intro) .hero-information__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 28px !important;
    border: 0 !important;
  }

  html body:has(.home-intro) .hero-information__eyebrow,
  html body:has(.home-intro) .hero-information__controls {
    display: none !important;
  }

  html body:has(.home-intro) .hero-information__title {
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(25px, 2.2vw, 36px) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -.035em !important;
  }

  html body:has(.home-intro) .hero-information__title span {
    color: #b7c8d8;
  }

  html body:has(.home-intro) .hero-information__intro {
    margin: 8px 0 0 !important;
    color: rgba(255, 255, 255, .78) !important;
    font-size: 14px !important;
  }

  html body:has(.home-intro) .hero-information__list {
    display: grid !important;
    height: auto !important;
    grid-template-columns: max-content max-content;
    align-content: center;
    justify-content: start;
    gap: 8px 10px;
    padding: 12px 28px 12px 10px;
    overflow: visible !important;
  }

  html body:has(.home-intro) .hero-information__item {
    display: block !important;
    width: auto !important;
    height: 28px !important;
    min-height: 0 !important;
    padding: 6px 14px !important;
    border: 1px solid rgba(255, 255, 255, .48) !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: #fff !important;
  }

  html body:has(.home-intro) .hero-information__item:first-child {
    position: relative;
    grid-column: 1 / -1;
    width: min(100%, 610px) !important;
    height: 42px !important;
    padding: 11px 52px 11px 15px !important;
    border-color: #fff !important;
    background: #fff !important;
    color: #536174 !important;
  }

  html body:has(.home-intro) .hero-information__number {
    display: none !important;
  }

  html body:has(.home-intro) .hero-information__text {
    display: block !important;
    max-width: 300px;
    overflow: hidden !important;
    color: inherit !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  html body:has(.home-intro) .hero-information__item:first-child .hero-information__text {
    max-width: none;
  }

  html body:has(.home-intro) .hero-information__arrow {
    display: none !important;
  }

  html body:has(.home-intro) .hero-information__item:first-child .hero-information__arrow {
    position: absolute;
    top: 4px;
    right: 5px;
    display: grid !important;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: #172535;
    color: #fff;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-showcase {
    grid-column: 1 / -1 !important;
    grid-row: 6 !important;
    align-self: end;
    width: min(100%, 1504px) !important;
    margin-top: 16px;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-quiz-mount {
    grid-column: 1 / -1;
    grid-row: 7;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) > .home-marquee {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .footer .footer-contact-title > span:last-child,
  html body .footer .footer-contact > a:not(.footer-contact-title),
  html body .footer .footer-link-group a,
  html body .footer .footer-social-plate {
    transition: none !important;
  }

  html body .footer .footer-contact-title:hover > span:last-child,
  html body .footer .footer-contact > a:not(.footer-contact-title):hover,
  html body .footer .footer-link-group a:hover,
  html body .footer .footer-social-plate:hover {
    transform: none !important;
  }
}
/* Allow every active quiz stage to reveal tall content instead of clipping it. */
html body:not(.quiz-overlay-open) .hero.quiz-in-hero,
html body:not(.quiz-overlay-open) .hero.quiz-in-hero .hero-quiz-mount,
html body:not(.quiz-overlay-open) .hero.quiz-in-hero #quiz-steps-wrapper,
html body:not(.quiz-overlay-open) .hero.quiz-in-hero #quiz-card-stack,
html body:not(.quiz-overlay-open) .hero.quiz-in-hero .quiz-step-card.active-step,
html body:not(.quiz-overlay-open) .hero.quiz-in-hero .quiz-step-card.active-step .quiz-card {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

html body.quiz-overlay-open .quiz-modal-layer .quiz-step-card.active-step .quiz-card {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin !important;
}

html body.quiz-overlay-open .quiz-modal-layer #step7 .offers-recommendation-grid {
  max-height: none !important;
  overflow: visible !important;
}

html body:has(.home-intro) .hero .hero-offer-tile:has(.hero-offer-image) {
  aspect-ratio: 3 / 2 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: #03080d !important;
  overflow: hidden !important;
}

html body:has(.home-intro) .hero .hero-offer-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  pointer-events: none !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 380px !important;
  grid-template-rows: auto auto auto auto !important;
  gap: 32px clamp(32px, 5vw, 72px) !important;
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
  padding: 124px max(24px, calc((100vw - 1420px) / 2)) 56px !important;
  overflow: visible !important;
  background: #fff !important;
  background-image: none !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero)::before,
html body:has(.home-intro) .hero:not(.quiz-in-hero)::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  align-self: center !important;
  padding: 0 !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
  position: static !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  align-self: start !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-information {
  position: static !important;
  grid-column: 1 / -1 !important;
  grid-row: 4 !important;
  width: min(430px, 100%) !important;
  justify-self: center !important;
  align-self: start !important;
}

html body:has(.home-intro) .hero-finder,
html body:has(.home-intro) .hero-finder * {
  box-sizing: border-box;
}

html body:has(.home-intro) .hero-finder {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(13, 23, 38, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 48px rgba(13, 23, 38, .14);
  color: #0d1726;
}

html body:has(.home-intro) .hero-finder [hidden] {
  display: none;
}

html body:has(.home-intro) .hero-finder__stage {
  display: grid;
  gap: inherit;
  min-width: 0;
  transform-origin: center center;
  backface-visibility: hidden;
}

@media (min-width: 901px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder:has(.hero-finder__stage) {
    height: auto !important;
    max-height: none !important;
    padding-bottom: 52px !important;
  }
}

html body:has(.home-intro) .hero-finder__address h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

html body:has(.home-intro) .hero-finder__address p,
html body:has(.home-intro) .hero-finder__address-help {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

html body:has(.home-intro) .hero-finder__address input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 14px;
  border: 1px solid #9ca3af;
  border-radius: 8px;
  font: inherit;
}

html body:has(.home-intro) .hero-finder__title {
  margin: 0;
  color: #0d1726;
  font-size: clamp(28px, 2.2vw, 34px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
}

html body:has(.home-intro) .hero-finder__group {
  display: grid;
  min-width: 0;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

html body:has(.home-intro) .hero-finder__group legend {
  margin: 0;
  padding: 0;
  color: #0d1726;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
}

html body:has(.home-intro) .hero-finder__group--type,
html body:has(.home-intro) .hero-finder__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

html body:has(.home-intro) .hero-finder__options--people {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

html body:has(.home-intro) .hero-finder__option {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

html body:has(.home-intro) .hero-finder__option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

html body:has(.home-intro) .hero-finder__option span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid #d4d9df;
  border-radius: 7px;
  background: #fff;
  color: #0d1726;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.1;
  text-align: center;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

html body:has(.home-intro) .hero-finder__option:hover span {
  border-color: #9ca7b4;
}

html body:has(.home-intro) .hero-finder__option input:focus-visible + span {
  outline: 3px solid rgba(189, 100, 40, .28);
  outline-offset: 2px;
}

html body:has(.home-intro) .hero-finder__option input:checked + span {
  border-color: #0d2847;
  background: #0d2847;
  box-shadow: 0 7px 16px rgba(13, 40, 71, .18);
  color: #fff;
}

html body:has(.home-intro) .hero-finder__options--data .hero-finder__option:nth-child(2) input:checked + span {
  border-color: #ef9e5f;
  background: #ffd2af;
  box-shadow: none;
  color: #0d1726;
}

html body:has(.home-intro) .hero-finder__submit {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  background: #0d2847;
  color: #fff;
  font: inherit;
  font-size: 17px;
  font-weight: 750;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

html body:has(.home-intro) .hero-finder__submit:hover,
html body:has(.home-intro) .hero-finder__submit:focus-visible {
  background: #14395f;
  outline: none;
  transform: translateY(-1px);
}

html body:has(.home-intro) .hero-finder__submit:focus-visible {
  box-shadow: 0 0 0 3px rgba(189, 100, 40, .3);
}

html body:has(.home-intro) .hero-finder__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: -8px 0 0;
  color: rgba(13, 23, 38, .58);
  font-size: 12px;
  line-height: 1.2;
}

html body:has(.home-intro) .hero-finder__note span + span::before {
  content: "·";
  margin: 0 10px;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-showcase {
  position: static !important;
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: min(100%, 1244px) !important;
  max-width: none !important;
  justify-self: center !important;
  gap: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom h1,
html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom h1 em,
html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-lead,
html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-proof,
html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-proof strong {
  color: #0D1726 !important;
  text-shadow: none !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom-actions .hero-proof > strong {
  color: #0D1726 !important;
  text-shadow: none !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-proof-mobile,
html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-proof-mobile span {
  color: #0D1726 !important;
  text-shadow: none !important;
}

html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-offer-tile:has(.hero-offer-image) {
  width: 100% !important;
  border-radius: 18px !important;
}

html body:has(.home-intro) .hero-operators {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1244px);
  justify-self: center;
  align-items: center;
  gap: 0;
}

html body:has(.home-intro) .hero-operator {
  display: grid;
  min-width: 0;
  height: 62px;
  place-items: center;
}

html body:has(.home-intro) .hero-operator img {
  display: block;
  width: auto;
  max-width: 118px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

html body:has(.home-intro) .hero-operator:nth-child(3) img {
  max-width: 150px;
  max-height: 60px;
}

@media (max-width: 900px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    grid-template-columns: 1fr !important;
    padding: 96px 16px 40px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom,
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder,
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-information {
    grid-column: 1 !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
    grid-row: 2 !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-showcase {
    grid-row: 3 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body:has(.home-intro) .hero-operators {
    grid-row: 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-information {
    grid-row: 5 !important;
  }
}

@media (max-width: 520px) {
  html body:has(.home-intro) .hero-finder {
    gap: 18px;
    padding: 22px 18px;
  }

  html body:has(.home-intro) .hero-finder__title {
    font-size: 28px;
  }

  html body:has(.home-intro) .hero-finder__option span {
    min-height: 42px;
    padding-inline: 6px;
    font-size: 14px;
  }
}

/* Final desktop placement overrides must follow the legacy homepage cascade. */
@media (min-width: 901px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto !important;
    column-gap: 18px !important;
    row-gap: 0 !important;
    min-height: calc(100svh - 64px + clamp(120px, 13vw, 200px)) !important;
    padding: 58px max(24px, calc((100vw - 1504px) / 2)) 0 !important;
    background: #f4f6f8 !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom,
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
    min-width: 0 !important;
    height: 380px !important;
    width: auto !important;
    max-width: none !important;
    min-height: 380px !important;
    max-height: 380px !important;
    margin: 0 !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: block !important;
    align-self: stretch !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: stretch !important;
  }

  html body:has(.home-intro) .hero-ai-guide {
    width: 100% !important;
    padding: 20px 28px !important;
  }

  html body:has(.home-intro) .hero-ai-guide h1 {
    font-size: clamp(40px, 3.25vw, 54px) !important;
  }

  html body:has(.home-intro) .hero-ai-guide__intro {
    margin: 5px 0 10px !important;
  }

  html body:has(.home-intro) .hero-ai-guide__composer {
    min-height: 94px !important;
  }

  html body:has(.home-intro) .hero-ai-guide__composer textarea {
    min-height: 48px !important;
    padding-top: 12px !important;
  }

  html body:has(.home-intro) .hero-ai-guide__composer-footer {
    min-height: 42px !important;
    padding-block: 3px 6px !important;
  }

  html body:has(.home-intro) .hero-ai-guide__composer-footer > button {
    width: 42px !important;
    height: 42px !important;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts {
    margin-top: 10px !important;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts button {
    min-height: 42px !important;
  }

  html body:has(.home-intro) .hero-finder {
    align-content: start !important;
    gap: 8px !important;
    padding: 16px 24px !important;
  }

  html body:has(.home-intro) .hero-finder__title {
    font-size: clamp(29px, 2.15vw, 35px) !important;
  }

  html body:has(.home-intro) .hero-finder__group {
    gap: 6px !important;
  }

  html body:has(.home-intro) .hero-finder__option span {
    min-height: 38px !important;
    padding-block: 6px !important;
  }

  html body:has(.home-intro) .hero-finder__submit {
    min-height: 48px !important;
    position: relative;
    top: -22px;
  }

  html body:has(.home-intro) .hero-finder__note {
    margin-top: -3px !important;
    font-size: 11px !important;
    position: relative;
    top: -22px;
  }

  html body:has(.home-intro) .hero-finder__options--data .hero-finder__option:nth-child(2) input:checked + span {
    border-color: #172535 !important;
    background: #172535 !important;
    box-shadow: 0 7px 16px rgba(13, 23, 38, .18) !important;
    color: #fff !important;
  }

  html body:has(.home-intro) .hero-operators {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    grid-template-columns: .9fr repeat(4, 1fr) !important;
    width: 100vw !important;
    height: 64px !important;
    margin: 18px calc(50% - 50vw) 0 !important;
    padding: 0 max(24px, calc((100vw - 1504px) / 2)) !important;
  }

  html body:has(.home-intro) .hero-operator:nth-child(4) img {
    transform: scale(1.55);
  }

  html body:has(.home-intro) .hero-value {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    min-height: 100px !important;
    padding-block: 10px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-information {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    grid-template-columns: 1.05fr 1fr !important;
    width: 100% !important;
    min-height: 92px !important;
    justify-self: stretch !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-showcase {
    grid-column: 1 / -1 !important;
    grid-row: 5 !important;
    width: min(100%, 1504px) !important;
    align-self: end !important;
    margin-top: 16px !important;
  }
}

@media (min-width: 901px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom,
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  html body:has(.home-intro) .hero-operators {
    border-block: 0 !important;
    background: transparent !important;
  }

  html body:has(.home-intro) .hero-operators > strong,
  html body:has(.home-intro) .hero-operator,
  html body:has(.home-intro) .hero-value__intro,
  html body:has(.home-intro) .hero-value__item {
    border: 0 !important;
  }
}

@media (min-width: 901px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    background: #fbf8f2 !important;
  }

  html body:has(.home-intro) .hero-ai-guide,
  html body:has(.home-intro) .hero-finder,
  html body:has(.home-intro) .hero-value {
    color: #071b32;
  }

  html body:has(.home-intro) .hero-ai-guide__eyebrow {
    color: #c86c36;
  }

  html body:has(.home-intro) .hero-ai-guide h1,
  html body:has(.home-intro) .hero-finder__title,
  html body:has(.home-intro) .hero-finder__group legend,
  html body:has(.home-intro) .hero-value__intro h2,
  html body:has(.home-intro) .hero-value__item h3 {
    color: #071b32 !important;
  }

  html body:has(.home-intro) .hero-ai-guide__intro,
  html body:has(.home-intro) .hero-value__intro p,
  html body:has(.home-intro) .hero-value__item p {
    color: #536477;
  }

  html body:has(.home-intro) .hero-ai-guide__composer {
    border-color: #ddd8cf;
    border-radius: 12px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 12px 34px rgba(58, 38, 20, .045);
  }

  html body:has(.home-intro) .hero-ai-guide__composer:focus-within {
    border-color: #c86c36;
    box-shadow: 0 0 0 3px rgba(200, 108, 54, .12), 0 12px 34px rgba(58, 38, 20, .05);
  }

  html body:has(.home-intro) .hero-ai-guide__composer textarea,
  html body:has(.home-intro) .hero-ai-guide__ask-label {
    color: #071b32;
  }

  html body:has(.home-intro) .hero-ai-guide__composer textarea::placeholder {
    color: #8290a2;
  }

  html body:has(.home-intro) .hero-ai-guide__ask-label i {
    background: transparent;
    color: #c86c36;
  }

  html body:has(.home-intro) .hero-ai-guide__composer-footer > button {
    border-radius: 50%;
    background: #082843;
    box-shadow: 0 8px 18px rgba(8, 40, 67, .16);
  }

  html body:has(.home-intro) .hero-ai-guide__composer-footer > button:hover,
  html body:has(.home-intro) .hero-ai-guide__composer-footer > button:focus-visible {
    background: #0d3659;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts {
    gap: 8px;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts button {
    justify-content: flex-start;
    min-height: 38px !important;
    padding-inline: 10px;
    border-color: transparent;
    border-radius: 8px;
    background: transparent;
    color: #071b32;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts button:hover,
  html body:has(.home-intro) .hero-ai-guide__prompts button:focus-visible {
    border-color: transparent;
    background: rgba(200, 108, 54, .08);
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
    background: rgba(246, 241, 233, .82) !important;
    box-shadow: 0 16px 42px rgba(58, 38, 20, .06) !important;
  }

  html body:has(.home-intro) .hero-finder__option span {
    border-color: #ded9d0;
    background: rgba(255, 255, 255, .7);
    color: #071b32;
  }

  html body:has(.home-intro) .hero-finder__option:hover span {
    border-color: #c99472;
  }

  html body:has(.home-intro) .hero-finder__option input:focus-visible + span {
    outline-color: rgba(200, 108, 54, .28);
  }

  html body:has(.home-intro) .hero-finder__option input:checked + span,
  html body:has(.home-intro) .hero-finder__options--data .hero-finder__option:nth-child(2) input:checked + span {
    border-color: #cf7742 !important;
    background: #fffaf5 !important;
    box-shadow: 0 5px 14px rgba(200, 108, 54, .08) !important;
    color: #071b32 !important;
  }

  html body:has(.home-intro) .hero-finder__group--type .hero-finder__option input:checked + span {
    border-color: #082843 !important;
    background: #082843 !important;
    box-shadow: 0 8px 18px rgba(8, 40, 67, .16) !important;
    color: #fff !important;
  }

  html body:has(.home-intro) .hero-finder__submit {
    background: linear-gradient(110deg, #c46a34, #d7844f) !important;
    box-shadow: 0 10px 22px rgba(196, 106, 52, .17);
  }

  html body:has(.home-intro) .hero-finder__submit:hover,
  html body:has(.home-intro) .hero-finder__submit:focus-visible {
    background: linear-gradient(110deg, #b95f2d, #ce7844) !important;
  }

  html body:has(.home-intro) .hero-finder__note {
    color: #6f7d8d;
  }

  html body:has(.home-intro) .hero-operators {
    color: #071b32;
  }

  html body:has(.home-intro) .hero-value__item > i {
    background: transparent;
    color: #bd6936;
  }

  html body:has(.home-intro) .hero .hero-offer-tile:has(.hero-offer-image) {
    border-radius: 12px !important;
  }
}

@media (min-width: 901px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    position: relative !important;
    isolation: isolate;
    --hero-divider-span: clamp(64px, 7vw, 110px);
    grid-template-columns: minmax(0, 1.42fr) minmax(400px, .98fr) !important;
    grid-template-rows: auto auto minmax(0, 1fr) auto !important;
    column-gap: var(--hero-divider-span) !important;
    min-height: calc(100svh - 136px + clamp(120px, 13vw, 200px)) !important;
    padding: 44px max(24px, calc((100vw - 1500px) / 2)) 0 max(170px, calc((100vw - 1500px) / 2 + 160px)) !important;
    overflow: hidden !important;
    background: #fbf8f2 !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero)::before {
    content: "" !important;
    position: absolute;
    top: -34px;
    bottom: auto;
    left: -145px;
    z-index: 0;
    display: block !important;
    width: 520px;
    height: 780px;
    background: url("../images/hero-orange-glass.png") left center / contain no-repeat !important;
    opacity: .94;
    pointer-events: none;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero)::after {
    content: none !important;
    display: none !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) > * {
    position: relative;
    z-index: 1;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom,
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
    height: clamp(400px, 46svh, 440px) !important;
    min-height: clamp(400px, 46svh, 440px) !important;
    max-height: clamp(400px, 46svh, 440px) !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom {
    width: 100% !important;
    min-width: 0 !important;
    justify-self: stretch !important;
  }

  html body:has(.home-intro) .hero-ai-guide {
    padding: 12px 0 0 !important;
  }

  html body:has(.home-intro) .hero-ai-guide__eyebrow {
    margin-bottom: 8px;
    color: #536477;
    font-size: 11px;
    letter-spacing: .16em;
  }

  html body:has(.home-intro) .hero-ai-guide h1 {
    font-size: clamp(43px, 3.7vw, 64px) !important;
    line-height: .92 !important;
  }

  html body:has(.home-intro) .hero-ai-guide__intro {
    margin: 7px 0 13px !important;
  }

  html body:has(.home-intro) .hero-ai-guide__composer {
    min-height: 96px !important;
    border-color: #d8d7d3;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 28px rgba(49, 34, 21, .045);
  }

  html body:has(.home-intro) .hero-ai-guide__composer textarea {
    min-height: 50px !important;
    color: #071b32;
  }

  html body:has(.home-intro) .hero-ai-guide__composer-footer {
    border-top: 1px solid rgba(7, 27, 50, .08);
  }

  html body:has(.home-intro) .hero-ai-guide__composer-footer > button {
    background: #c96d34;
  }

  html body:has(.home-intro) .hero-ai-guide__composer-footer > button:hover,
  html body:has(.home-intro) .hero-ai-guide__composer-footer > button:focus-visible {
    background: #b95d29;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts {
    margin-top: 10px !important;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts button {
    min-height: 38px !important;
    padding-inline: 12px;
    border-color: rgba(7, 27, 50, .14);
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 4px 12px rgba(28, 35, 43, .035);
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  }

  html body:has(.home-intro) .hero-ai-guide__prompts button:hover,
  html body:has(.home-intro) .hero-ai-guide__prompts button:focus-visible {
    border-color: rgba(194, 104, 48, .42);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 6px 16px rgba(28, 35, 43, .06);
    transform: translateY(-1px);
  }

  html body:has(.home-intro) .hero-ai-guide__prompts button i {
    color: #b96431;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
    position: relative !important;
    display: grid !important;
    align-content: start !important;
    gap: 5px !important;
    padding: 0 0 0 34px !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder::before {
    content: "";
    position: absolute;
    top: -24px;
    right: 0;
    bottom: -24px;
    left: calc(-1 * var(--hero-divider-span) + 8px);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 506' preserveAspectRatio='none'%3E%3Cpath d='M-4 -20 C110 10 60 380 110 526' fill='none' stroke='%23aaa7a2' stroke-opacity='.72' stroke-width='1.4'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 11%, #000 89%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 11%, #000 89%, transparent 100%);
    transform: translateX(-22px);
    pointer-events: none;
  }

  html body:has(.home-intro) .hero-finder__title {
    margin: 0 0 3px;
    font-size: clamp(30px, 2.45vw, 42px) !important;
  }

  html body:has(.home-intro) .hero-finder__group:not(.hero-finder__group--type) {
    gap: 3px !important;
  }

  html body:has(.home-intro) .hero-finder__option span {
    min-height: 40px !important;
    padding-block: 7px !important;
    border-color: #cbd1d7;
    border-radius: 7px;
    background: rgba(255, 255, 255, .74);
  }

  html body:has(.home-intro) .hero-finder__option input:checked + span,
  html body:has(.home-intro) .hero-finder__options--data .hero-finder__option:nth-child(2) input:checked + span {
    border-color: #082843 !important;
    background: #082843 !important;
    box-shadow: 0 8px 18px rgba(8, 40, 67, .16) !important;
    color: #fff !important;
  }

  html body:has(.home-intro) .hero-finder__submit {
    position: static;
    top: auto;
    min-height: 46px !important;
    margin-top: 1px;
    border-radius: 7px;
  }

  html body:has(.home-intro) .hero-finder__note {
    position: static;
    top: auto;
    margin: -2px 0 0 !important;
  }

  html body:has(.home-intro) .hero-finder .hero-operators {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 34px !important;
    display: grid !important;
    grid-column: auto !important;
    grid-row: auto !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: calc(100% - 34px) !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  html body:has(.home-intro) .hero-finder .hero-operators > strong {
    display: none !important;
  }

  html body:has(.home-intro) .hero-finder .hero-operator {
    height: 34px !important;
    border: 0 !important;
    border-right: 1px solid #cbd0d4 !important;
  }

  html body:has(.home-intro) .hero-finder .hero-operator:last-child {
    border-right: 0 !important;
  }

  html body:has(.home-intro) .hero-finder .hero-operator img {
    max-width: 78px;
    max-height: 28px;
  }

  html body:has(.home-intro) .hero-finder .hero-operator:nth-child(3) img {
    max-width: 92px;
    max-height: 34px;
  }

  html body:has(.home-intro) .hero-finder .hero-operator:nth-child(4) img {
    transform: scale(1.2);
  }

  html body:has(.home-intro) .hero-value {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    width: 100vw !important;
    min-height: 116px !important;
    margin: 12px 0 0 calc(-1 * max(170px, calc((100vw - 1500px) / 2 + 160px))) !important;
    padding: 13px max(56px, calc((100vw - 1500px) / 2)) !important;
    background: rgba(255, 255, 255, .54);
  }

  html body:has(.home-intro) .hero-value__intro {
    padding-left: 0;
  }

  html body:has(.home-intro) .hero-value__intro h2 {
    font-size: clamp(28px, 2.5vw, 40px);
  }

  html body:has(.home-intro) .hero-value__item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding-inline: 14px;
  }

  html body:has(.home-intro) .hero-value__item > i {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(194, 104, 48, .3);
    background: transparent;
    color: #c26830;
  }

  html body:has(.home-intro) .hero-value__item h3 {
    margin-block: 3px 5px;
    font-size: 14px;
  }

  html body:has(.home-intro) .hero-value__item p {
    font-size: 12.5px;
    line-height: 1.34;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-information {
    position: relative !important;
    top: 0 !important;
    right: auto !important;
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    display: grid !important;
    grid-template-columns: minmax(440px, .95fr) minmax(0, 1.05fr) !important;
    width: 100vw !important;
    min-height: 70px !important;
    height: 70px !important;
    margin: 0 0 0 calc(-1 * max(170px, calc((100vw - 1500px) / 2 + 160px))) !important;
    justify-self: start !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(95deg, #bc5e25, #e59355) !important;
    box-shadow: none !important;
    color: #071b32 !important;
  }

  html body:has(.home-intro) .hero-information__header {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    padding: 10px max(56px, calc((100vw - 1500px) / 2)) !important;
  }

  html body:has(.home-intro) .hero-information__eyebrow,
  html body:has(.home-intro) .hero-information__intro {
    display: none !important;
  }

  html body:has(.home-intro) .hero-information__controls {
    display: flex !important;
    grid-column: 1 / -1;
    justify-content: center;
    padding: 0 16px 10px;
    background: transparent;
  }

  html body:has(.home-intro) .hero-information__page {
    background: #fff;
  }

  html body:has(.home-intro) .hero-information__page.is-active {
    background: #f59e0b;
  }

  html body:has(.home-intro) .hero-information__title {
    margin: 0 !important;
    color: #07111d !important;
    font-size: clamp(28px, 2.75vw, 43px) !important;
    line-height: 1 !important;
    white-space: nowrap;
  }

  html body:has(.home-intro) .hero-information__title span {
    margin-left: 12px;
    color: #07111d;
    font-size: .62em;
    font-weight: 500;
    letter-spacing: -.025em;
  }

  html body:has(.home-intro) .hero-information__list {
    display: block !important;
    min-width: 0;
    height: auto !important;
    padding: 10px max(56px, calc((100vw - 1500px) / 2)) 10px 12px !important;
    overflow: hidden !important;
  }

  html body:has(.home-intro) .hero-information__item {
    display: none !important;
  }

  html body:has(.home-intro) .hero-information__item:first-child {
    position: relative;
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    padding: 15px 62px 15px 18px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #657487 !important;
  }

  html body:has(.home-intro) .hero-information__item:first-child .hero-information__text {
    display: block !important;
    max-width: none;
    overflow: hidden !important;
    color: inherit !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  html body:has(.home-intro) .hero-information__item:first-child .hero-information__arrow {
    position: absolute;
    top: 5px;
    right: 5px;
    display: grid !important;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #082843;
    color: #fff;
    font-size: 19px;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-showcase {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    width: calc(100vw - 48px) !important;
    margin: 12px 0 0 calc(24px - max(170px, calc((100vw - 1500px) / 2 + 160px))) !important;
    align-self: start !important;
    justify-self: start !important;
  }
}

@media (min-width: 901px) {
  html body:has(.home-intro) .snabbval-section .hero-information {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    display: grid !important;
    grid-template-columns: minmax(440px, .95fr) minmax(0, 1.05fr) !important;
    width: 100% !important;
    min-height: 70px !important;
    height: auto !important;
    margin: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(95deg, #bc5e25, #e59355) !important;
    box-shadow: none !important;
    color: #071b32 !important;
  }
}

@media (min-width: 1500px) {
  html body:has(.home-intro) .hero:not(.quiz-in-hero) {
    min-height: calc(100svh + 69px) !important;
    padding-top: 74px !important;
  }

  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-bottom,
  html body:has(.home-intro) .hero:not(.quiz-in-hero) .hero-finder {
    height: 474px !important;
    min-height: 474px !important;
    max-height: 474px !important;
  }

  html body:has(.home-intro) .hero-ai-guide__composer {
    flex: 0 0 190px;
  }
}

html body:has(.home-intro) .hero-finder__group--type {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 !important;
  border-bottom: 0;
}

html body:has(.home-intro) .hero-finder__group--type .hero-finder__option::after {
  position: absolute;
  bottom: 0;
  left: calc(50% - 16px);
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: #d36e27;
  content: "";
  transform: scaleX(0);
  transition: transform 260ms ease;
  pointer-events: none;
}

html body:has(.home-intro) .hero-finder__group--type .hero-finder__option:has(input:checked)::after {
  transform: scaleX(1);
}

html body:has(.home-intro) .hero-finder__group--type .hero-finder__option + .hero-finder__option::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 1px;
  background: #cbd1d7;
  content: "";
}

html body:has(.home-intro) .hero-finder__group--type .hero-finder__option > span {
  min-height: 44px !important;
  padding: 7px 6px 9px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #526071 !important;
  font-size: clamp(13px, 1.2vw, 16px);
}

html body:has(.home-intro) .hero-finder__group--type .hero-finder__option input:checked + span {
  background: transparent !important;
  box-shadow: none !important;
  color: #071b32 !important;
}

html body:has(.home-intro) .hero-finder__plan-label {
  position: relative;
}

html body:has(.home-intro) .hero-finder__label-window {
  display: grid;
  height: 1.2em;
  line-height: 1.2;
  overflow: hidden;
  font-style: normal;
}

html body:has(.home-intro) .hero-finder__plan-label em {
  grid-area: 1 / 1;
  font-style: normal;
  white-space: nowrap;
  transition: transform 280ms ease;
}

html body:has(.home-intro) .hero-finder__plan-label [data-finder-family-label] {
  transform: translateY(100%);
}

html body:has(.home-intro) .hero-finder__plan-label[data-family="true"] [data-finder-mobile-label] {
  transform: translateY(-100%);
}

html body:has(.home-intro) .hero-finder__plan-label[data-family="true"] [data-finder-family-label] {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html body:has(.home-intro) .hero-finder__group--type .hero-finder__option::after,
  html body:has(.home-intro) .hero-finder__plan-label em {
    transition: none;
  }
}

html body:has(.home-intro) .hero-finder__options--people {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

html body:has(.home-intro) .hero-finder__options--people[hidden] {
  display: none;
}

html body:has(.home-intro) .hero-finder__more {
  grid-column: 5;
  grid-row: 2;
  justify-self: center;
  margin: -1px 0 0;
  width: max-content;
  min-width: 0;
  height: auto;
  padding: 3px 5px;
  border: 1px solid #cbd1d7;
  border-top: 0;
  border-radius: 0 0 7px 7px;
  background: #f0efec;
  color: #071b32;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  transition: background-color 150ms ease, color 150ms ease;
  cursor: pointer;
}

html body:has(.home-intro) .hero-finder__options--people:has(> .hero-finder__more) {
  row-gap: 0;
}

html body:has(.home-intro) .hero-finder__options--people > .hero-finder__option,
html body:has(.home-intro) .hero-finder__options--people > .hero-finder__option > span {
  margin: 0;
}

html body:has(.home-intro) .hero-finder__more:hover {
  background: #e6e4df;
  color: #071b32;
}

html body:has(.home-intro) .hero-finder__more:focus-visible {
  outline: 2px solid #d36e27;
  outline-offset: 2px;
}

html body:has(.home-intro) .hero.hero .hero-showcase--editorial {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body:has(.home-intro) .hero.hero .hero-showcase--editorial .hero-offer-tile {
  --offer-accent: #7c2788;
  display: block !important;
  aspect-ratio: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100% !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid #deded8 !important;
  border-top: 3px solid var(--offer-accent) !important;
  border-radius: 18px !important;
  background: #fff !important;
  color: #132334 !important;
  text-align: left;
  box-shadow: 0 4px 18px #14253606 !important;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

html body:has(.home-intro) .hero.hero .hero-showcase--editorial .hero-offer-tile--group {
  --offer-accent: #202020;
}

html body:has(.home-intro) .hero.hero .hero-showcase--editorial .hero-offer-tile--duo {
  --offer-accent: #aa4f12;
}

html body:has(.home-intro) .hero.hero .hero-showcase--editorial .hero-offer-tile--single {
  --offer-accent: #005b89;
}

html body:has(.home-intro) .hero.hero .hero-showcase--editorial .hero-offer-tile:enabled:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px #14253612 !important;
}

html body:has(.home-intro) .hero.hero .hero-showcase--editorial .hero-offer-tile:focus-visible {
  outline: 3px solid var(--offer-accent) !important;
  outline-offset: 4px !important;
}

.hero-showcase--editorial .offer-content {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 150px 22px 22px;
  gap: 0;
  font-family: inherit;
  white-space: normal;
}

.offer-content__brand {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 40px;
  margin-bottom: 20px;
}

.offer-content__summary {
  order: 1;
  display: block;
}

.offer-content__watermark {
  position: absolute;
  inset: 0 0 auto;
  height: 160px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .65) 30%, rgba(0, 0, 0, .12) 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .65) 30%, rgba(0, 0, 0, .12) 70%, transparent 100%);
}

.offer-content__watermark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  mix-blend-mode: multiply;
}

.offer-content__package {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 62px;
}

.offer-content__heading {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.offer-content__description {
  font-size: 13px;
  line-height: 1.5;
  color: #52606c;
}

.offer-content__pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 18px 0;
  padding: 16px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--offer-accent) 16%, white);
}

.offer-content__price-label {
  color: #52606c;
  font-size: 11px;
  line-height: 1.4;
}

.offer-content__price {
  display: block;
  white-space: nowrap;
  line-height: 1.2;
}

.offer-content__price > span:first-child {
  font-size: clamp(30px, 2.8vw, 39px);
  font-weight: 750;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}

.offer-content__price > span:last-child {
  color: #52606c;
  font-size: 13px;
  font-weight: 500;
}

.offer-content__per-person {
  color: var(--offer-accent);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.offer-content__features {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 72px;
  font-size: 12px;
  line-height: 1.4;
}

.offer-content__features > span {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.offer-content__features i {
  color: var(--offer-accent);
  font-size: 10px;
}

.offer-content__benefit {
  order: 4;
  margin: 12px 0 18px;
  font-size: 11px;
  line-height: 1.4;
  color: #66717a;
}

.offer-content__reward {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  gap: 6px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--offer-accent) 14%, white);
  border-radius: 12px;
  background: color-mix(in srgb, var(--offer-accent) 6%, white);
  color: var(--offer-accent);
  text-align: left;
}

.offer-content__amount {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 750;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.offer-content__reward-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.offer-content__footer {
  order: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 14px;
  margin-top: auto;
  border-radius: 12px;
  background: var(--offer-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.hero-offer-tile:disabled .offer-content__footer {
  background: #e9ecec;
  color: #66717a;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .hero-showcase--editorial .offer-content { padding: 130px 16px 16px; }
  .offer-content__watermark { height: 140px; }
}

@media (max-width: 900px) {
  html body:has(.home-intro) .hero.hero .hero-showcase--editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .hero-showcase--editorial .offer-content { padding: 110px 12px 12px; }
  .offer-content__watermark { height: 120px; }
  .offer-content__heading { font-size: 20px; }
  .offer-content__description { font-size: 12px; }
  .offer-content__package { min-height: 66px; }
  .offer-content__reward { padding: 10px; flex-wrap: wrap; }
  .offer-content__amount { font-size: 18px; }
  .offer-content__brand { margin-bottom: 16px; }
  .offer-content__price > span:first-child { font-size: 26px; }
  .offer-content__price > span:last-child { font-size: 11px; }
  .offer-content__footer { padding: 12px 9px; font-size: 11px; }
}

@media (max-width: 360px) {
  html body:has(.home-intro) .hero.hero .hero-showcase--editorial {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body:has(.home-intro) .hero.hero .hero-showcase--editorial .hero-offer-tile {
    transition: none;
  }
}

html body:has(.home-intro) .gift-card-section {
  padding: clamp(100px, 10vw, 160px) 24px;
  background: #faf7f2 url("../images/gift-amber-ribbons.jpg") center / cover no-repeat !important;
  color: var(--home-ink) !important;
}

html body:has(.home-intro) .gift-card-section .page-shell {
  display: flex;
  justify-content: center;
  max-width: 1480px;
}

html body:has(.home-intro) .gift-card-content {
  width: 100%;
  max-width: 640px;
}

html body:has(.home-intro) .gift-card-copy {
  margin: 0 auto;
  text-align: center;
}

html body:has(.home-intro) .gift-card-copy .section-label {
  color: #a45128 !important;
}

html body:has(.home-intro) .gift-card-copy h2 {
  margin: 22px auto 24px;
  color: var(--home-ink) !important;
  font-size: clamp(42px, 4.6vw, 68px);
  text-wrap: balance;
}

html body:has(.home-intro) .gift-card-copy > p:last-child {
  max-width: 490px;
  margin: 0 auto;
  color: #59616a !important;
  text-wrap: balance;
}

html body:has(.home-intro) .gift-logo-grid {
  margin-top: 40px;
  border: 0;
  gap: 10px;
}

html body:has(.home-intro) .gift-logo {
  min-height: 70px;
  border: 1px solid #ded6cb !important;
  border-radius: 8px;
  background: rgba(255, 253, 249, .92);
  box-shadow: 0 4px 16px #613d1205;
  color: var(--home-ink) !important;
}

html body:has(.home-intro) .gift-logo span {
  color: var(--home-ink);
}
