:root {
  --left-bg: #f1f2f2;
  --right-bg: #ffffff;
  --soft-bg: #f1f2f2;

  --text-primary: #000000;
  --text-secondary: #495059;
  --haven-blue: #0a4e6c;
  --online-green: #6aa84f;

  --ai-bubble: #ffffff;
  --user-bubble: #0a4e6c;

  --essential: #0a4e6c;
  --essential-oop: #85a7b6;
  --balanced: #495059;
  --balanced-oop: #a4a8ac;
  --secure: #497c92;
  --secure-oop: #a4bdc9;

  --typical-active: #a99bb3;
  --typical-border: #75747e;
  --typical-inactive: #e1dce4;

  --quiet-active: #8e8960;
  --quiet-border: #393726;
  --quiet-inactive: #c6c4af;

  --severe-active: #ec643c;
  --severe-border: #722607;
  --severe-inactive: #f6b29e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background: var(--left-bg);
  color: var(--text-primary);
}

.app-shell {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  height: 100vh;
  gap: 18px;
  padding: 18px;
}

.chat-panel,
.workspace-panel {
  border-radius: 28px;
  padding: 24px;
  overflow: hidden;
}

.chat-panel {
  background: var(--left-bg);
  display: flex;
  flex-direction: column;
}

.workspace-panel {
  background: var(--right-bg);
  overflow-y: auto;
  min-height: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.1;
}

.workspace-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.step-label {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.workspace-header h2 {
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1.1;
  color: var(--text-primary);
}

.selected-plan-badge {
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--soft-bg);
  color: var(--haven-blue);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

/* Chat / branding */

.brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.brand-header h1 {
  font-size: 20px;
  margin: 0 0 2px;
}

.online-status {
  margin: 0;
  color: var(--online-green);
  font-size: 14px;
  font-weight: 600;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.messages {
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
  scroll-behavior: smooth;
  margin-top: 16px;
}

.message-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0;
}

.message-row.user {
  justify-content: flex-end;
  margin-top: 6px;
}

.message-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 8px;
}

.message {
  max-width: 78%;
  padding: 14px 16px;
  border-radius: 12px;
  line-height: 1.35;
  font-size: 16px;
}

.message.assistant {
  background: var(--ai-bubble);
  color: var(--text-primary);
}

.message.user {
  background: var(--user-bubble);
  color: white;
  text-align: left;
  max-width: 65%;
}

.transcript-footer {
  margin-top: 16px;
  color: #6c7378;
  font-size: 14px;
  font-weight: 600;
}

/* Scenario controls */

.scenario-tabs {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.scenario-tab {
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 800;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-primary);
  border: 2px solid transparent;
}

.scenario-tab[data-scenario="typical"] {
  background: var(--typical-inactive);
  border-color: var(--typical-inactive);
}

.scenario-tab[data-scenario="quiet"] {
  background: var(--quiet-inactive);
  border-color: var(--quiet-inactive);
}

.scenario-tab[data-scenario="severe"] {
  background: var(--severe-inactive);
  border-color: var(--severe-inactive);
}

.scenario-tab.active[data-scenario="typical"] {
  background: var(--typical-active);
  border-color: var(--typical-border);
}

.scenario-tab.active[data-scenario="quiet"] {
  background: var(--quiet-active);
  border-color: var(--quiet-border);
}

.scenario-tab.active[data-scenario="severe"] {
  background: var(--severe-active);
  border-color: var(--severe-border);
}

.scenario-tab.active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
  font-weight: 800;
  border: 3px solid;
}

/* Claim card */

.claim-card {
  padding: 10px 22px 8px;
  border-radius: 20px;
  background: var(--soft-bg);
  margin-bottom: 14px;
  text-align: center;
}

