/* Airbnb Host Care landing — brand-aligned, distinctive layout */

.airbnb-page {
  overflow-x: clip;
}

/* Keep fixed mobile nav above page layers; dropdown must not sit under hero */
.airbnb-page .navbar {
  z-index: 1000;
}

.airbnb-page .nav-links {
  z-index: 1001;
}

.airbnb-hero {
  position: relative;
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(196, 163, 90, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(90, 140, 160, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 70%);
  overflow: hidden;
}

.airbnb-hero-glow {
  position: absolute;
  inset: auto auto -20% -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.16), transparent 70%);
  pointer-events: none;
  animation: airbnb-drift 14s ease-in-out infinite alternate;
}

.airbnb-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
  pointer-events: none;
}

.airbnb-hero-inner {
  position: relative;
  z-index: 1;
}

.airbnb-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  letter-spacing: 0.03em;
  line-height: 1.12;
  max-width: 16ch;
  margin-bottom: 18px;
}

.airbnb-eyebrow {
  color: #d4b56a;
}

.airbnb-partner-callout {
  max-width: 40rem;
  margin: 0 0 22px;
  padding: 16px 18px 16px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 163, 90, 0.4);
  border-left: 3px solid var(--accent);
  background:
    linear-gradient(120deg, rgba(196, 163, 90, 0.14), rgba(196, 163, 90, 0.04) 55%, transparent),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.airbnb-partner-label {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #e4c98a;
}

.airbnb-partner-line {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

.airbnb-partner-callout--teaser {
  margin: 0 0 18px;
  max-width: none;
}

.airbnb-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 28px 0 14px;
  padding: 0;
}

.airbnb-pill {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.airbnb-pill:hover {
  border-color: rgba(196, 163, 90, 0.55);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.airbnb-pill.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(196, 163, 90, 0.12);
}

.airbnb-highlight-copy {
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  min-height: 3.2em;
  transition: opacity 0.25s ease;
}

.airbnb-highlight-copy.is-swap {
  opacity: 0;
}

.airbnb-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.airbnb-step {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.02);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s ease;
  transition-delay: calc(var(--step-i, 0) * 90ms);
}

.airbnb-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.airbnb-step:hover {
  border-color: rgba(196, 163, 90, 0.45);
}

.airbnb-step-num {
  display: block;
  font-family: var(--font-brand);
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.airbnb-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.airbnb-step p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.airbnb-plans {
  background: var(--bg-secondary);
}

/* Same card system as homepage Home Check / TV Mount / LED — 2×2 for 4 plans */
.airbnb-plans-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.airbnb-plan-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.airbnb-rollover-note,
.airbnb-billing-note {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 14px 18px;
  border: 1px dashed rgba(196, 163, 90, 0.35);
  border-radius: var(--radius);
  background: rgba(196, 163, 90, 0.06);
}

.airbnb-rollover-note strong {
  color: var(--accent);
}

.airbnb-compare {
  background: var(--bg-primary);
}

.airbnb-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.airbnb-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.92rem;
}

.airbnb-compare-table th,
.airbnb-compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}

.airbnb-compare-table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
}

.airbnb-compare-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.airbnb-compare-table .is-featured-col {
  background: rgba(196, 163, 90, 0.08);
}

.airbnb-compare-pop {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body, inherit);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.airbnb-excluded {
  background: var(--bg-secondary);
}

.airbnb-excluded-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.airbnb-excluded-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.airbnb-excluded-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-size: 0.95rem;
}

.airbnb-excluded-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: 0;
  color: #b85c4a;
  font-weight: 700;
}

