@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f7fafc;
  --text:      #141f2b;
  --muted:     #627485;
  --card:      #ffffff;
  --border:    #d9e3ec;

  --green:     #2b8f77;
  --green-soft:#e7f5f1;
  --green-dark:#1f6f5d;

  --shadow-sm: 0 4px 14px rgba(20,31,43,.06);
  --shadow-md: 0 18px 44px rgba(20,31,43,.10);

  --radius:    14px;
  --max-w:     1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ── Utility ──────────────────────────────────────────────────────────────── */

.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.muted     { color: var(--muted); }
.text-center { text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid #c1e4da;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: none; }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(43,143,119,.3);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 6px 20px rgba(43,143,119,.35); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-white {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 4px 14px rgba(20,31,43,.12);
}
.btn-white:hover { box-shadow: 0 6px 22px rgba(20,31,43,.18); }

.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; }

/* ── Navigation ──────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,250,252,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

.nav-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), #3db996);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--green-soft); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}
.nav-mobile a:hover { background: var(--green-soft); color: var(--green-dark); }
.nav-mobile .nav-mobile-cta { margin-top: 8px; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

footer {
  background: var(--text);
  color: #8eacbe;
  padding: 60px 0 28px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #3db996);
  display: grid;
  place-items: center;
  color: #fff;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.9rem;
  color: #8eacbe;
  text-decoration: none;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a { color: #8eacbe; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Sections ─────────────────────────────────────────────────────────────── */

section { padding: 96px 0; }
section + section { padding-top: 0; }