.claim-label {
  text-align: left;
  margin: 0 0 4px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.claim-value {
  font-size: 34px;
  font-weight: 900;
  color: var(--haven-blue);
  margin: 0 0 4px;
}

input[type="range"] {
  width: 100%;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  color: var(--haven-blue);
  font-size: 12px;
  font-weight: 800;
  margin-top: 6px;
}

/* Comparison table */

.comparison-table-wrap {
  margin-bottom: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 7px;
}

.comparison-table th {
  color: var(--haven-blue);
  font-size: 18px;
  padding: 0 18px 2px;
}

.comparison-table th:first-child {
  width: 24%;
}

.comparison-table td {
  background: var(--soft-bg);
  padding: 9px 16px;
  font-size: 15px;
}

.comparison-table td:first-child {
  border-radius: 8px 0 0 8px;
  color: var(--text-secondary);
  font-weight: 700;
}

.comparison-table td:last-child {
  border-radius: 0 8px 8px 0;
}

.comparison-table td:not(:first-child) {
  text-align: center;
  color: var(--haven-blue);
  font-size: 22px;
  font-weight: 900;
}

.total-row td {
  border-top: 2px dotted var(--haven-blue);
  border-bottom: 2px dotted var(--haven-blue);
}

.total-row td:first-child {
  border-left: 2px dotted var(--haven-blue);
}

.total-row td:last-child {
  border-right: 2px dotted var(--haven-blue);
}

/* Plan Emphasis */

.comparison-table td.focused-plan-cell {
  background: #5b8ba2 !important;
  color: white !important;
}

.focused-plan-row {
  background: #eef4f7;
  border-left: 5px solid #5b8ba2;
  border-radius: 8px;
  padding: 10px 12px;
}

.focused-plan-header {
  background: #5b8ba2;
  color: white;
  border-radius: 8px;
}

.comparison-table th.focused-plan-header {
  background: #5b8ba2;
  color: white !important;
  border-radius: 8px;
  padding: 8px 12px;
}

/* Breakdown bars */

.breakdown-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.breakdown-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breakdown-label-row {
  display: flex;
  justify-content: space-between;
  color: var(--haven-blue);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.bar-track {
  width: 100%;
}

.stacked-bar {
  height: 20px;
  display: flex;
  overflow: hidden;
  border-radius: 6px;
}

.bar-premium,
.bar-deductible {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  min-width: 24px;
}

.bar-premium.essential {
  background: var(--essential);
}

.bar-deductible.essential {
  background: var(--essential-oop);
}

.bar-premium.balanced {
  background: var(--balanced);
}

.bar-deductible.balanced {
  background: var(--balanced-oop);
}

.bar-premium.secure {
  background: var(--secure);
}

.bar-deductible.secure {
  background: var(--secure-oop);
}

.hidden {
  display: none;
}

/* CLaim Card */

.current-scenario-label {
  margin: 0 0 6px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

#currentScenarioTitle {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.hidden {
  display: none !important;
}

.entry-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 40px;
  background: #ffffff;
}

.entry-screen h1 {
  color: #0f5872;
  font-size: 28px;
  margin-bottom: 0;
}

.entry-screen p {
  max-width: 620px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}

.entry-screen label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
}

.entry-screen input {
  border: none;
  background: #eeeeee;
  padding: 6px 8px;
  font-size: 16px;
}

.entry-screen button {
  margin-top: 12px;
  background: #0f5872;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 210px 320px;
  gap: 8px;
  align-items: center;
}

.form-row label {
  text-align: right;
}

.form-row input {
  width: 100%;
  box-sizing: border-box;
}

.entry-screen .form-row {
  display: grid;
  grid-template-columns: 210px 320px;
  column-gap: 8px;
  align-items: center;
}

.entry-screen .form-row label {
  display: block;
  text-align: right;
}

.entry-screen .form-row input {
  width: 100%;
  box-sizing: border-box;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.end-call-button {
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.online-status.online {
  color: #16a34a;
}

.online-status.offline {
  color: #9ca3af;
}

.end-call-button:disabled {
  background: #9ca3af;
  cursor: default;
  opacity: 0.7;
}

/* Conversation Artifact */

.artifact-page {
  min-height: 100vh;
  background: var(--left-bg);
  padding: 28px;
  font-family: "Open Sans", sans-serif;
}

.artifact-container {
  max-width: 1180px;
  margin: 0 auto;
}

.artifact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.artifact-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.artifact-header h1 {
  font-size: 34px;
  color: var(--text-primary);
}

.artifact-status {
  border-radius: 999px;
  padding: 9px 14px;
  background: white;
  color: var(--haven-blue);
  font-size: 13px;
  font-weight: 800;
}

.artifact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.metric-card,
.artifact-card {
  background: white;
  border-radius: 24px;
  padding: 22px 24px;
}

.metric-card p,
.artifact-card h2 {
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card h2 {
  color: var(--haven-blue);
  font-size: 14px;
  font-weight: 800;
  margin: 8px 0 0;
}

.artifact-card {
  margin-bottom: 18px;
}

.artifact-card p,
.artifact-card pre {
  font-size: 16px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.transcript-card summary {
  cursor: pointer;
  color: var(--haven-blue);
  font-weight: 800;
}

.artifact-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.artifact-pill {
  display: inline-block;
  margin: 6px 8px 6px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft-bg);
  color: var(--haven-blue);
  font-size: 15px;
  font-weight: 700;
}

.artifact-metadata {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.artifact-metadata strong {
  color: var(--haven-blue);
}

/* Compliance Block */

.compliance-header-row {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  align-items: start;
}

.compliance-summary {
  margin-top: 8px;
  line-height: 1.45;
}

.compliance-result-card {
  background: var(--soft-bg);
  border-radius: 18px;
  padding: 18px;
}

.compliance-result-card p {
  margin: 0 0 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.compliance-result-card h3 {
  margin: 0;
  color: var(--haven-blue);
  font-size: 22px;
  font-weight: 900;
}

.compliance-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 24px;
}

.compliance-control-card,
.compliance-exception-card,
.compliance-action-card {
  background: var(--soft-bg);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.compliance-control-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.compliance-control-header strong,
.compliance-exception-card strong,
.compliance-action-card strong {
  color: var(--text-primary);
  text-transform: capitalize;
}

.compliance-status {
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  background: white;
  color: var(--haven-blue);
  white-space: nowrap;
}

.compliance-status.FAIL {
  color: #b91c1c;
}

.compliance-status.PASS_WITH_NOTES,
.compliance-status.NEEDS_REVIEW {
  color: #92400e;
}

.compliance-control-card p,
.compliance-exception-card p,
.compliance-action-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.35;
}

.artifact-card h2,
.metric-card p {
  margin-bottom: 14px;
}

.recommendation-metric-card {
  grid-column: span 1;
}

.metric-rationale {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-primary);
  font-weight: 400;
}

#selectedPlan {
  margin-bottom: 6px;
}

#selectedPlanReason {
  font-weight: 400;
}

#customerPriorities {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  white-space: normal;
}