.airbnb-coordinate-note {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.98rem;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(196, 163, 90, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.airbnb-excluded-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  background:
    linear-gradient(160deg, rgba(196, 163, 90, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.02);
}

.airbnb-excluded-aside h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.airbnb-excluded-aside ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.airbnb-excluded-aside li + li {
  margin-top: 10px;
}

.airbnb-emergency-board {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.airbnb-emergency-copy,
.airbnb-emergency-fees {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.02);
}

.airbnb-emergency-price {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.airbnb-emergency-price strong {
  color: var(--accent);
  font-size: 1.45rem;
}

.airbnb-emergency-copy ul {
  margin: 8px 0 18px;
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.airbnb-emergency-note {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.airbnb-emergency-fees h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.airbnb-emergency-fees table {
  width: 100%;
  border-collapse: collapse;
}

.airbnb-emergency-fees th,
.airbnb-emergency-fees td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.airbnb-emergency-fees th {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.airbnb-emergency-fees .is-featured-row {
  background: rgba(196, 163, 90, 0.1);
}

.airbnb-emergency-fees .is-featured-row td {
  color: var(--text-primary);
  font-weight: 600;
}

.airbnb-guest-ready {
  background: var(--bg-secondary);
}

.airbnb-guest-ready-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.airbnb-guest-ready-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 22px;
}

.airbnb-guest-ready-list {
  list-style: none;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 10px;
}

.airbnb-guest-ready-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.airbnb-guest-ready-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.airbnb-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.airbnb-promise-card {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(196, 163, 90, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.airbnb-promise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 163, 90, 0.4);
}

.airbnb-promise-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.airbnb-promise-card p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.airbnb-faq-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.airbnb-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 4px 18px;
}

.airbnb-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  color: var(--text-primary);
}

.airbnb-faq-item summary::-webkit-details-marker {
  display: none;
}

.airbnb-faq-item summary::after {
  content: '+';
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.airbnb-faq-item[open] summary::after {
  content: '–';
}

.airbnb-faq-item p {
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 0 16px;
  margin: 0;
}

.airbnb-cta {
  background:
    radial-gradient(ellipse at center, rgba(196, 163, 90, 0.14), transparent 60%),
    var(--bg-secondary);
}

/* Homepage teaser */
.airbnb-teaser {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(90, 140, 160, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 80%, rgba(196, 163, 90, 0.12), transparent 50%),
    var(--bg-secondary);
}

.airbnb-teaser-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.airbnb-teaser-copy .section-title {
  margin-bottom: 14px;
}

.airbnb-teaser-points {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.airbnb-teaser-points li {
  color: var(--text-secondary);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.airbnb-teaser-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.18);
}

.airbnb-teaser-card {
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: rgba(10, 10, 15, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.airbnb-teaser-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.airbnb-teaser-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.airbnb-teaser-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.airbnb-teaser-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

@keyframes airbnb-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(40px, -30px); }
}

/* Tablet / narrow desktop — Airbnb page + homepage teaser stack only */
@media (max-width: 900px) {
  .airbnb-steps,
  .airbnb-promise-grid,
  .airbnb-teaser-inner,
  .airbnb-excluded-grid,
  .airbnb-emergency-board,
  .airbnb-guest-ready-inner,
  .airbnb-plans-grid {
    grid-template-columns: 1fr;
  }

  .airbnb-plans-grid {
    max-width: none;
  }

  .airbnb-excluded-list {
    grid-template-columns: 1fr;
  }

  .airbnb-hero h1 {
    max-width: none;
  }
}

/*
 * Phone layout — scoped to .airbnb-page only.
 * Does not change homepage, services, or other landings.
 */
@media (max-width: 768px) {
  /* Keep space under fixed navbar (was accidentally zeroed and covered hero text) */
  .airbnb-page .landing-main.airbnb-main {
    padding-top: 112px;
  }

  .airbnb-page .airbnb-hero {
    padding: 12px 0 22px;
  }

  .airbnb-page .airbnb-hero-glow {
    width: 260px;
    height: 260px;
    inset: auto auto -30% -25%;
    animation: none;
  }

  .airbnb-page .airbnb-hero h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
    letter-spacing: 0.02em;
    line-height: 1.18;
    word-break: break-word;
    max-width: none;
  }

  .airbnb-page .airbnb-partner-callout {
    padding: 14px 14px 14px 16px;
    margin-bottom: 18px;
  }

  .airbnb-page .airbnb-partner-label {
    font-size: 1.02rem;
  }

  .airbnb-page .airbnb-partner-line {
    font-size: 0.92rem;
  }

  .airbnb-page .landing-lead {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .airbnb-page .landing-hero-actions,
  .airbnb-page .landing-cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .airbnb-page .landing-hero-actions .btn,
  .airbnb-page .landing-cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .airbnb-page .airbnb-hero-pills {
    margin: 20px 0 12px;
    gap: 8px;
  }

  .airbnb-page .airbnb-hero-pills li {
    flex: 1 1 auto;
    min-width: calc(50% - 8px);
  }

  .airbnb-page .airbnb-pill {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .airbnb-page .airbnb-highlight-copy {
    min-height: 0;
    font-size: 0.92rem;
  }

  .airbnb-page .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .airbnb-page .section-title {
    font-size: clamp(1.35rem, 6.2vw, 1.75rem);
    word-break: break-word;
  }

  .airbnb-page .section-desc {
    font-size: 0.95rem;
  }

  .airbnb-page .airbnb-step {
    padding: 20px 18px;
  }

  .airbnb-page .airbnb-rollover-note,
  .airbnb-page .airbnb-billing-note {
    margin-top: 20px;
    padding: 12px 14px;
    font-size: 0.9rem;
    text-align: left;
  }

  .airbnb-page .airbnb-plans-grid {
    gap: 16px;
  }

  .airbnb-page .airbnb-plan-card {
    padding: 22px 18px;
  }

  .airbnb-page .airbnb-plan-card.is-featured:hover,
  .airbnb-page .airbnb-plan-card:hover {
    transform: none;
  }

  .airbnb-page .home-check-price-amount {
    font-size: 1.5rem;
  }

  .airbnb-page .home-check-list li {
    font-size: 0.88rem;
    padding: 7px 0 7px 20px;
  }

  .airbnb-page .airbnb-compare-wrap {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin-inline: -4px;
    padding-bottom: 2px;
  }

  .airbnb-page .airbnb-compare-wrap::before {
    content: 'Swipe table →';
    display: block;
    padding: 10px 14px 0;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .airbnb-page .airbnb-compare-table {
    min-width: 640px;
    font-size: 0.82rem;
  }

  .airbnb-page .airbnb-compare-table th,
  .airbnb-page .airbnb-compare-table td {
    padding: 10px 12px;
  }

  .airbnb-page .airbnb-compare-table tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--bg-secondary, #141416);
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.25);
  }

  .airbnb-page .airbnb-excluded-aside,
  .airbnb-page .airbnb-emergency-copy,
  .airbnb-page .airbnb-emergency-fees,
  .airbnb-page .airbnb-guest-ready-list,
  .airbnb-page .airbnb-promise-card {
    padding: 20px 18px;
  }

  .airbnb-page .airbnb-coordinate-note {
    padding: 14px 14px;
    font-size: 0.92rem;
  }

  .airbnb-page .airbnb-guest-ready .btn {
    width: 100%;
    text-align: center;
  }

  .airbnb-page .airbnb-emergency-copy .btn {
    width: 100%;
    text-align: center;
  }

  .airbnb-page .airbnb-faq-list {
    max-width: none;
  }

  .airbnb-page .airbnb-faq-item {
    padding: 2px 14px;
  }

  .airbnb-page .airbnb-faq-item summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .airbnb-page .airbnb-faq-item summary::after {
    float: none;
    flex: 0 0 auto;
    margin-top: 1px;
  }

  .airbnb-page .landing-cta-inner h2 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    word-break: break-word;
  }
}

@media (max-width: 400px) {
  .airbnb-page .airbnb-hero-pills li {
    min-width: 100%;
  }

  .airbnb-page .airbnb-plan-card {
    padding: 18px 14px;
  }

  .airbnb-page .home-check-badge {
    top: 12px;
    right: 12px;
    font-size: 0.62rem;
    padding: 3px 8px;
  }
}
