:root {
  --airbnb-blue: #0071e3;
  --airbnb-dark: #1d1d1f;
  --airbnb-grey: #6e6e73;
  --airbnb-font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
}

body.airbnb-page {
  font-family: var(--airbnb-font);
  background: #fff;
  color: var(--airbnb-dark);
}

.airbnb-container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.airbnb-hero { position: relative; padding: 100px 24px 64px; text-align: center; overflow: hidden; }
.airbnb-hero-glow {
  position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 560px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,113,227,0.10), transparent 60%),
    radial-gradient(circle at 70% 40%, rgba(255,56,92,0.06), transparent 55%);
}
.airbnb-hero .airbnb-container { position: relative; z-index: 1; }
.airbnb-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--airbnb-blue);
  text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 18px;
}
.airbnb-hero h1 {
  font-size: clamp(38px, 7vw, 68px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.06; margin: 0 auto 22px; max-width: 780px;
}
.airbnb-hero h1 span { color: var(--airbnb-grey); }
.airbnb-hero-sub {
  font-size: 18px; color: var(--airbnb-grey); line-height: 1.6;
  max-width: 560px; margin: 0 auto 36px;
}
.airbnb-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.airbnb-hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-top: 32px; font-size: 13px; color: var(--airbnb-grey);
}
.airbnb-hero-stars { color: #f5a623; font-size: 12px; letter-spacing: 2px; }
.airbnb-hero-trust-dot {
  width: 3px; height: 3px; border-radius: 50%; background: #d2d2d7; display: inline-block;
}

/* Feature grid, cards on white section background */
.airbnb-section { padding: 64px 24px; }
.airbnb-section-label { text-align: center; }
.airbnb-section h2 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 700;
  letter-spacing: -0.03em; text-align: center; margin: 0 auto 48px; max-width: 620px;
}

.airbnb-feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px;
}
.airbnb-feature-card {
  position: relative; background: #f5f5f7; border: 1px solid rgba(0,0,0,0.04);
  border-radius: 20px; padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.airbnb-feature-card:hover {
  transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.09);
  border-color: rgba(0,113,227,0.16);
}
.airbnb-feature-card:hover i { transform: scale(1.08); }
.airbnb-feature-index {
  position: absolute; top: 24px; right: 26px;
  font-size: 12px; font-weight: 600; color: #c7c7cc; letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.airbnb-feature-card i {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,113,227,0.1); color: var(--airbnb-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 18px; transition: transform 0.2s;
}
.airbnb-feature-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.airbnb-feature-card p { font-size: 14.5px; color: var(--airbnb-grey); line-height: 1.6; margin: 0; }

/* Photo and stats band */
.airbnb-photo-band { display: flex; flex-direction: column; align-items: center; }
.airbnb-photo-frame {
  width: 100%; max-width: 760px; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}
.airbnb-photo-band img { width: 100%; display: block; object-fit: cover; max-height: 380px; }
.airbnb-stat-row {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  width: 100%; max-width: 680px; margin-top: -36px; position: relative; z-index: 1; padding: 0 12px;
}
.airbnb-stat-card {
  flex: 1; min-width: 160px; background: #fff; border-radius: 16px; padding: 22px 28px; text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.04);
}
.airbnb-stat-num { font-size: 24px; font-weight: 800; color: var(--airbnb-blue); letter-spacing: -0.03em; }
.airbnb-stat-label { font-size: 13px; color: var(--airbnb-grey); margin-top: 3px; }

/* Quote form */
.airbnb-form-section { padding: 48px 24px 88px; }
.airbnb-form-wrap {
  max-width: 620px; margin: 0 auto; background: #f5f5f7;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 24px; padding: 44px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.airbnb-form-wrap h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; text-align: left; }
.airbnb-form-sub { font-size: 14px; color: var(--airbnb-grey); margin-bottom: 28px; }

.airbnb-consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: var(--airbnb-grey); line-height: 1.5;
  margin-bottom: 18px;
}
.airbnb-consent-label input[type="checkbox"] {
  margin-top: 2px; flex-shrink: 0; accent-color: var(--airbnb-blue);
  width: 16px; height: 16px;
}
.airbnb-consent-label a { color: var(--airbnb-blue); }
.airbnb-form-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 14px; font-size: 12.5px; color: var(--airbnb-grey);
}
.airbnb-form-trust i { font-size: 11px; }

.airbnb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.airbnb-form-group { margin-bottom: 14px; }
.airbnb-form-group label { display: block; font-size: 12px; font-weight: 500; color: var(--airbnb-grey); margin-bottom: 6px; }
.airbnb-form-group input,
.airbnb-form-group select,
.airbnb-form-group textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid #e0e0e5; border-radius: 12px;
  font-size: 15px; font-family: var(--airbnb-font); color: var(--airbnb-dark);
  background: #fff; transition: border-color 0.2s; box-sizing: border-box; -webkit-appearance: none;
}
.airbnb-form-group input:focus,
.airbnb-form-group select:focus,
.airbnb-form-group textarea:focus { outline: none; border-color: var(--airbnb-blue); }
.airbnb-form-group textarea { resize: vertical; min-height: 90px; }

.airbnb-btn-submit {
  width: 100%; padding: 15px; background: var(--airbnb-blue); color: #fff;
  border: none; border-radius: 980px; font-size: 16px; font-weight: 600;
  font-family: var(--airbnb-font); cursor: pointer; transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.airbnb-btn-submit:hover { background: #0077ed; transform: scale(1.01); }
.airbnb-btn-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

#airbnb-feedback { margin-top: 12px; font-size: 14px; text-align: center; font-weight: 500; }
#airbnb-feedback.success { color: #34c759; }
#airbnb-feedback.error { color: #ff3b30; }
#airbnb-feedback.sending { color: var(--airbnb-blue); }

.airbnb-page .site-footer { margin-top: 0; }

@media (max-width: 767px) {
  .airbnb-hero { padding: 64px 20px 44px; }
  .airbnb-hero-glow { top: -260px; width: 700px; height: 480px; }
  .airbnb-section { padding: 48px 20px; }
  .airbnb-form-section { padding: 8px 20px 64px; }
  .airbnb-form-wrap { padding: 32px 22px; border-radius: 20px; }
  .airbnb-form-row { grid-template-columns: 1fr; gap: 0; }
  .airbnb-photo-band img { max-height: 240px; }
  .airbnb-stat-row { margin-top: -24px; gap: 10px; }
  .airbnb-stat-card { min-width: 130px; padding: 16px 14px; }
  .airbnb-stat-num { font-size: 19px; }
  .airbnb-feature-index { top: 20px; right: 22px; }
}