#customerPriorities .artifact-pill {
  display: block;
  width: fit-content;
  margin: 0;
}

#objectionsOrConcerns > div {
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 10px !important;
}

.artifact-section-divider {
  display: none;
}

.compliance-review-card {
  background: var(--haven-blue);
  padding: 24px;
}

.compliance-intro {
  color: white;
  margin-bottom: 18px;
  text-align: left;
}

.compliance-intro h2 {
  color: white;
  margin: 0 0 4px;
  text-align: left;
}

.compliance-intro p {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.95;
  max-width: none;
  text-align: left;
  white-space: normal;
}

.compliance-inner-card {
  background: white;
  border-radius: 20px;
  padding: 22px 24px;
}

.compliance-header-row {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}

.compliance-summary {
  margin-top: 10px;
  line-height: 1.45;
}

.compliance-result-card {
  background: var(--soft-bg);
  border-radius: 18px;
  padding: 18px;
}

.compliance-result-card p {
  margin: 0 0 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.compliance-result-card h3 {
  margin: 0;
  color: var(--haven-blue);
  font-size: 22px;
  font-weight: 900;
}

.compliance-counts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}

.compliance-counts span {
  display: inline-block;
  background: white;
  color: var(--haven-blue);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
}

.compliance-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  margin-top: 28px;
}

.compliance-columns h2 {
  margin-bottom: 16px;
}

.compliance-control-card,
.compliance-exception-card,
.compliance-action-card {
  background: var(--soft-bg);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.compliance-control-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.compliance-control-header strong,
.compliance-exception-card strong,
.compliance-action-card strong {
  color: var(--text-primary);
  text-transform: capitalize;
}

.compliance-status {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.compliance-status.PASS {
  background: var(--haven-blue);
  color: white;
}

.compliance-status.PASS_WITH_NOTES {
  background: #a4bdc9;
  color: white;
}

.compliance-status.NEEDS_REVIEW {
  background: #f6b29e;
  color: #000000;
}

.compliance-status.FAIL {
  background: #ec643c;
  color: #000000;
}

.compliance-control-card p,
.compliance-exception-card p,
.compliance-action-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.35;
}

/* Artifact loading state */

.artifact-loading-card {
  max-width: 640px;
  margin: 120px auto 0;
  background: white;
  border-radius: 28px;
  padding: 36px;
  text-align: center;
}

.artifact-loading-card h1 {
  margin: 8px 0 12px;
  color: var(--text-primary);
}

.artifact-loading-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.45;
}

.artifact-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  border: 4px solid var(--soft-bg);
  border-top: 4px solid var(--haven-blue);
  border-radius: 50%;
  animation: artifactSpin 0.9s linear infinite;
}

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

/* Coverage Explorer Page */

.coverage-explorer-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 28px;
  align-items: start;
}

.coverage-left-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-snapshot-card {
  background: var(--soft-bg);
  border-radius: 28px;
  padding: 24px;
  color: var(--text-secondary);
}