.section-eyebrow { margin-bottom: 16px; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Cards ────────────────────────────────────────────────────────────────── */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at 0% 0%, #daf0ea 0%, transparent 44%),
    radial-gradient(circle at 100% 100%, #dce8f6 0%, transparent 40%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 22px;
}

.hero-title em {
  font-style: normal;
  color: var(--green);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.825rem;
  color: var(--muted);
}

.hero-visual {
  margin-top: 64px;
  max-width: 880px;
  margin-inline: auto;
  position: relative;
}

.hero-mockup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Browser chrome bar */
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: #f3f7fa;
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup-dot:nth-child(1) { background: #fc6058; }
.mockup-dot:nth-child(2) { background: #fec02f; }
.mockup-dot:nth-child(3) { background: #2ac940; }

.rm-url-bar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #8eacbe;
  background: #e8f0f6;
  border-radius: 5px;
  padding: 4px 12px;
  max-width: 280px;
  margin-inline: auto;
}

/* ── Realistic app shell ─────────────────────────────────────────────── */

.rm-shell {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 400px;
  overflow: hidden;
}

/* Sidebar */
.rm-sidebar {
  background: #f8fbfd;
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rm-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.rm-brand-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--green), #3db996);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.rm-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
}

.rm-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }

.rm-nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #6b8097;
  cursor: pointer;
  transition: background .15s;
  user-select: none;
}
.rm-nav-link:hover { background: #edf4f8; color: var(--text); }
.rm-nav-link.active {
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
}

.rm-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 6px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.rm-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4fa8e0, #2b8f77);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rm-user-info { min-width: 0; }
.rm-user-name { font-size: 0.7rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rm-user-email { font-size: 0.62rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Main content */
.rm-main {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f7fafc;
  overflow: hidden;
}

.rm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.rm-page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.rm-page-sub {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 2px;
}

.rm-channels { display: flex; gap: 5px; }

.rm-ch-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
}
.rm-ch-badge.airbnb { background: #fff0f0; color: #c9373c; border: 1px solid #fcd0cf; }
.rm-ch-badge.booking { background: #eef2fb; color: #1a3d8f; border: 1px solid #c9d7f5; }

/* Stats */
.rm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.rm-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.rm-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.rm-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 5px;
}

.rm-stat-trend {
  font-size: 0.65rem;
  font-weight: 600;
}
.rm-stat-trend.up { color: #16a34a; }

.rm-progress-wrap { margin-top: 4px; }
.rm-progress {
  height: 5px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.rm-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #3db996);
  border-radius: 4px;
}

/* Table */
.rm-table-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
}

.rm-table-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  padding: 10px 14px 0;
}

.rm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.68rem;
}

.rm-table th {
  text-align: left;
  padding: 8px 10px;
  background: #f3f7fa;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rm-table td {
  padding: 8px 10px;
  color: var(--text);
  border-bottom: 1px solid #f0f5f9;
  white-space: nowrap;
}
.rm-table tr:last-child td { border-bottom: none; }
.rm-table tr:hover td { background: #f9fbfd; }

.rm-td-bold { font-weight: 600; }
.rm-td-muted { color: var(--muted); }

.rm-src, .rm-status {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
}
.rm-src.airbnb  { background: #fff0f0; color: #c9373c; }
.rm-src.booking { background: #eef2fb; color: #1a3d8f; }
.rm-status.confirmed { background: #dcfce7; color: #15803d; }
.rm-status.pending   { background: #fef9c3; color: #a16207; }

/* ── Logos ────────────────────────────────────────────────────────────────── */

.logos-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 24px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.channel-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.65;
  transition: opacity .2s;
}
.channel-logo:hover { opacity: 1; }

/* ── Features ─────────────────────────────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--green);
}

.feature-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── How it works ─────────────────────────────────────────────────────────── */

.steps-bg {
  background:
    radial-gradient(circle at 80% 50%, #daf0ea 0%, transparent 40%),
    var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--green-soft), var(--green-soft));
  border-top: 2px dashed #c1e4da;
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #3db996);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(43,143,119,.3);
}

.step-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA banner ───────────────────────────────────────────────────────────── */

.cta-banner {
  background: linear-gradient(135deg, #1f6f5d 0%, #2b8f77 50%, #38a892 100%);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% -20%, rgba(255,255,255,.12) 0%, transparent 50%);
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  position: relative;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: .8;
  margin-bottom: 32px;
  position: relative;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* ── Pricing ──────────────────────────────────────────────────────────────── */

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 36px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.pricing-toggle input { opacity: 0; width: 0; height: 0; }

.pricing-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 26px;
  transition: background .2s;
}

.pricing-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform .2s;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.pricing-toggle input:checked + .pricing-toggle-slider { background: var(--green); }
.pricing-toggle input:checked + .pricing-toggle-slider::before { transform: translateX(22px); }

.pricing-save-pill {
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #c1e4da;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .2s;
}

.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 10%, transparent);
  position: relative;
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-trial-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-plan-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 40px;
}

.pricing-amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-currency { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }

.pricing-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-period { font-size: 0.875rem; color: var(--muted); margin-bottom: 8px; }

.pricing-annual-note {
  font-size: 0.78rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 24px;
  min-height: 18px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */

.faq-list { max-width: 700px; margin: 48px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
  transition: transform .2s;
  font-size: 1.1rem;
  font-weight: 400;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── Contact ──────────────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-control {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .15s;
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.form-control::placeholder { color: #aabbc9; }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  background: var(--green-soft);
  border: 1px solid #c1e4da;
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--green-dark);
  font-weight: 500;
  margin-top: 12px;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
}

/* ── Terms ────────────────────────────────────────────────────────────────── */

.terms-body {
  max-width: 780px;
  margin-inline: auto;
  padding-block: 60px;
}

.terms-body h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.terms-body p, .terms-body li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.terms-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.terms-body strong { color: var(--text); }

.terms-updated {
  font-size: 0.825rem;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 72px 0 60px; }

  /* Realistic mockup — mobile adaptations */
  .rm-sidebar { display: none; }
  .rm-shell { grid-template-columns: 1fr; }
  .rm-stats { grid-template-columns: 1fr 1fr; }
  .rm-main { padding: 12px 14px; gap: 10px; }
  /* Keep only guest + property + status columns on narrow screens */
  .rm-table th:nth-child(3),
  .rm-table td:nth-child(3),
  .rm-table th:nth-child(4),
  .rm-table td:nth-child(4),
  .rm-table th:nth-child(5),
  .rm-table td:nth-child(5) { display: none; }

  .steps-grid::before { display: none; }
  .cta-banner { padding: 40px 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}

@media (max-width: 440px) {
  .rm-stats { grid-template-columns: 1fr 1fr; gap: 6px; }
  .rm-stat { padding: 10px 10px; }
  .rm-stat-num { font-size: 1rem; }
  .rm-header { flex-direction: column; gap: 6px; }
  .rm-channels { display: none; }
}