.home-top-grid {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.home-full-width {
  width: 100%;
}

.coverage-label {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.home-address {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
}

.home-photo {
  width: 170px;
  height: 120px;
  object-fit: cover;
}

.coverage-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 500;
}

.coverage-checklist li::before {
  content: "✓";
  margin-right: 18px;
  font-weight: 800;
}

.coverage-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 50px;
}

.coverage-card-button {
  border: none;
  border-radius: 8px;
  background: var(--soft-bg);
  padding: 12px 28px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  color: var(--text-secondary);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.coverage-card-button strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.coverage-card-button span {
  display: block;
  margin-top: 3px;
  font-size: 18px;
  font-weight: 500;
}

.coverage-card-button.active {
  background: #4f879d;
  color: white;
  transform: translateX(16px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.coverage-detail-panel {
  background: #4f879d;
  color: white;
  border-radius: 28px;
  padding: 34px 46px;
  min-height: 560px;
}

.coverage-detail-kicker {
  margin: 0 0 42px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.coverage-detail-panel h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.coverage-detail-amount {
  margin: 0 0 34px;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 800;
}

.coverage-detail-description {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 400;
}

.coverage-detail-examples-title {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
}

.coverage-detail-examples {
  margin: 0;
  padding-left: 34px;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 400;
}

/* Responsive settings */

@media (max-height: 850px) {

  .workspace-header h2 {
    font-size: 28px;
  }

  .claim-value {
    font-size: 28px;
  }

  .scenario-tab {
    padding: 8px 18px;
  }

  .comparison-table td {
    padding: 6px 12px;
  }

  .comparison-table td:not(:first-child) {
    font-size: 18px;
  }

  .breakdown-label-row {
    font-size: 14px;
  }
}

@media (max-height: 850px) {
  .coverage-explorer-layout {
    gap: 22px;
  }

  .home-snapshot-card {
    padding: 18px;
    border-radius: 22px;
    grid-template-columns: 1fr 150px;
  }

  .home-photo {
    width: 150px;
    height: 100px;
  }

  .coverage-label {
    font-size: 15px;
  }

  .home-address {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .coverage-checklist {
    font-size: 16px;
    line-height: 1.18;
  }

  .coverage-checklist li::before {
    margin-right: 10px;
  }

  .coverage-card-list {
    gap: 8px;
    padding-left: 34px;
  }

  .coverage-card-button {
    padding: 9px 24px;
  }

  .coverage-card-button strong {
    font-size: 17px;
  }

  .coverage-card-button span {
    font-size: 15px;
  }

  .coverage-detail-panel {
    min-height: 0;
    padding: 28px 38px;
  }

  .coverage-detail-kicker {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .coverage-detail-panel h3,
  .coverage-detail-amount {
    font-size: 30px;
  }

  .coverage-detail-amount,
  .coverage-detail-description {
    margin-bottom: 26px;
  }

  .coverage-detail-description,
  .coverage-detail-examples-title {
    font-size: 22px;
  }

  .coverage-detail-examples {
    font-size: 21px;
  }
}

@media (max-width: 1800px) {
  .coverage-explorer-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
  }

  .home-snapshot-card {
    padding: 20px 24px;
  }

  .home-top-grid {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 18px;
    align-items: start;
    margin-bottom: 16px;
  }

  .home-photo {
    display: block;
    width: 180px;
    height: 110px;
    object-fit: cover;
    margin: 0;
  }

  .home-full-width {
    width: 100%;
  }

  .coverage-checklist {
    font-size: 17px;
    line-height: 1.25;
  }

  .coverage-checklist li {
    display: grid;
    grid-template-columns: 22px 1fr;
    column-gap: 8px;
    align-items: start;
  }

  .coverage-checklist li::before {
    margin-right: 0;
  }

  .coverage-label {
    font-size: 16px;
  }

  .home-address {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .coverage-detail-panel {
    padding: 28px 38px;
    min-height: 0;
  }

  .coverage-detail-kicker {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .coverage-detail-panel h3,
  .coverage-detail-amount {
    font-size: 26px;
  }

  .coverage-detail-description {
    font-size: 19px;
    line-height: 1.25;
    margin-bottom: 24px;
  }

  .coverage-detail-examples-title {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .coverage-detail-examples {
    font-size: 18px;
    line-height: 1.2;
  }
}

/* Ten second warning */

.call-ending-warning {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
}

.call-ending-content {
  background: #ec643c;
  color: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  min-width: 260px;
}

.call-ending-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.call-ending-text {
  font-size: 18px;
  font-weight: 700;
}

#countdownSeconds {
  font-size: 22px;
  font-weight: 900;
}