/* ==========================================================
   RENTÓ — Stylesheet
   Design direction: refined Nordic minimalism with warm
   editorial feel. Cream backgrounds, deep moss green primary,
   soft terracotta accent, Fraunces display + Inter body.
   ========================================================== */

:root {
  /* Palette */
  --bg: #F7F3EC;
  --bg-soft: #EFE9DD;
  --surface: #FFFFFF;
  --surface-2: #FBF7EF;
  --ink: #1B1F1A;
  --ink-soft: #3B3F36;
  --ink-mute: #6F7167;
  --line: #E2DBC9;
  --line-strong: #C9C0A8;

  --primary: #2C4A36;          /* deep moss */
  --primary-2: #3B6248;
  --primary-ink: #F7F3EC;
  --accent: #C75D3E;           /* terracotta */
  --accent-soft: #F1D9CC;
  --gold: #C19A4B;
  --success: #2E7D52;
  --warn: #C58F1E;
  --danger: #B23A2A;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(27, 31, 26, .06);
  --shadow-md: 0 8px 24px -8px rgba(27, 31, 26, .15);
  --shadow-lg: 0 24px 60px -20px rgba(27, 31, 26, .25);

  --max: 1240px;
  --gutter: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .4em 0;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); }
p  { margin: 0 0 1em 0; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.muted { color: var(--ink-mute); }
.small { font-size: .85rem; }

/* ==========================================================
   TOP BAR
   ========================================================== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 236, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
}
.logo:hover { color: var(--primary); }
.logo-mark {
  display: inline-block; transform: rotate(45deg);
  color: var(--accent); font-size: 1.1rem;
}
.topnav { display: flex; gap: 28px; }
.topnav a {
  color: var(--ink-soft); font-size: .95rem; font-weight: 500;
  padding: 6px 0; position: relative;
}
.topnav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transition: transform .2s; transform-origin: left;
}
.topnav a:hover::after { transform: scaleX(1); }

.topbar-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 6px 14px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-soft); transition: all .2s;
}
.lang-toggle:hover { border-color: var(--primary); color: var(--primary); }
.lang-sep { color: var(--ink-mute); margin: 0 4px; }
#langCurrent { color: var(--accent); }

.btn-primary {
  background: var(--primary); color: var(--primary-ink);
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: .9rem;
  border: none; transition: all .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--primary-2); color: var(--primary-ink); transform: translateY(-1px); }
.btn-ghost {
  color: var(--ink-soft); font-weight: 500; font-size: .9rem;
  padding: 8px 14px; border-radius: 999px;
}
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); }

.btn-accent {
  background: var(--accent); color: white;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; border: none; transition: all .2s;
}
.btn-accent:hover { background: #b04e30; }

.btn-outline {
  background: transparent; border: 1.5px solid var(--ink);
  color: var(--ink); padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: .9rem;
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.menu-toggle {
  display: none; background: transparent; border: none;
  width: 36px; height: 36px; flex-direction: column;
  justify-content: center; gap: 5px; padding: 0;
}
.menu-toggle span {
  display: block; height: 2px; width: 22px;
  background: var(--ink); transition: all .2s;
}
.mobile-menu {
  display: none; flex-direction: column;
  padding: 12px var(--gutter) 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-menu a {
  padding: 14px 0; font-size: 1.05rem;
  color: var(--ink-soft); border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }

@media (max-width: 900px) {
  .topnav, .hide-mobile { display: none; }
  .menu-toggle { display: flex; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: 60px 0 80px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(199, 93, 62, .12), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(44, 74, 54, .1), transparent 50%),
    var(--bg);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-weight: 400; font-style: normal;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic; font-weight: 500;
  color: var(--primary);
}
.hero-sub {
  font-size: 1.15rem; color: var(--ink-soft);
  max-width: 540px; margin-top: 16px;
}
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, #4a6651 0%, #2c4a36 60%, #1a3024 100%);
  z-index: 0;
}
.hero-visual-content {
  position: absolute; inset: 0; padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: white;
}
.hero-card-row {
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-end;
}
.hero-card {
  background: rgba(255, 255, 255, .96); color: var(--ink);
  padding: 14px 18px; border-radius: var(--r-md);
  font-size: .9rem; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md); max-width: 260px;
  backdrop-filter: blur(8px);
}
.hero-card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-soft); display: grid; place-items: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hero-card strong { display: block; font-weight: 600; font-size: .95rem; }
.hero-card span { color: var(--ink-mute); font-size: .8rem; }

.hero-stats {
  display: flex; gap: 24px; align-items: flex-end;
}
.hero-stat .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; line-height: 1; }
.hero-stat .label { font-size: .78rem; opacity: .8; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 5/4; max-height: 500px; }
}

/* ==========================================================
   SEARCH BAR
   ========================================================== */
.search-bar {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 8px; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr auto;
  gap: 4px; margin-top: 36px;
  max-width: 720px;
  border: 1px solid var(--line);
}
.search-field {
  padding: 12px 16px; display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--line); cursor: pointer; border-radius: var(--r-md);
}
.search-field:last-of-type { border-right: none; }
.search-field:hover { background: var(--bg-soft); }
.search-field label {
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--ink-mute);
}
.search-field input, .search-field select {
  border: none; background: transparent; padding: 0;
  font-family: inherit; font-size: .95rem; color: var(--ink);
  outline: none; width: 100%;
}
.search-btn {
  background: var(--accent); color: white; border: none;
  border-radius: var(--r-md); padding: 0 24px;
  font-weight: 600; transition: all .2s;
  display: flex; align-items: center; gap: 8px;
  font-size: .95rem;
}
.search-btn:hover { background: #b04e30; }
.search-btn-icon { font-size: 1.1rem; }

@media (max-width: 700px) {
  .search-bar { grid-template-columns: 1fr; gap: 0; padding: 12px; }
  .search-field { border-right: none; border-bottom: 1px solid var(--line); }
  .search-field:last-of-type { border-bottom: none; }
  .search-btn { margin-top: 8px; padding: 14px; justify-content: center; }
}

/* ==========================================================
   SECTIONS
   ========================================================== */
section { padding: 80px 0; }
section.tight { padding: 50px 0; }

.section-head { margin-bottom: 40px; max-width: 720px; }
.section-head .eyebrow {
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; display: block;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ==========================================================
   CATEGORIES
   ========================================================== */
.cat-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.cat-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 24px; border: 1px solid var(--line);
  text-align: left; transition: all .25s;
  display: block; color: inherit;
  position: relative; overflow: hidden;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.cat-icon { font-size: 2.2rem; margin-bottom: 8px; }
.cat-card h3 { font-size: 1.05rem; margin: 0 0 4px; }
.cat-card .cat-count { font-size: .82rem; color: var(--ink-mute); }

@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================
   ITEM CARDS
   ========================================================== */
.items-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.item-card {
  background: var(--surface); border-radius: var(--r-lg);
  overflow: hidden; transition: all .25s;
  border: 1px solid var(--line); cursor: pointer;
  display: flex; flex-direction: column;
}
.item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.item-img {
  aspect-ratio: 4/3; background: var(--bg-soft);
  position: relative; overflow: hidden;
  display: grid; place-items: center; font-size: 4rem;
}
.item-img-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255, 255, 255, .95); color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
}
.item-fav {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, .95); border: none;
  display: grid; place-items: center; font-size: 1rem;
  transition: all .2s;
}
.item-fav:hover { background: white; transform: scale(1.1); }
.item-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.item-title {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 600; margin: 0 0 4px;
  display: flex; justify-content: space-between; gap: 8px;
}
.item-rating { font-size: .85rem; color: var(--ink-soft); white-space: nowrap; }
.item-rating .star { color: var(--gold); }
.item-loc {
  font-size: .85rem; color: var(--ink-mute); margin-bottom: 12px;
}
.item-price {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.item-price .num { font-weight: 700; font-size: 1.1rem; }
.item-price .per { font-size: .8rem; color: var(--ink-mute); }
.item-price .deposit { font-size: .75rem; color: var(--ink-mute); }

@media (max-width: 1000px) { .items-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .items-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .items-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.how-section { background: var(--surface-2); }
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.how-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 28px; border: 1px solid var(--line);
  position: relative;
}
.how-num {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 500; color: var(--accent);
  line-height: 1; margin-bottom: 16px;
  font-style: italic;
}
.how-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.how-card p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

@media (max-width: 900px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .how-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   TRUST / SAFETY STRIP
   ========================================================== */
.trust-strip {
  background: var(--primary); color: var(--primary-ink);
  padding: 60px 0;
}
.trust-strip h2 { color: white; }
.trust-strip .section-head p { color: rgba(247, 243, 236, .8); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 32px;
}
.trust-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-md); padding: 22px;
}
.trust-card .icon {
  font-size: 1.6rem; margin-bottom: 12px;
  display: inline-block;
  background: rgba(255, 255, 255, .12);
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
}
.trust-card h3 { color: white; font-size: 1.05rem; margin-bottom: 6px; }
.trust-card p { color: rgba(247, 243, 236, .78); font-size: .9rem; margin: 0; }

@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .trust-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   CTA HOSTING (own a thing? rent it out)
   ========================================================== */
.cta-host {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  align-items: center; padding: 60px;
  background: linear-gradient(135deg, #F1D9CC 0%, #F7E8DC 100%);
  border-radius: var(--r-xl);
}
.cta-host h2 { font-style: italic; font-weight: 400; }
.cta-host h2 em { font-style: normal; font-weight: 600; color: var(--accent); }
.cta-host-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 28px;
}
.cta-host-stat {
  background: rgba(255, 255, 255, .6); padding: 18px;
  border-radius: var(--r-md); backdrop-filter: blur(8px);
}
.cta-host-stat .num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--primary); }
.cta-host-stat .label { font-size: .82rem; color: var(--ink-soft); }

.calculator {
  background: white; border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-md);
}
.calculator h3 { margin-bottom: 8px; }
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
  font-size: .95rem;
}
.calc-row:last-child { border-bottom: none; }
.calc-row.total { font-weight: 700; font-size: 1.1rem; color: var(--primary); padding-top: 16px; }
.calc-slider {
  width: 100%; margin: 16px 0;
  -webkit-appearance: none; appearance: none;
  height: 4px; background: var(--line); border-radius: 2px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); cursor: pointer; border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.calc-label {
  display: flex; justify-content: space-between;
  font-size: .85rem; color: var(--ink-mute);
}

@media (max-width: 800px) {
  .cta-host { grid-template-columns: 1fr; padding: 32px; }
  .cta-host-stats { grid-template-columns: 1fr; }
}

/* ==========================================================
   TOURIST CALLOUT
   ========================================================== */
.tourist-callout {
  background: var(--ink); color: var(--bg);
  padding: 60px 0; position: relative; overflow: hidden;
}
.tourist-callout::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 93, 62, .25), transparent 70%);
}
.tourist-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative;
}
.tourist-callout h2 { color: white; }
.tourist-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tourist-tag {
  background: rgba(255, 255, 255, .08); padding: 6px 14px;
  border-radius: 999px; font-size: .85rem;
  border: 1px solid rgba(255, 255, 255, .15);
}
.tourist-list { list-style: none; padding: 0; margin: 20px 0 0; }
.tourist-list li {
  padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex; align-items: center; gap: 14px;
}
.tourist-list .ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent); display: grid; place-items: center;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .tourist-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================
   BROWSE PAGE
   ========================================================== */
.browse-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  padding: 40px 0;
}
.browse-filters {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 24px; border: 1px solid var(--line);
  align-self: start; position: sticky; top: 90px;
}
.filter-group { margin-bottom: 22px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 { margin-bottom: 12px; font-size: .8rem; }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-options label {
  display: flex; align-items: center; gap: 8px;
  font-size: .92rem; cursor: pointer;
}
.filter-options input { accent-color: var(--primary); }
.price-range { display: flex; gap: 8px; align-items: center; }
.price-range input {
  width: 100%; padding: 8px 10px; border: 1px solid var(--line);
  border-radius: var(--r-sm); font-size: .9rem; font-family: inherit;
}

.browse-main h2 {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 12px;
}
.browse-count { font-size: 1rem; color: var(--ink-mute); font-family: var(--font-body); font-weight: 400; }
.browse-sort {
  padding: 8px 12px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: var(--surface);
  font-family: inherit; font-size: .9rem;
}

.mobile-filters-toggle {
  display: none; margin-bottom: 20px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 12px 18px; border-radius: var(--r-md);
  font-weight: 600;
}

@media (max-width: 900px) {
  .browse-layout { grid-template-columns: 1fr; }
  .browse-filters { display: none; position: static; }
  .browse-filters.open { display: block; }
  .mobile-filters-toggle { display: block; }
}

/* ==========================================================
   ITEM DETAIL PAGE
   ========================================================== */
.detail-wrap { padding: 32px 0 80px; }
.breadcrumb {
  font-size: .85rem; color: var(--ink-mute); margin-bottom: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--primary); }

.detail-gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 12px; aspect-ratio: 16/9;
  margin-bottom: 32px; border-radius: var(--r-lg); overflow: hidden;
}
.detail-gallery-main, .detail-gallery-sub {
  background: var(--bg-soft); display: grid; place-items: center;
  font-size: 4rem;
}
.detail-gallery-main { grid-row: span 2; }
.detail-gallery-sub:nth-child(4) { font-size: 3rem; }

.detail-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 50px; }
.detail-main h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 8px;
}
.detail-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: .92rem; color: var(--ink-soft);
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.detail-meta span { display: flex; align-items: center; gap: 6px; }
.detail-meta .star { color: var(--gold); }

.detail-section { padding: 24px 0; border-bottom: 1px solid var(--line); }
.detail-section h3 { font-size: 1.2rem; margin-bottom: 12px; }
.detail-section p { color: var(--ink-soft); }
.detail-feature-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.detail-feature-list li {
  display: flex; gap: 10px; align-items: center;
  font-size: .92rem;
}
.detail-feature-list .check { color: var(--success); font-weight: 700; }

.owner-card {
  display: flex; gap: 16px; align-items: center;
  padding: 18px; background: var(--surface-2);
  border-radius: var(--r-md);
}
.owner-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: var(--primary-ink);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  flex-shrink: 0;
}
.owner-name { font-weight: 600; }
.owner-meta { font-size: .85rem; color: var(--ink-mute); display: flex; gap: 12px; flex-wrap: wrap; }
.owner-verified {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--success); font-size: .8rem; font-weight: 600;
}

/* Booking widget */
.book-widget {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
  position: sticky; top: 90px;
  box-shadow: var(--shadow-md);
}
.book-price-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
}
.book-price-head .price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; }
.book-price-head .per { color: var(--ink-mute); font-size: .9rem; }
.book-date-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; margin-bottom: 16px;
}
.book-date-grid > div {
  padding: 12px 14px;
}
.book-date-grid > div:first-child { border-right: 1px solid var(--line); }
.book-date-grid label {
  display: block; font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-mute); margin-bottom: 4px;
}
.book-date-grid input {
  width: 100%; border: none; outline: none;
  font-family: inherit; font-size: .9rem;
  background: transparent;
}
.book-summary {
  border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px;
}
.book-summary-row {
  display: flex; justify-content: space-between;
  padding: 6px 0; font-size: .92rem;
}
.book-summary-row.total {
  border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px;
  font-weight: 700; font-size: 1.05rem;
}
.book-deposit-note {
  font-size: .78rem; color: var(--ink-mute);
  background: var(--bg-soft); padding: 10px 12px;
  border-radius: var(--r-sm); margin-top: 12px;
}
.book-cta {
  width: 100%; margin-top: 16px;
  padding: 14px; font-size: 1rem;
}
.book-trust-list {
  list-style: none; padding: 14px 0 0; margin: 14px 0 0;
  border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--ink-soft);
}
.book-trust-list li { padding: 4px 0; display: flex; gap: 8px; align-items: center; }

@media (max-width: 900px) {
  .detail-gallery { grid-template-columns: 2fr 1fr; aspect-ratio: 4/3; }
  .detail-gallery-sub:nth-child(4), .detail-gallery-sub:nth-child(5) { display: none; }
  .detail-layout { grid-template-columns: 1fr; }
  .book-widget { position: static; }
  .detail-feature-list { grid-template-columns: 1fr; }
}

/* ==========================================================
   HOW IT WORKS PAGE
   ========================================================== */
.page-hero {
  padding: 60px 0 40px; background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; font-style: italic; }
.page-hero h1 em { font-style: normal; font-weight: 600; color: var(--primary); }
.page-hero p { font-size: 1.1rem; color: var(--ink-soft); max-width: 600px; }

.how-tabs {
  display: flex; gap: 4px; margin: 30px 0;
  background: var(--bg-soft); padding: 4px;
  border-radius: 999px; max-width: 400px;
}
.how-tabs button {
  flex: 1; padding: 10px 20px; border: none;
  background: transparent; font-family: inherit;
  font-weight: 600; color: var(--ink-soft);
  border-radius: 999px; transition: all .2s;
}
.how-tabs button.active {
  background: var(--surface); color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.how-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 30px; padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family: var(--font-display); font-size: 3.2rem;
  font-weight: 500; color: var(--accent);
  line-height: 1; font-style: italic;
}
.how-step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.how-step p { color: var(--ink-soft); margin: 0; }

@media (max-width: 600px) {
  .how-step { grid-template-columns: 1fr; gap: 8px; }
}

/* ==========================================================
   SAFETY PAGE
   ========================================================== */
.safety-pillar {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
  padding: 40px 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.safety-pillar:last-child { border-bottom: none; }
.safety-pillar-ic {
  font-family: var(--font-display); font-size: 4rem;
  font-style: italic; font-weight: 500;
  color: var(--primary); line-height: 1;
}
.safety-pillar h3 { font-size: 1.5rem; margin-bottom: 12px; }
.safety-pillar ul { padding-left: 18px; color: var(--ink-soft); }
.safety-pillar li { padding: 4px 0; }

.disclaimer-box {
  background: #FFF8E8; border: 1px solid var(--gold);
  border-radius: var(--r-md); padding: 24px;
  margin-top: 40px;
}
.disclaimer-box h4 { color: var(--ink); margin-bottom: 8px; text-transform: none; letter-spacing: 0; font-size: 1.05rem; font-family: var(--font-display); font-weight: 600; }
.disclaimer-box p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

@media (max-width: 700px) {
  .safety-pillar { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================
   LIST ITEM (form)
   ========================================================== */
.list-form {
  max-width: 720px; margin: 0 auto;
  background: var(--surface); border-radius: var(--r-lg);
  padding: 40px; border: 1px solid var(--line);
}
.list-form .progress {
  display: flex; gap: 8px; margin-bottom: 30px;
}
.list-form .progress > div {
  flex: 1; height: 4px; background: var(--line); border-radius: 2px;
}
.list-form .progress > div.active { background: var(--primary); }
.list-form .progress > div.done { background: var(--success); }

.field { margin-bottom: 20px; }
.field label {
  display: block; font-weight: 600; margin-bottom: 8px;
  font-size: .92rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  font-family: inherit; font-size: .95rem;
  background: var(--surface);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--ink-mute); margin-top: 4px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.photo-upload {
  border: 2px dashed var(--line-strong); border-radius: var(--r-md);
  padding: 40px 20px; text-align: center; cursor: pointer;
  transition: all .2s;
}
.photo-upload:hover { border-color: var(--primary); background: var(--bg-soft); }
.photo-upload .ic { font-size: 2rem; margin-bottom: 8px; }
.photo-preview {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 12px;
}
.photo-preview-item {
  aspect-ratio: 1; background: var(--bg-soft);
  border-radius: var(--r-sm); display: grid; place-items: center;
  font-size: 1.5rem; position: relative;
}
.photo-preview-item .remove {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: white; border: none; font-size: .9rem;
  display: grid; place-items: center;
}

.form-actions {
  display: flex; justify-content: space-between;
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 500px) {
  .list-form { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ==========================================================
   DASHBOARD
   ========================================================== */
.dash-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--line);
  margin-bottom: 30px; overflow-x: auto;
}
.dash-tabs button {
  padding: 14px 22px; border: none; background: transparent;
  font-family: inherit; font-weight: 600; color: var(--ink-mute);
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: all .2s;
}
.dash-tabs button.active { color: var(--ink); border-color: var(--accent); }

.dash-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 30px;
}
.dash-stat {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px;
}
.dash-stat .label { font-size: .82rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .06em; }
.dash-stat .num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; margin-top: 4px; }

.booking-row {
  display: grid; grid-template-columns: 80px 1fr auto auto;
  gap: 20px; align-items: center; padding: 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); margin-bottom: 12px;
}
.booking-img {
  width: 80px; height: 80px; border-radius: var(--r-sm);
  background: var(--bg-soft); display: grid; place-items: center;
  font-size: 2rem;
}
.booking-title { font-weight: 600; }
.booking-meta { font-size: .85rem; color: var(--ink-mute); margin-top: 4px; }
.booking-status {
  padding: 4px 10px; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
}
.booking-status.pending { background: #FFF1D6; color: var(--warn); }
.booking-status.confirmed { background: #DAF0E2; color: var(--success); }
.booking-status.completed { background: var(--bg-soft); color: var(--ink-mute); }
.booking-status.cancelled { background: #F8DAD3; color: var(--danger); }

@media (max-width: 800px) {
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .booking-row { grid-template-columns: 60px 1fr; gap: 12px; }
  .booking-row > *:nth-child(3), .booking-row > *:nth-child(4) { grid-column: span 2; }
  .booking-img { width: 60px; height: 60px; }
}

/* ==========================================================
   MODAL
   ========================================================== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(27, 31, 26, .55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 200; display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--surface); border-radius: var(--r-lg);
  max-width: 560px; width: 100%; max-height: 90vh;
  overflow: auto; padding: 36px;
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal h2 { margin-bottom: 8px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg-soft); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.2rem; display: grid; place-items: center;
}

.contract-box {
  background: var(--bg-soft); border-radius: var(--r-md);
  padding: 20px; max-height: 240px; overflow-y: auto;
  font-size: .85rem; color: var(--ink-soft);
  margin: 16px 0;
  border-left: 3px solid var(--primary);
}
.contract-box h4 { color: var(--ink); margin-bottom: 8px; }
.contract-box p { margin-bottom: 10px; }

.checkbox-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px; background: var(--surface-2);
  border-radius: var(--r-sm); margin: 16px 0;
}
.checkbox-row input { margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }

/* ==========================================================
   TOAST
   ========================================================== */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink); color: var(--bg);
  padding: 14px 22px; border-radius: 999px;
  font-weight: 500; font-size: .9rem;
  box-shadow: var(--shadow-lg); z-index: 300;
  opacity: 0; transition: all .3s;
  max-width: 90vw;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  padding: 60px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { color: var(--ink-soft); max-width: 360px; font-size: .92rem; }
.footer-col h4 { margin-bottom: 14px; }
.footer-col a {
  display: block; padding: 5px 0;
  color: var(--ink-soft); font-size: .92rem;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 20px;
  font-size: .85rem; color: var(--ink-mute);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
.fade-in {
  animation: fadeUp .5s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stagger > * { animation: fadeUp .5s ease both; }
.stagger > *:nth-child(1) { animation-delay: .05s; }
.stagger > *:nth-child(2) { animation-delay: .1s; }
.stagger > *:nth-child(3) { animation-delay: .15s; }
.stagger > *:nth-child(4) { animation-delay: .2s; }
.stagger > *:nth-child(5) { animation-delay: .25s; }
.stagger > *:nth-child(6) { animation-delay: .3s; }
.stagger > *:nth-child(7) { animation-delay: .35s; }
.stagger > *:nth-child(8) { animation-delay: .4s; }

/* ==========================================================
   UTILITIES
   ========================================================== */
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.text-center { text-align: center; }
.empty-state {
  text-align: center; padding: 60px 20px;
  color: var(--ink-mute);
}
.empty-state .ic { font-size: 3rem; margin-bottom: 12px; }

/* ============================================================
   ÍSLAND.IS LOGIN BUTTON
   ============================================================ */
.btn-islandis {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #003a5d;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  border: 1px solid #003a5d;
  transition: all .2s;
  text-decoration: none;
}
.btn-islandis:hover {
  background: #002a44;
  border-color: #002a44;
  transform: translateY(-1px);
}
.btn-islandis .islandis-mark {
  font-size: .9rem;
  line-height: 1;
}

.islandis-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f5fa;
  border: 1px solid #cdd9e4;
  color: #003a5d;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
  margin-top: 12px;
}
.islandis-trust-pill .check {
  width: 16px; height: 16px;
  border-radius: 999px;
  background: #003a5d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
}

/* ============================================================
   WAITLIST SECTION
   ============================================================ */
.waitlist-section {
  background: var(--primary);
  color: var(--primary-ink);
  padding: 80px 0;
  margin-top: 0;
}
.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.waitlist-left .hero-eyebrow {
  color: var(--accent-light, #f4c5b3);
}
.waitlist-left h2 {
  color: var(--primary-ink);
  font-size: 2.4rem;
  margin: 12px 0 16px;
  line-height: 1.15;
}
.waitlist-left p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.6;
}
.waitlist-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px;
  border-radius: 999px;
  margin-top: 20px;
  font-size: .9rem;
}
.waitlist-count-pill .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #6dd1a0;
  box-shadow: 0 0 0 4px rgba(109,209,160,.2);
}
.waitlist-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.3);
}
.waitlist-form h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}
.waitlist-form .field {
  margin-top: 18px;
}
.waitlist-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.waitlist-form input,
.waitlist-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .95rem;
  font-family: inherit;
  background: var(--bg);
}
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--primary);
}
.waitlist-form button {
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  font-size: 1rem;
}
.waitlist-success {
  text-align: center;
  padding: 30px 10px;
}
.waitlist-success .ic {
  font-size: 3rem;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .waitlist-grid { grid-template-columns: 1fr; gap: 36px; }
  .waitlist-left h2 { font-size: 1.8rem; }
}

/* ============================================================
   REQUEST BOARD (Óskalisti)
   ============================================================ */
.request-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,.08);
}
.request-form-card h3 {
  margin: 0 0 4px;
}
.request-form-card .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.request-form-card .field-full { grid-column: 1 / -1; }
.request-form-card label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.request-form-card input,
.request-form-card select,
.request-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .95rem;
  font-family: inherit;
  background: var(--bg);
}
.request-form-card textarea {
  resize: vertical;
  min-height: 80px;
}
.request-form-card button {
  margin-top: 24px;
}

.requests-list {
  margin-top: 60px;
}
.requests-list h2 {
  margin-bottom: 24px;
}
.request-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: all .2s;
}
.request-card:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}
.request-card .what {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.request-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: var(--ink-soft);
}
.request-card .meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.request-card .ago {
  font-size: .78rem;
  color: var(--ink-mute);
  margin-top: 8px;
}
.request-card .offer-btn {
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .request-form-card .form-grid { grid-template-columns: 1fr; }
  .request-card {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================================
   DASHBOARD ÍSLAND.IS AUTH CARD
   ============================================================ */
.auth-card {
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,.08);
}
.auth-card-unverified {
  background: linear-gradient(135deg, #f0f5fa 0%, #fff 100%);
  border-color: #cdd9e4;
}
.auth-card-verified {
  background: linear-gradient(135deg, #003a5d 0%, #002a44 100%);
  color: #fff;
  border-color: #002a44;
}

.auth-card-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.auth-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.auth-card-verified .auth-card-icon {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}
.auth-card-header-text { flex: 1; }
.auth-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #003a5d;
  margin-bottom: 8px;
}
.auth-card-verified .auth-card-eyebrow {
  color: #6dd1a0;
}
.check-circle {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: #6dd1a0;
  color: #003a5d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 900;
}
.auth-card-header-text h2 {
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: inherit;
}
.auth-card-verified h2 { color: #fff; }
.auth-card-header-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.5;
}
.auth-card-verified p { color: rgba(255,255,255,.8); }

.auth-card-benefits {
  margin-top: 22px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--line);
}
.auth-card-benefits strong {
  display: block;
  font-size: .9rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.auth-card-benefits ul {
  margin: 0;
  padding-left: 20px;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.auth-card-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 20px;
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15);
}
.auth-detail .label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.auth-detail .value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.auth-detail .value.mono {
  font-family: ui-monospace, 'SF Mono', monospace;
  letter-spacing: .05em;
}

.auth-card-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.auth-card-verified .auth-card-actions .btn-ghost {
  color: rgba(255,255,255,.7);
}
.auth-card-verified .auth-card-actions .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.btn-islandis-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #003a5d;
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-islandis-large:hover {
  background: #002a44;
  transform: translateY(-1px);
}
.btn-islandis-large .islandis-mark {
  font-size: 1.1rem;
}

@media (max-width: 700px) {
  .auth-card { padding: 24px; }
  .auth-card-header { flex-direction: column; gap: 14px; }
  .auth-card-details { grid-template-columns: 1fr; gap: 14px; }
  .auth-card-actions { justify-content: stretch; }
  .auth-card-actions button { flex: 1; justify-content: center; }
}

/* ============================================================
   PUBLIC TOPBAR — auth buttons
   ============================================================ */
.btn-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--ink) !important;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all .2s;
}
.btn-signin:hover {
  background: var(--ink);
  color: #fff !important;
  border-color: var(--ink);
}
.btn-signin .signin-flag {
  font-size: 1rem;
  line-height: 1;
}

.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink) !important;
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s;
}
.profile-chip:hover {
  border-color: var(--primary);
}
.profile-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
}
.profile-arrow {
  color: var(--ink-mute);
  font-size: .9rem;
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */
body.app-mode .topbar,
body.app-mode footer { display: none !important; }
body.app-mode { background: #0b1f33; }

.login-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at top, rgba(0,90,140,.4), transparent 60%),
    linear-gradient(180deg, #0b1f33 0%, #061425 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

.login-back-link {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .9rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all .2s;
}
.login-back-link:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.login-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 44px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
}

.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--primary);
}
.login-brand-mark { font-size: 1.4rem; }

.login-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #003a5d;
  background: #f0f5fa;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.login-card h1 {
  font-size: 1.8rem;
  margin: 0 0 12px;
  line-height: 1.2;
}
.login-sub {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 28px;
}

.btn-islandis-xl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: #003a5d;
  color: #fff !important;
  padding: 18px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-islandis-xl:hover {
  background: #002a44;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -5px rgba(0,58,93,.3);
}
.btn-islandis-xl .islandis-mark {
  font-size: 1.3rem;
}

.login-demo-note {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-mute);
  margin-top: 12px;
  font-style: italic;
}

.login-features {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.login-features h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.login-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.login-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: .92rem;
  color: var(--ink);
}
.login-features .check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #6dd1a0;
  color: #003a5d;
  font-weight: 900;
  font-size: .65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.login-security {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 16px;
  background: #f0f5fa;
  border-radius: 12px;
  font-size: .82rem;
  color: #003a5d;
}
.login-security .lock-ic { font-size: 1rem; }

@media (max-width: 600px) {
  .login-card { padding: 32px 24px; }
  .login-card h1 { font-size: 1.5rem; }
}

/* ============================================================
   MITT SVÆÐI — APP SHELL (banking-app style)
   ============================================================ */
body.app-mode {
  background: #0b1f33;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  background: #0b1f33;
}

/* Sidebar */
.app-sidebar {
  width: 260px;
  background: #061425;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.app-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 20px;
}
.app-brand-mark {
  font-size: 1.6rem;
  color: #6dd1a0;
}
.app-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.2;
}
.app-brand-sub {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}

.app-sidebar-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 24px;
}
.app-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #003a5d, #0066a8);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-profile-text { min-width: 0; flex: 1; }
.app-profile-name {
  font-weight: 600;
  font-size: .88rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-profile-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  color: #6dd1a0;
  margin-top: 2px;
}
.check-circle-sm {
  width: 12px; height: 12px;
  border-radius: 999px;
  background: #6dd1a0;
  color: #061425;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  font-weight: 900;
}

.app-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.app-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  font-weight: 500;
  transition: all .15s;
}
.app-nav-item:hover {
  background: rgba(255,255,255,.05);
  color: #fff;
}
.app-nav-item.active {
  background: linear-gradient(90deg, rgba(0,90,140,.35), rgba(0,90,140,.15));
  color: #fff;
  font-weight: 600;
}
.app-nav-icon {
  font-size: 1.1rem;
  width: 22px;
  display: inline-flex;
  justify-content: center;
}

.app-sidebar-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.app-link-out {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: all .15s;
}
.app-link-out:hover {
  background: rgba(255,255,255,.05);
  color: #fff;
}
.app-link-signout:hover {
  color: #ff6b6b;
}

/* Main content */
.app-main {
  flex: 1;
  min-width: 0;
  padding: 0;
}
.app-content {
  padding: 40px 48px;
  max-width: 1100px;
}
.app-topbar-mobile { display: none; }

/* Page header */
.app-page-header {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.app-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}
.app-page-header h1 {
  font-size: 2rem;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}

/* Stats grid */
.app-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.app-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 22px;
}
.app-stat-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  opacity: .8;
}
.app-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.app-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* Generic section */
.app-section {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 24px;
}
.app-section h2 {
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 18px;
}

/* Empty states (dark) */
.app-empty {
  text-align: center;
  padding: 50px 20px;
  color: rgba(255,255,255,.55);
}
.app-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: .6;
}
.app-empty p {
  font-size: 1rem;
  margin: 0 0 4px;
}
.app-empty-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-top: 4px !important;
}
.app-empty-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

/* Dark-mode buttons */
.btn-app-primary {
  background: #6dd1a0;
  color: #061425;
  border: none;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: all .2s;
}
.btn-app-primary:hover {
  background: #84e0b0;
  transform: translateY(-1px);
}
.btn-app-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .92rem;
  cursor: pointer;
  transition: all .2s;
}
.btn-app-ghost:hover {
  background: rgba(255,255,255,.1);
}
.btn-app-danger {
  background: transparent;
  color: #ff7a7a;
  border: 1px solid rgba(255,122,122,.3);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .92rem;
  cursor: pointer;
  margin-left: 8px;
  transition: all .2s;
}
.btn-app-danger:hover {
  background: rgba(255,122,122,.1);
}

/* Activity list */
.app-activity { display: flex; flex-direction: column; gap: 1px; }
.app-activity-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.app-activity-row:last-child { border-bottom: none; }
.app-activity-icon { font-size: 1.2rem; }
.app-activity-text { flex: 1; color: #fff; font-size: .93rem; }
.app-activity-sub { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.app-activity-amt { font-weight: 600; color: #fff; }

/* Card list */
.app-card-list { display: flex; flex-direction: column; gap: 10px; }
.app-list-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px 22px;
}
.app-list-card-main { flex: 1; }
.app-list-card-title { color: #fff; font-weight: 600; margin-bottom: 4px; }
.app-list-card-meta { color: rgba(255,255,255,.55); font-size: .82rem; }
.app-list-card-amt { color: #fff; font-weight: 600; }
.app-list-card-status {
  background: rgba(109,209,160,.15);
  color: #6dd1a0;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Earnings grid */
.app-earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.app-earnings-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px;
}
.app-earnings-card.primary {
  background: linear-gradient(135deg, #003a5d 0%, #0066a8 100%);
  border-color: transparent;
}
.app-earnings-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.app-earnings-card.primary .app-earnings-label { color: rgba(255,255,255,.7); }
.app-earnings-amt {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

/* Auth card on app */
.app-auth-card {
  background: linear-gradient(135deg, #003a5d, #0066a8);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
}
.app-auth-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.app-auth-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.app-auth-header-text { flex: 1; }
.app-auth-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6dd1a0;
  margin-bottom: 8px;
}
.app-auth-eyebrow .check-circle {
  width: 16px; height: 16px;
  border-radius: 999px;
  background: #6dd1a0;
  color: #061425;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 900;
}
.app-auth-header-text h2 {
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: #fff;
}
.app-auth-header-text p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  line-height: 1.5;
}
.app-auth-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  background: rgba(0,0,0,.2);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
}
.app-auth-detail .label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.app-auth-detail .value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.app-auth-detail .value.mono {
  font-family: ui-monospace, 'SF Mono', monospace;
  letter-spacing: .05em;
}

/* Settings */
.app-settings-section {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
}
.app-settings-section h3 {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 14px;
}
.app-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app-radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  cursor: pointer;
}
.app-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 900px) {
  .app-shell { flex-direction: column; }
  .app-sidebar {
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    width: 280px;
    transform: translateX(-100%);
    transition: transform .25s;
    z-index: 200;
  }
  .app-sidebar.open { transform: translateX(0); }
  .app-topbar-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #061425;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: sticky;
    top: 0;
    z-index: 50;
  }
  .app-topbar-title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
  }
  .app-menu-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    width: 38px; height: 38px;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
  }
  .app-content { padding: 24px 18px; }
  .app-page-header h1 { font-size: 1.5rem; }
  .app-stats { grid-template-columns: repeat(2, 1fr); }
  .app-earnings-grid { grid-template-columns: 1fr; }
  .app-auth-details { grid-template-columns: 1fr; gap: 14px; }
  .app-auth-header { flex-direction: column; gap: 16px; }
}

.app-lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 6px;
  transition: all .15s;
}
.app-lang-toggle:hover {
  background: rgba(255,255,255,.08);
}
.app-lang-toggle .lang-sep,
.app-lang-toggle .muted-lang {
  color: rgba(255,255,255,.4);
}

/* ============================================================
   RULES PAGE
   ============================================================ */
.rules-page {
  padding: 40px 0 80px;
}

.rules-toc {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.rules-toc h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.rules-toc ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: rule-section;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.rules-toc li {
  counter-increment: rule-section;
  padding: 4px 0;
}
.rules-toc li::before {
  content: counter(rule-section) ".";
  display: inline-block;
  width: 26px;
  color: var(--ink-mute);
  font-weight: 600;
}
.rules-toc a {
  color: var(--ink);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
}
.rules-toc a:hover {
  color: var(--primary);
}

.rules-section {
  scroll-margin-top: 90px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.rules-section:last-of-type {
  border-bottom: none;
}
.rules-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.rules-section-icon {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rules-section h2 {
  font-size: 1.4rem;
  margin: 0;
}
.rules-section p {
  margin: 0 0 16px;
  line-height: 1.65;
  color: var(--ink);
  font-size: .98rem;
}
.rules-list {
  margin: 0 0 20px;
  padding-left: 24px;
}
.rules-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--ink);
  font-size: .95rem;
}
.rules-list li::marker {
  color: var(--primary);
}

.rules-changes {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--bg-soft);
  border-left: 3px solid var(--primary);
  border-radius: 12px;
}
.rules-changes h3 {
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.rules-changes p {
  margin: 0;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 700px) {
  .rules-toc ol { grid-template-columns: 1fr; }
  .rules-section h2 { font-size: 1.2rem; }
  .rules-section-icon { font-size: 1.3rem; width: 38px; height: 38px; }
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-shell {
  background: #0a0e1a;
}
.admin-sidebar {
  background: #050811;
  border-right-color: rgba(255,200,87,.12);
}
.admin-eyebrow {
  color: #ffc857 !important;
}
.admin-stats .admin-stat-revenue {
  background: linear-gradient(135deg, rgba(255,200,87,.15), rgba(255,159,28,.08));
  border-color: rgba(255,200,87,.3);
}
.admin-stat-revenue .app-stat-num { color: #ffc857; }

.admin-demo-note {
  margin-top: 60px;
  padding: 16px 20px;
  background: rgba(255,200,87,.08);
  border: 1px dashed rgba(255,200,87,.3);
  border-radius: 12px;
  color: rgba(255,200,87,.85);
  font-size: .82rem;
  text-align: center;
}

.admin-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-banner {
  background: rgba(255,200,87,.1);
  border: 1px solid rgba(255,200,87,.3);
  color: #ffc857;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.admin-search {
  margin-bottom: 20px;
}
.admin-search input {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: #fff;
  font-size: .92rem;
  font-family: inherit;
}
.admin-search input::placeholder { color: rgba(255,255,255,.4); }

.admin-table-wrap {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
}
.admin-table thead {
  background: rgba(255,255,255,.04);
}
.admin-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.admin-table tbody tr:hover { background: rgba(255,255,255,.02); }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table .mono {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.amt-negative { color: #ff7a7a; }

.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.status-active, .status-completed {
  background: rgba(109,209,160,.15);
  color: #6dd1a0;
}
.status-pending {
  background: rgba(255,200,87,.15);
  color: #ffc857;
}
.status-suspended, .status-disputed {
  background: rgba(255,159,28,.15);
  color: #ff9f1c;
}
.status-banned, .status-removed {
  background: rgba(255,107,107,.15);
  color: #ff7a7a;
}

.type-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
}
.type-charge { background: rgba(0,166,251,.15); color: #5fc8ff; }
.type-payout { background: rgba(109,209,160,.15); color: #6dd1a0; }
.type-fee    { background: rgba(255,200,87,.15); color: #ffc857; }
.type-refund { background: rgba(255,107,107,.15); color: #ff7a7a; }

.badge-verified {
  background: rgba(0,90,140,.2);
  color: #5fc8ff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
}
.badge-pending {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .78rem;
}

.actions-cell {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.btn-mini {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  padding: 5px 11px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.btn-mini:hover { background: rgba(255,255,255,.14); }
.btn-mini-success {
  background: rgba(109,209,160,.15);
  color: #6dd1a0;
  border-color: rgba(109,209,160,.3);
}
.btn-mini-warn {
  background: rgba(255,200,87,.12);
  color: #ffc857;
  border-color: rgba(255,200,87,.3);
}
.btn-mini-danger {
  background: rgba(255,107,107,.12);
  color: #ff7a7a;
  border-color: rgba(255,107,107,.3);
}

.admin-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.admin-tab {
  padding: 12px 0;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.admin-tab.active {
  color: #fff;
  border-color: #ffc857;
}

.admin-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.admin-dispute-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,107,107,.05);
  border: 1px solid rgba(255,107,107,.18);
  border-radius: 14px;
  padding: 20px 22px;
}
.dispute-icon { font-size: 1.6rem; }
.dispute-main { flex: 1; }
.dispute-title { color: #fff; font-weight: 600; margin-bottom: 4px; }
.dispute-meta { color: rgba(255,255,255,.55); font-size: .82rem; }
.dispute-amount { color: #fff; font-weight: 700; font-size: 1.05rem; }

.admin-fee-card {
  background: linear-gradient(135deg, rgba(255,200,87,.2), rgba(255,159,28,.1)) !important;
  border-color: rgba(255,200,87,.3) !important;
}
.admin-fee-card .app-earnings-amt { color: #ffc857; }

.admin-credit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.admin-credit-form .field-full { grid-column: 1 / -1; }
.admin-credit-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.admin-credit-form input,
.admin-credit-form select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: #fff;
  font-size: .92rem;
  font-family: inherit;
}
.admin-credit-form button { grid-column: 1 / -1; }

@media (max-width: 900px) {
  .admin-credit-form { grid-template-columns: 1fr; }
  .admin-table { font-size: .82rem; }
  .admin-table th, .admin-table td { padding: 10px 12px; }
  .admin-dispute-card { flex-wrap: wrap; }
}

/* ============================================================
   NEW MULTI-METHOD AUTH
   ============================================================ */
.login-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 18px;
}

.btn-auth-method {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.btn-auth-method:hover {
  border-color: var(--primary);
  background: var(--bg-soft);
  transform: translateY(-1px);
}
.btn-auth-method .method-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.btn-auth-google .method-icon {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-weight: 700;
  color: #4285F4;
}

.login-back-step {
  display: inline-block;
  font-size: .85rem;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 16px;
  padding: 4px 0;
}
.login-back-step:hover { color: var(--primary); }

.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}
.login-field {
  display: flex;
  flex-direction: column;
}
.login-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.login-field input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  background: var(--bg);
  transition: border-color .15s;
}
.login-field input:focus {
  outline: none;
  border-color: var(--primary);
}

.login-forgot {
  display: inline-block;
  align-self: flex-end;
  font-size: .82rem;
  color: var(--primary);
  text-decoration: none;
  margin-top: -6px;
}
.login-forgot:hover { text-decoration: underline; }

.btn-auth-primary {
  width: 100%;
  background: var(--primary);
  color: var(--primary-ink);
  border: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 6px;
  transition: all .15s;
}
.btn-auth-primary:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.login-toggle {
  text-align: center;
  margin: 16px 0 0;
  font-size: .9rem;
}
.login-toggle a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.login-toggle a:hover { text-decoration: underline; }

.login-terms {
  font-size: .78rem;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
  margin: 16px 0;
}
.login-terms a {
  color: var(--primary);
  text-decoration: none;
}
.login-terms a:hover { text-decoration: underline; }

/* ============================================================
   GOOGLE AUTH MODAL (account chooser style)
   ============================================================ */
.btn-auth-google-large {
  padding: 16px 22px;
  font-size: 1rem;
  border: 1px solid #dadce0;
  background: #fff;
  color: #3c4043;
  font-weight: 500;
}
.btn-auth-google-large:hover {
  background: #f7f8fa;
  border-color: #4285F4;
  box-shadow: 0 1px 3px rgba(60,64,67,.08);
}

.google-auth-modal {
  font-family: 'Google Sans', -apple-system, system-ui, sans-serif;
  padding: 32px 28px;
  max-width: 420px;
  margin: 0 auto;
}

.google-auth-header {
  text-align: center;
  margin-bottom: 28px;
}
.google-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.google-auth-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #202124;
  margin-bottom: 8px;
}
.google-auth-sub {
  font-size: .92rem;
  color: #5f6368;
}

.google-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.google-field label {
  display: block;
  font-size: .82rem;
  color: #5f6368;
  margin-bottom: 6px;
  font-weight: 500;
}
.google-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dadce0;
  border-radius: 6px;
  font-size: .95rem;
  font-family: inherit;
  background: #fff;
  color: #202124;
  transition: border-color .15s;
}
.google-field input:focus {
  outline: none;
  border-color: #4285F4;
  border-width: 2px;
  padding: 11px 13px;
}

.google-auth-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 20px;
}
.btn-google-cancel {
  background: transparent;
  color: #1a73e8;
  border: none;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .92rem;
  cursor: pointer;
  transition: background .15s;
}
.btn-google-cancel:hover {
  background: rgba(26,115,232,.06);
}
.btn-google-continue {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .92rem;
  cursor: pointer;
  transition: background .15s;
}
.btn-google-continue:hover {
  background: #1765cc;
  box-shadow: 0 1px 3px rgba(60,64,67,.16);
}

.google-auth-demo {
  font-size: .76rem;
  color: #5f6368;
  text-align: center;
  font-style: italic;
  margin: 0;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  line-height: 1.4;
}

/* ============================================================
   ADMIN ACCOUNTING
   ============================================================ */
.acc-period-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.acc-period-selector label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}
.acc-period-selector select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .92rem;
  font-family: inherit;
  cursor: pointer;
}

.acc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.acc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 20px;
}
.acc-card-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  margin-bottom: 8px;
}
.acc-card-amt {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.1;
}
.acc-card-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
}

.acc-card-revenue {
  background: linear-gradient(135deg, rgba(255,200,87,.18), rgba(255,159,28,.08));
  border-color: rgba(255,200,87,.3);
}
.acc-card-revenue .acc-card-amt { color: #ffc857; }

.acc-card-vat {
  background: linear-gradient(135deg, rgba(255,107,107,.14), rgba(255,107,107,.04));
  border-color: rgba(255,107,107,.25);
}
.acc-card-vat .acc-card-amt { color: #ff9999; }

.acc-card-profit {
  background: linear-gradient(135deg, rgba(109,209,160,.18), rgba(109,209,160,.04));
  border-color: rgba(109,209,160,.3);
}
.acc-card-profit .acc-card-amt { color: #6dd1a0; }

.text-muted { color: rgba(255,255,255,.55); }

.acc-rsk-section {
  background: rgba(0,90,140,.12) !important;
  border-color: rgba(0,166,251,.25) !important;
}

.acc-disclaimer {
  margin-top: 30px;
  padding: 14px 18px;
  background: rgba(255,200,87,.06);
  border: 1px dashed rgba(255,200,87,.25);
  border-radius: 10px;
  color: rgba(255,200,87,.75);
  font-size: .78rem;
  text-align: center;
  font-style: italic;
}

@media (max-width: 1100px) {
  .acc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .acc-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ★ PREMIUM POLISH — Airbnb-grade refinements
   This block overrides earlier rules for a more refined feel
   ============================================================ */

:root {
  /* Refined palette — same hues, more depth */
  --bg: #FAF7F1;
  --bg-soft: #F2EDE2;
  --surface: #FFFFFF;
  --ink: #14160F;
  --ink-soft: #2E342A;
  --ink-mute: #6A6E62;
  --line: #E8E1CF;
  --line-strong: #C6BD9F;

  --primary: #2A4633;
  --primary-2: #355A41;
  --primary-deep: #1C3022;
  --accent: #C75D3E;
  --accent-soft: #F4E0D2;

  /* Refined shadows — softer, more depth */
  --shadow-sm: 0 1px 2px rgba(20, 22, 15, .04), 0 1px 1px rgba(20, 22, 15, .03);
  --shadow-md: 0 6px 24px -8px rgba(20, 22, 15, .12), 0 2px 6px rgba(20, 22, 15, .04);
  --shadow-lg: 0 30px 60px -20px rgba(20, 22, 15, .25), 0 10px 30px -10px rgba(20, 22, 15, .15);
  --shadow-card: 0 1px 2px rgba(20, 22, 15, .04), 0 8px 24px -12px rgba(20, 22, 15, .18);
  --shadow-card-hover: 0 4px 8px rgba(20, 22, 15, .06), 0 16px 40px -16px rgba(20, 22, 15, .28);

  /* Refined motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

body:not(.app-mode) {
  background: var(--bg);
}

/* ---------- Page-load fade-in ---------- */
@keyframes premium-fade-up {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes premium-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes premium-scale-in {
  0% { opacity: 0; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

main#app > section:first-child,
main#app > section.hero {
  animation: premium-fade-up .9s var(--ease-out) both;
}
main#app > section + section {
  animation: premium-fade-up .9s var(--ease-out) both;
  animation-delay: .15s;
}

/* ---------- Refined topbar ---------- */
body:not(.app-mode) .topbar {
  background: rgba(250, 247, 241, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(232, 225, 207, 0.5);
  transition: background .3s var(--ease-out);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---------- HERO — premium upgrade ---------- */
body:not(.app-mode) .hero {
  position: relative;
  padding: 88px 0 80px;
  overflow: hidden;
}

body:not(.app-mode) .hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 93, 62, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body:not(.app-mode) .hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 70, 51, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero .container,
.hero > div {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero p {
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
}

/* ---------- Premium buttons ---------- */
.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  transition: all .3s var(--ease-out);
  box-shadow: 0 1px 2px rgba(20, 22, 15, .08);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--primary-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(42, 70, 51, .35);
}
.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all .3s var(--ease-out);
  display: inline-block;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ---------- Search bar — refined ---------- */
.hero-search,
.search-bar {
  background: var(--surface);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  padding: 8px;
  transition: box-shadow .3s var(--ease-out);
}
.hero-search:focus-within,
.search-bar:focus-within {
  box-shadow: var(--shadow-card-hover);
}

/* ---------- Item cards — Airbnb-style ---------- */
.item-card {
  background: transparent;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s var(--ease-out);
  cursor: pointer;
}
.item-card:hover {
  transform: translateY(-4px);
}
.item-card .item-img,
.item-card .item-photo {
  border-radius: 14px;
  overflow: hidden;
  transition: transform .6s var(--ease-out);
  position: relative;
}
.item-card:hover .item-img,
.item-card:hover .item-photo {
  transform: scale(1.02);
}
.item-card .item-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  margin-top: 12px;
  color: var(--ink);
}
.item-card .item-meta,
.item-card .item-location {
  color: var(--ink-mute);
  font-size: 0.86rem;
  margin-top: 2px;
}
.item-card .item-price {
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
}

/* ---------- Section spacing ---------- */
main#app > section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ---------- Section headers ---------- */
section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
}
section h2 em {
  font-style: italic;
  color: var(--primary);
}
section > .container > p:first-of-type,
section .lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.55;
}

/* ---------- Categories — refined ---------- */
.categories-grid {
  display: grid;
  gap: 16px;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all .35s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::after {
  content: '→';
  position: absolute;
  bottom: 20px;
  right: 24px;
  color: var(--ink-mute);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .35s var(--ease-out);
}
.category-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.category-card:hover::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary);
}
.category-card .cat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.category-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.category-card .cat-count {
  font-size: 0.85rem;
  color: var(--ink-mute);
}

/* ---------- Trust-bar (NEW) — under hero ---------- */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  margin-top: 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item {
  text-align: center;
}
.trust-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-item .label {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-item .num { font-size: 1.5rem; }
}

/* ---------- Smooth scroll & focus rings ---------- */
html { scroll-behavior: smooth; }
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Refined how-it-works steps ---------- */
.how-step {
  position: relative;
  padding-top: 24px;
}
.how-step .step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  opacity: 0.4;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

/* ---------- Trust strip — refined ---------- */
.trust-strip {
  background: var(--primary-deep);
  color: var(--primary-ink);
  padding: 60px 0;
}
.trust-strip h2 {
  color: var(--primary-ink);
  font-weight: 600;
}

/* ---------- Footer — refined ---------- */
footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 60px 0 30px;
}

/* ---------- Refined modal ---------- */
.modal {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* ---------- Subtle grain texture overlay (very faint, Airbnb-style depth) ---------- */
body:not(.app-mode)::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(199, 93, 62, 0.015) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(42, 70, 51, 0.012) 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px;
  z-index: 1;
  mix-blend-mode: multiply;
}


/* ============================================================
   ★★★ RENTÓ — AIRBNB-GRADE DESIGN SYSTEM
   Final override layer. Clean, professional, easy to scan.
   ============================================================ */

/* Load Inter at multiple weights for proper hierarchy */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* === RESET PALETTE === */
:root {
  /* Airbnb-style neutrals */
  --bg:           #FFFFFF;
  --bg-soft:      #F7F7F7;
  --bg-sunken:    #EBEBEB;
  --surface:      #FFFFFF;
  --surface-2:    #FAFAFA;

  --ink:          #222222;
  --ink-soft:     #484848;
  --ink-mute:     #717171;
  --ink-faint:    #B0B0B0;

  --line:         #DDDDDD;
  --line-soft:    #EBEBEB;
  --line-strong:  #B0B0B0;

  /* RENTÓ brand color — Icelandic forest green (deep, sophisticated) */
  --primary:      #2D5B3F;
  --primary-2:    #3A7152;
  --primary-deep: #1F4530;
  --primary-soft: #E8F2EC;
  --primary-ink:  #FFFFFF;

  /* Accent — warm terracotta for occasional highlights */
  --accent:       #C75D3E;
  --accent-soft:  #F9E4DA;

  --gold:         #FFB400;
  --success:      #008A05;
  --warn:         #B17900;
  --danger:       #C13515;

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Radius */
  --r-xs:  6px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-pill: 999px;

  /* Shadow — Airbnb style */
  --shadow-sm:    0 1px 2px rgba(0,0,0,.08);
  --shadow-md:    0 6px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 28px 50px -16px rgba(0,0,0,.18), 0 8px 16px -6px rgba(0,0,0,.08);
  --shadow-card:  0 1px 2px rgba(0,0,0,.04), 0 8px 20px -10px rgba(0,0,0,.15);
  --shadow-card-hover: 0 6px 12px rgba(0,0,0,.08), 0 24px 40px -16px rgba(0,0,0,.2);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max:    1280px;
  --gutter: 24px;
  --topbar-h: 80px;
}

/* === BASE === */
body:not(.app-mode) {
  background: var(--bg) !important;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Kill the grain overlay from previous pass */
body:not(.app-mode)::before { display: none !important; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 600;
}
h1 { font-weight: 700; letter-spacing: -0.03em; }
h2 em, h1 em { font-style: italic; color: var(--primary); }

a { color: var(--ink); }
a:hover { color: var(--primary); }

/* === TOPBAR === */
body:not(.app-mode) .topbar {
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  height: var(--topbar-h);
  padding: 0 32px;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo, .topbar-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--primary) !important;
}
.logo-mark, .topbar-logo svg, .topbar-logo span:first-child {
  color: var(--primary);
}

.topnav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.topnav a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background .15s;
}
.topnav a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

/* === BUTTONS === */
.btn-primary {
  background: var(--primary);
  color: var(--primary-ink) !important;
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all .2s var(--ease-out);
  box-shadow: none;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--primary-2);
  color: var(--primary-ink) !important;
  transform: none;
  box-shadow: 0 4px 12px rgba(224,83,61,.3);
}
.btn-outline {
  background: var(--surface);
  color: var(--ink) !important;
  border: 1px solid var(--ink);
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg) !important;
}
.btn-ghost {
  background: transparent;
  color: var(--ink-soft) !important;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.92rem;
}
.btn-ghost:hover {
  background: var(--bg-soft);
  color: var(--ink) !important;
}
.btn-signin {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-weight: 600;
  color: var(--ink) !important;
}
.btn-signin:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.lang-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink) !important;
  cursor: pointer;
  transition: all .15s;
}
.lang-toggle:hover {
  border-color: var(--ink);
}

/* === CONTAINER === */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* === HERO — Airbnb-style ===
   Big, clean, search front and center. */
body:not(.app-mode) .hero {
  padding: 56px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: visible;
}
body:not(.app-mode) .hero::before,
body:not(.app-mode) .hero::after { display: none !important; }

.hero .container > div,
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 16px 0 18px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero p, .hero-sub {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-deep);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}
.hero-eyebrow::before { display: none; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.islandis-trust-pill {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.islandis-trust-pill .check {
  background: var(--success);
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
}

/* === HERO VISUAL — clean card grid === */
.hero-visual {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
}
.hero-visual-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  justify-content: center;
}
.hero-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .3s var(--ease-out);
}
.hero-card:nth-child(odd) { transform: translateY(-6px); }
.hero-card:hover {
  transform: translateY(-8px);
}
.hero-card-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.hero-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.hero-card-meta {
  font-size: 0.72rem;
  color: var(--ink-mute);
}

@media (max-width: 980px) {
  .hero .container > div,
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
}

/* === SEARCH BAR — Airbnb iconic === */
.hero-search,
.search-bar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  max-width: 720px;
  margin-top: 8px;
  transition: box-shadow .2s;
}
.hero-search:hover,
.search-bar:hover {
  box-shadow: var(--shadow-lg);
}
.hero-search > *,
.search-bar > * {
  flex: 1;
  padding: 14px 22px;
  border: none;
  background: transparent;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--ink);
}
.hero-search > input::placeholder {
  color: var(--ink-mute);
}
.hero-search > button,
.search-bar > button {
  flex: 0 0 auto;
  background: var(--primary);
  color: white;
  border-radius: var(--r-pill);
  padding: 12px 24px;
  margin: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.hero-search > button:hover,
.search-bar > button:hover {
  background: var(--primary-2);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { text-align: center; }
.trust-item .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-item .label {
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 6px;
}
@media (max-width: 700px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-item .num { font-size: 1.4rem; }
}

/* === SECTIONS === */
main#app > section { padding: 64px 0; }

.section-head {
  margin-bottom: 36px;
}
section h2,
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}
section .eyebrow,
.section-head .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}
section > .container > p:first-of-type,
.section-head p {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0;
}

/* === CATEGORIES — Airbnb-style horizontal cards === */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  cursor: pointer;
  transition: all .2s var(--ease-out);
  text-align: left;
  position: relative;
}
.cat-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.cat-card .cat-icon,
.cat-card > .ic {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.cat-card h3,
.cat-card .cat-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cat-card .cat-count,
.cat-card .count {
  font-size: 0.82rem;
  color: var(--ink-mute);
}

/* === ITEM CARDS — Airbnb listing === */
.items-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px 20px;
}

.item-card {
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform .25s var(--ease-out);
  overflow: visible;
  padding: 0;
}
.item-card:hover {
  transform: translateY(-2px);
}
.item-card .item-img,
.item-card .item-photo,
.item-card .img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-card .item-img > *,
.item-card .item-photo > * {
  transition: transform .5s var(--ease-out);
}
.item-card:hover .item-img > *,
.item-card:hover .item-photo > * {
  transform: scale(1.05);
}
.item-card .item-emoji {
  font-size: 3.5rem;
  opacity: 0.9;
}
.item-card .item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0 0 2px;
  letter-spacing: -0.005em;
}
.item-card .item-location,
.item-card .item-meta {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin: 0;
}
.item-card .item-price {
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
  font-size: 0.92rem;
}
.item-card .item-price .price-unit {
  font-weight: 400;
  color: var(--ink-mute);
}

.item-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* === HOW IT WORKS === */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.how-step {
  padding: 0;
  text-align: left;
}
.how-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 1;
  font-family: var(--font-display);
  letter-spacing: 0;
}
.how-step h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  font-weight: 600;
}
.how-step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* === TRUST STRIP (dark band) === */
.trust-strip {
  background: var(--ink);
  color: white;
  padding: 64px 0;
}
.trust-strip h2 {
  color: white;
  font-weight: 700;
}
.trust-strip p {
  color: rgba(255,255,255,.75);
}
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.trust-pillar h4 {
  color: white;
  font-size: 1rem;
  margin: 0 0 8px;
  font-weight: 600;
}
.trust-pillar p {
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  line-height: 1.5;
}
.trust-pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

/* === TOURIST CALLOUT === */
.tourist-callout {
  background: var(--ink);
  color: white;
  border-radius: var(--r-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.tourist-callout h2 {
  color: white;
  font-weight: 700;
}
.tourist-callout p {
  color: rgba(255,255,255,.8);
}
.tourist-callout::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

/* === WAITLIST SECTION === */
.waitlist-section {
  background: var(--bg-soft);
  padding: 64px 0;
}
.waitlist-section h2 { color: var(--ink); font-weight: 700; }
.waitlist-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.waitlist-form .btn-primary,
.waitlist-form button {
  background: var(--primary);
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 1rem;
  width: 100%;
}
.waitlist-form input,
.waitlist-form select {
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--surface);
}
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--ink);
}

/* === HOSTING CTA / CALCULATOR === */
.cta-host {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-host h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
}
.cta-host-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px;
  margin: 24px 0;
}
.cta-stat .num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.cta-stat .label {
  font-size: 0.78rem;
  color: var(--ink-mute);
}
.calc-card {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 28px;
}
.calc-card h4 {
  margin: 0 0 16px;
  font-size: 0.95rem;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.92rem;
}
.calc-row.total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 700;
  font-size: 1.1rem;
}
@media (max-width: 800px) {
  .cta-host { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
}

/* === FOOTER === */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  color: var(--ink-soft);
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
footer h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--ink);
}
footer a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.88rem;
  padding: 5px 0;
  text-decoration: none;
}
footer a:hover { color: var(--ink); text-decoration: underline; }
.footer-disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 720px;
}
.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-mute);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* === PAGE HEROES (non-home) === */
.page-hero {
  background: var(--bg);
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 8px 0 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.55;
}

/* === BROWSE PAGE === */
.browse-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 32px 0 64px;
}
.browse-sidebar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: calc(var(--topbar-h) + 16px);
}
@media (max-width: 900px) {
  .browse-layout { grid-template-columns: 1fr; }
  .browse-sidebar { position: relative; top: 0; }
}

/* === DETAIL PAGE === */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 40px 0;
}
.booking-widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--topbar-h) + 16px);
  box-shadow: var(--shadow-card);
}
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .booking-widget { position: relative; top: 0; }
}

/* === MODAL === */
.modal {
  border-radius: var(--r-xl);
  max-width: 580px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
}
.modal h2 {
  font-weight: 700;
  font-size: 1.4rem;
}

/* === TOAST === */
.toast {
  background: var(--ink);
  color: white;
  border-radius: var(--r-md);
  padding: 14px 22px;
  font-weight: 500;
  font-size: 0.92rem;
  box-shadow: var(--shadow-lg);
}

/* === PAGE FADE-IN === */
@keyframes rento-page-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
main#app > section {
  animation: rento-page-in .6s var(--ease-out) both;
}

/* === FOCUS RINGS (accessibility) === */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* === FORM INPUTS BASELINE === */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="search"],
select,
textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--ink);
  transition: border-color .15s;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--ink);
}


/* ============================================================
   AGREEMENT MODAL (booking step)
   ============================================================ */
.modal { padding: 36px; max-width: 640px; max-height: 90vh; overflow-y: auto; }
.agreement-modal h2 {
  font-size: 1.6rem;
  margin: 4px 0 8px;
  letter-spacing: -0.02em;
}
.agreement-summary {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agreement-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.92rem;
}
.agreement-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  padding-top: 2px;
}
.agreement-value { color: var(--ink); line-height: 1.5; }
.agreement-value .muted { color: var(--ink-mute); }

.agreement-terms {
  margin: 12px 0 0;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.agreement-terms li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.agreement-terms li::marker {
  color: var(--primary);
  font-weight: 600;
}

.agreement-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--primary-soft);
  border-radius: var(--r-md);
}
.agreement-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
  color: var(--ink);
}
.agreement-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

@media (max-width: 600px) {
  .modal { padding: 24px; }
  .agreement-row { grid-template-columns: 1fr; gap: 4px; }
  .agreement-label { font-size: 0.7rem; }
}

/* ============================================================
   PROMOTE LISTING PAGE
   ============================================================ */
.promote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.promote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.promote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.promote-card-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 30px -8px rgba(224,83,61,.25);
  transform: scale(1.03);
}
.promote-pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.promote-pkg-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.promote-pkg-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.promote-pkg-dur {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-mute);
}
.promote-pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.promote-pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--ink);
}

.promote-how {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  margin-bottom: 32px;
}
.promote-how h3 {
  text-align: center;
  margin: 0 0 28px;
  font-size: 1.3rem;
  font-weight: 700;
}
.promote-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.promote-step {
  text-align: center;
}
.promote-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.promote-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

.promote-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-style: italic;
  padding: 16px;
  background: var(--primary-soft);
  border-radius: var(--r-md);
}

/* Promoted listing badge in item card */
.item-badge-promoted {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold, #FFB400);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 2;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .promote-grid { grid-template-columns: 1fr; }
  .promote-card-featured { transform: scale(1); }
  .promote-how-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ★★★★ FINAL HERO REWRITE — clean, centered, professional
   This overrides everything above. Airbnb-style.
   ============================================================ */

/* === Layout reset for hero === */
body:not(.app-mode) .hero {
  padding: 64px 0 96px !important;
  background: var(--bg);
  position: relative;
}
body:not(.app-mode) .hero::before,
body:not(.app-mode) .hero::after {
  display: none !important;
}

.hero > .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* CENTER the hero content — no more grid splitting */
.hero-grid {
  display: block !important;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  grid-template-columns: none !important;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Hide the broken visual cards entirely — we don't need them */
.hero-visual,
.hero-illu,
.hero-illu-card {
  display: none !important;
}

/* Eyebrow pill — refined */
.hero-eyebrow {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-deep);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-transform: none;
}
.hero-eyebrow::before { display: none !important; }

/* Headline — big, balanced, centered */
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  margin: 0 0 20px !important;
  max-width: 18ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

/* Sub-text — readable, centered */
.hero p.hero-sub,
.hero p {
  font-size: 1.15rem !important;
  line-height: 1.5 !important;
  color: var(--ink-soft) !important;
  max-width: 540px !important;
  margin: 0 auto 36px !important;
  text-align: center;
}

/* CTA buttons — center them */
.hero-cta {
  display: flex !important;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Trust pill below CTA — refined */
.hero-trust-pill,
.islandis-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 16px;
}
.hero-trust-pill .check,
.islandis-trust-pill .check {
  background: var(--success);
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
}

/* === SEARCH BAR — Airbnb-style, full width === */
.hero-search-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero-search-wrap .search-bar,
.search-bar {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-pill) !important;
  padding: 0 !important;
  box-shadow: var(--shadow-md) !important;
  display: flex !important;
  align-items: stretch !important;
  max-width: 100% !important;
  margin: 0 !important;
  transition: box-shadow .25s var(--ease-out) !important;
  overflow: hidden;
}
.hero-search-wrap .search-bar:hover,
.search-bar:hover {
  box-shadow: var(--shadow-lg) !important;
}

/* Each field is a column with label on top, input below */
.search-bar .search-field {
  flex: 1;
  display: flex !important;
  flex-direction: column !important;
  padding: 14px 24px !important;
  text-align: left !important;
  position: relative;
  cursor: pointer;
  transition: background .15s;
  border-radius: var(--r-pill);
  min-width: 0;
}
.search-bar .search-field:hover {
  background: var(--bg-soft);
}
.search-bar .search-field + .search-field {
  border-left: 1px solid var(--line);
}
.search-bar .search-field label {
  display: block !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  color: var(--ink) !important;
  margin-bottom: 4px !important;
  text-transform: uppercase;
  pointer-events: none;
}
.search-bar .search-field input,
.search-bar .search-field select {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 0.92rem !important;
  font-family: inherit !important;
  color: var(--ink) !important;
  width: 100% !important;
  outline: none !important;
  appearance: none;
}
.search-bar .search-field input::placeholder,
.search-bar .search-field select option:first-child {
  color: var(--ink-mute);
}
.search-bar .search-field input[type="date"] {
  font-family: inherit;
  cursor: pointer;
  color-scheme: light;
}

/* Search button — circular at the right */
.search-bar .search-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--r-pill) !important;
  padding: 0 28px !important;
  margin: 8px !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  cursor: pointer !important;
  transition: background .15s, transform .15s !important;
  min-height: 52px;
  white-space: nowrap;
}
.search-bar .search-btn:hover {
  background: var(--primary-2) !important;
  transform: scale(1.02);
}
.search-bar .search-btn span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.search-bar .search-btn::before {
  content: '🔍';
  font-size: 0.95rem;
  display: none;
}

@media (max-width: 800px) {
  .hero-search-wrap .search-bar,
  .search-bar {
    flex-direction: column !important;
    border-radius: var(--r-lg) !important;
    padding: 8px !important;
  }
  .search-bar .search-field {
    padding: 12px 16px !important;
    border-radius: var(--r-md) !important;
  }
  .search-bar .search-field + .search-field {
    border-left: none !important;
    border-top: 1px solid var(--line);
  }
  .search-bar .search-btn {
    margin: 8px 0 0 !important;
    padding: 14px !important;
    width: 100%;
    border-radius: var(--r-md) !important;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
  }
}


/* ============================================================
   ★★★★★ GREEN THEME + PROMINENT CATEGORIES
   ============================================================ */

/* Make sure hero eyebrow uses the new green soft */
.hero-eyebrow {
  background: var(--primary-soft) !important;
  color: var(--primary-deep) !important;
}

/* Logo back to green */
.logo-text,
.logo-mark {
  color: var(--primary) !important;
}

/* CTA primary button → green */
.btn-primary {
  background: var(--primary) !important;
  color: white !important;
}
.btn-primary:hover {
  background: var(--primary-2) !important;
  box-shadow: 0 4px 12px rgba(45, 91, 63, .3) !important;
}

/* Search button → green */
.search-bar .search-btn {
  background: var(--primary) !important;
}
.search-bar .search-btn:hover {
  background: var(--primary-2) !important;
}

/* === PROMINENT CATEGORIES SECTION === */
.categories-prominent {
  background: var(--bg);
  padding: 64px 0 80px !important;
  border-top: 1px solid var(--line-soft);
}

.cat-prominent-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.cat-prominent-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  margin: 0 !important;
  color: var(--ink) !important;
}
.cat-view-all {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 8px 0;
}
.cat-view-all:hover {
  color: var(--primary-2);
  text-decoration: underline;
}

.cat-prominent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cat-prominent-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 20px;
  cursor: pointer;
  text-align: left;
  transition: all .25s var(--ease-out);
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--ink);
  min-height: 160px;
  overflow: hidden;
}
.cat-prominent-card::after {
  content: '→';
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--ink-mute);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .25s var(--ease-out);
}
.cat-prominent-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -12px rgba(45, 91, 63, .22);
}
.cat-prominent-card:hover::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary);
}
.cat-prominent-card:hover .cat-prominent-icon {
  transform: scale(1.1);
}

.cat-prominent-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  transition: transform .3s var(--ease-out);
}
.cat-prominent-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cat-prominent-count {
  font-size: 0.82rem;
  color: var(--ink-mute);
}

/* Hide the old "cat-grid" style from inside this prominent section */
.categories-prominent .cat-grid { display: none; }

@media (max-width: 1000px) {
  .cat-prominent-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .cat-prominent-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-prominent-card {
    min-height: 130px;
    padding: 20px 16px;
  }
  .cat-prominent-icon { font-size: 1.8rem; margin-bottom: 12px; }
  .cat-prominent-name { font-size: 0.95rem; }
}

/* === Tourist callout — adjust accent button for new palette === */
.btn-accent {
  background: var(--accent) !important;
  color: white !important;
}
.btn-accent:hover {
  background: #b04e30 !important;
}

/* === Hero trust pill — make sure check icon is green === */
.hero-trust-pill .check,
.islandis-trust-pill .check {
  background: var(--primary) !important;
}

/* === Promoted listing badge — use accent (terracotta) instead of gold === */
.item-badge-promoted {
  background: var(--accent) !important;
  color: white !important;
}

/* === Footer brand color === */
footer .logo-text,
footer .logo-mark {
  color: var(--primary) !important;
}


/* ============================================================
   ★★★★★★ FINAL POLISH — Clean hero + category nav strip
   ============================================================ */

/* === Category navigation strip — Airbnb-style at top === */
.cat-nav-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 24px 0 16px !important;
  position: sticky;
  top: var(--topbar-h);
  z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255,255,255,.95);
}

.cat-nav-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 8px;
}
.cat-nav-row::-webkit-scrollbar { display: none; }

.cat-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  color: var(--ink-mute);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .2s var(--ease-out);
  min-width: 90px;
  position: relative;
  cursor: pointer;
}
.cat-nav-item:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}
.cat-nav-item.active {
  color: var(--ink);
  border-color: var(--ink);
}

.cat-nav-icon {
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0.85;
  transition: opacity .2s, transform .2s;
}
.cat-nav-item:hover .cat-nav-icon {
  opacity: 1;
  transform: translateY(-2px);
}

.cat-nav-label {
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* === Hero — stripped down for clean look === */
body:not(.app-mode) .hero {
  padding: 80px 0 96px !important;
}

.hero-grid {
  margin-bottom: 56px !important;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.6rem) !important;
  line-height: 1.02 !important;
  max-width: 16ch;
  margin: 0 auto 0 !important;
}

/* === Better search bar — refined Airbnb-style === */
.hero-search-wrap {
  max-width: 980px !important;
  padding: 0 16px;
}

.search-bar .search-field label {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--ink) !important;
  margin-bottom: 2px !important;
}

.search-bar .search-field input,
.search-bar .search-field select {
  font-size: 0.95rem !important;
  color: var(--ink) !important;
  padding-top: 2px !important;
}
.search-bar .search-field input::placeholder {
  color: var(--ink-mute);
  opacity: 1;
}

/* Search button with icon */
.search-bar .search-btn {
  padding: 0 24px !important;
  font-weight: 600 !important;
  gap: 8px !important;
  min-height: 56px !important;
}
.search-btn-icon {
  font-size: 1rem;
  filter: grayscale(1) brightness(20);
}
.search-btn-label { display: inline; }

@media (max-width: 900px) {
  body:not(.app-mode) .hero { padding: 56px 0 64px !important; }
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem) !important;
  }
  .cat-nav-strip { padding: 16px 0 10px !important; }
  .cat-nav-row { justify-content: flex-start; gap: 4px; }
  .cat-nav-item { min-width: 80px; padding: 8px 12px; }
  .cat-nav-icon { font-size: 1.5rem; }
  .cat-nav-label { font-size: 0.72rem; }
}

@media (max-width: 600px) {
  .search-btn-label { display: none; }
  .search-bar .search-btn {
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    margin: 8px !important;
    min-height: 56px !important;
  }
  .search-btn-icon { font-size: 1.2rem; }
}


/* ============================================================
   ★★★★★★★ LARGER SEARCH + QUICK SEARCH TAGS + VALUE GRID
   ============================================================ */

/* === Bigger search bar === */
.hero-search-wrap {
  max-width: 1100px !important;
  padding: 0 16px;
}

.search-bar {
  padding: 4px !important;
  border-width: 1.5px !important;
}

.search-bar .search-field {
  padding: 18px 28px !important;
  min-height: 72px;
}

.search-bar .search-field label {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
}

.search-bar .search-field input,
.search-bar .search-field select {
  font-size: 1rem !important;
  padding-top: 2px !important;
}

.search-bar .search-btn {
  padding: 0 32px !important;
  min-height: 64px !important;
  font-size: 1rem !important;
  margin: 4px !important;
}
.search-btn-icon { font-size: 1.1rem; }

/* === Quick search tags under search === */
.quick-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.quick-tag-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-weight: 500;
  margin-right: 4px;
}
.quick-tag {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.quick-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

/* === Value grid section (2 cards side by side) === */
.value-grid-section {
  padding: 64px 0 !important;
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all .25s var(--ease-out);
}
.value-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px -12px rgba(45,91,63,.18);
}
.value-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.value-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 460px;
}
.value-card-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.value-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.value-step-text {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.45;
  padding-top: 4px;
}

.value-calculator {
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-bottom: 20px;
}
.value-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 4px 0;
}
.value-calc-total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

.value-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white !important;
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all .15s;
}
.value-card-cta:hover {
  background: var(--primary-2);
  color: white !important;
}

@media (max-width: 800px) {
  .value-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-card { padding: 28px 24px; }
}

/* ============================================================
   ★★★★★★★★ SIDEBAR LAYOUT — Categories permanently on the left
   ============================================================ */

/* Hide the old top-strip if it shows up anywhere */
.cat-nav-strip { display: none !important; }

.with-sidebar-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - var(--topbar-h));
  position: relative;
  background: var(--bg);
}

.rento-sidebar {
  background: var(--surface);
  border-right: 1px solid var(--line);
  position: sticky;
  top: var(--topbar-h);
  height: calc(100vh - var(--topbar-h));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.rento-sidebar::-webkit-scrollbar { width: 6px; }
.rento-sidebar::-webkit-scrollbar-track { background: transparent; }
.rento-sidebar::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 3px;
}

.rento-sidebar-inner {
  padding: 24px 12px 80px;
}

.rento-sidebar-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 8px 14px 14px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 8px;
}

.rento-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rento-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-md);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s;
  position: relative;
}
.rento-sidebar-item:hover {
  background: var(--bg-soft);
  color: var(--primary-deep);
}
.rento-sidebar-item.active {
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-weight: 600;
}
.rento-sidebar-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--primary);
  border-radius: 0 3px 3px 0;
}

.rento-sb-icon {
  font-size: 1.2rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}

.rento-sb-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rento-sb-count {
  font-size: 0.72rem;
  color: var(--ink-mute);
  background: var(--bg-soft);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-weight: 500;
  min-width: 28px;
  text-align: center;
}
.rento-sidebar-item.active .rento-sb-count {
  background: white;
  color: var(--primary-deep);
}

.rento-sidebar-divider {
  height: 1px;
  background: var(--line-soft);
  margin: 16px 8px;
}

.rento-sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rento-sb-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 14px 10px;
}

.rento-sidebar-loc {
  font-size: 0.88rem;
}

/* === MAIN CONTENT AREA — alongside sidebar === */
.with-sidebar-main {
  min-width: 0;
  overflow: hidden;
  padding-bottom: 40px;
}

/* === Tighten container max-width since we have a sidebar now === */
.with-sidebar-main .container {
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}

.with-sidebar-main .hero-search-wrap {
  max-width: 100% !important;
  padding: 0;
}

/* Browse layout fix when inside sidebar */
.with-sidebar-main .browse-layout {
  grid-template-columns: 220px 1fr;
}

/* === MOBILE: sidebar becomes a drawer === */
@media (max-width: 900px) {
  .with-sidebar-layout {
    grid-template-columns: 1fr;
  }
  .rento-sidebar {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    width: 280px;
    height: calc(100vh - var(--topbar-h));
    z-index: 100;
    transform: translateX(-100%);
    transition: transform .25s var(--ease-out);
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
  }
  .rento-sidebar.open {
    transform: translateX(0);
  }
  .with-sidebar-main .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* Show a floating button to open sidebar on mobile */
  .sidebar-mobile-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    box-shadow: var(--shadow-lg);
    font-size: 1.3rem;
    cursor: pointer;
  }
}
@media (min-width: 901px) {
  .sidebar-mobile-toggle { display: none; }
}

/* === Hero adjustments when inside sidebar layout === */
.with-sidebar-main .hero {
  padding: 56px 0 64px !important;
}
.with-sidebar-main .hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem) !important;
}


/* ============================================================
   ★★★★★★★★ INTERACTIVE EARNINGS CALCULATOR
   ============================================================ */

.value-card-calc {
  background: linear-gradient(135deg, #2D5B3F 0%, #1F4530 100%) !important;
  color: white !important;
  border-color: var(--primary-deep) !important;
}
.value-card-calc h3,
.value-card-calc p {
  color: white !important;
}
.value-card-calc p {
  opacity: 0.85;
}

.earn-calc {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 22px 22px 20px;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.earn-calc-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.earn-calc-label:first-child { margin-top: 0; }

.earn-calc select {
  width: 100%;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  border: none;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.earn-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}
.earn-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.earn-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
  transition: transform .15s;
}
.earn-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.earn-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.earn-slider-value {
  background: white;
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  min-width: 40px;
  text-align: center;
}

.earn-result {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.earn-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,.85);
}
.earn-result-row .negative { color: rgba(255,200,200,.9); }

.earn-result-total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 1.15rem !important;
  font-weight: 700;
  color: white !important;
}

.earn-yearly {
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  text-align: right;
}
.earn-yearly strong {
  color: white;
  font-size: 0.92rem;
}

.value-card-calc .value-card-cta {
  background: white !important;
  color: var(--primary-deep) !important;
}
.value-card-calc .value-card-cta:hover {
  background: var(--bg) !important;
  color: var(--primary-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}


/* ============================================================
   ★★★★★★★★★ FINAL UI POLISH
   - Centered search bar
   - 5-column items grid
   - Big earnings card (full width)
   - Expandable region groups in sidebar
   ============================================================ */

/* === CENTER the search bar === */
.with-sidebar-main .hero {
  text-align: center;
}
.with-sidebar-main .hero-grid {
  text-align: center !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}
.with-sidebar-main .hero h1 {
  margin-left: auto !important;
  margin-right: auto !important;
}
.with-sidebar-main .hero-search-wrap {
  margin-left: auto !important;
  margin-right: auto !important;
}
.with-sidebar-main .hero-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

/* === 5-column items grid for Featured section === */
.items-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 16px;
}
@media (max-width: 1400px) {
  .items-grid-5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1100px) {
  .items-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .items-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
}

/* Tighter item cards in 5-grid */
.items-grid-5 .item-card {
  font-size: 0.9rem;
}
.items-grid-5 .item-card .item-img,
.items-grid-5 .item-card .item-photo,
.items-grid-5 .item-card .img-wrap {
  aspect-ratio: 1 / 1;
}

/* === BIG EARNINGS CARD (single full-width section) === */
.earnings-section {
  padding: 80px 0 !important;
}
.earnings-card {
  background: linear-gradient(135deg, #2D5B3F 0%, #1F4530 100%);
  border-radius: 24px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(45, 91, 63, .4);
}
.earnings-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.earnings-card-content h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 16px 0 16px;
  line-height: 1.1;
}
.earnings-card-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 28px;
  max-width: 440px;
}
.earnings-card-calc {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .earnings-card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 32px;
  }
}

/* === REGION GROUPS in sidebar === */
.rento-region-group {
  margin-bottom: 1px;
}
.rento-region-head {
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}
.rento-region-chevron {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ink-mute);
  font-weight: 400;
  margin-right: 4px;
}
.rento-region-group.open .rento-region-chevron {
  color: var(--primary);
}
.rento-region-cities {
  display: flex;
  flex-direction: column;
  margin-left: 22px;
  margin-bottom: 4px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}
.rento-region-city {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: var(--ink-soft) !important;
  padding: 6px 10px !important;
}
.rento-region-city:hover {
  background: var(--bg-soft) !important;
  color: var(--primary) !important;
}


/* ============================================================
   ★★★★★★★★★★ FINAL FIXES — pre-launch polish
   ============================================================ */

/* === Center the search bar properly === */
.with-sidebar-main .hero-search-wrap {
  margin: 0 auto !important;
  max-width: 1000px !important;
}
.with-sidebar-main .hero-grid {
  margin-bottom: 40px !important;
}
.with-sidebar-main .hero-text {
  align-items: center !important;
}
.with-sidebar-main .hero h1 {
  text-align: center;
}

/* === Smaller item cards in 5-grid === */
.items-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 24px 14px !important;
}
.items-grid-5 .item-card {
  font-size: 0.86rem !important;
}
.items-grid-5 .item-card .item-title {
  font-size: 0.92rem !important;
}
.items-grid-5 .item-card .item-meta,
.items-grid-5 .item-card .item-location {
  font-size: 0.78rem !important;
}
.items-grid-5 .item-card .item-price {
  font-size: 0.86rem !important;
}
@media (max-width: 1300px) {
  .items-grid-5 { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 1000px) {
  .items-grid-5 { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 700px) {
  .items-grid-5 { grid-template-columns: repeat(2, 1fr) !important; gap: 16px 10px !important; }
}

/* === Earnings card: better calculator inside green === */
.earn-calc-title {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: white !important;
  margin: 0 0 4px !important;
  letter-spacing: -0.02em;
}
.earn-calc-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  margin: 0 0 22px !important;
}

.earn-calc {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 16px !important;
  padding: 28px 26px !important;
  margin-bottom: 0 !important;
}

.earn-calc .earn-slider {
  width: 100%;
  margin-top: 8px;
}
.earn-calc .earn-slider::-webkit-slider-thumb {
  background: var(--accent, #C75D3E) !important;
  width: 22px !important;
  height: 22px !important;
  box-shadow: 0 0 0 4px rgba(199,93,62,.15) !important;
}
.earn-calc .earn-slider::-moz-range-thumb {
  background: var(--accent, #C75D3E) !important;
  width: 22px !important;
  height: 22px !important;
}

.earn-result {
  margin-top: 24px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
}
.earn-result-row {
  padding: 7px 0 !important;
  font-size: 0.95rem !important;
}
.earn-result-row strong {
  color: white !important;
  font-weight: 700 !important;
}
.earn-result-row .negative {
  color: rgba(255,180,170,.85) !important;
}
.earn-result-total {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-top: 10px !important;
  padding-top: 14px !important;
}
.earn-result-total span {
  color: white !important;
}

/* Hide deprecated stuff */
.value-grid-section,
.waitlist-section,
.cta-host,
.hosting-cta { display: none !important; }

/* Hide demo notes and disclaimers we don't want anymore */
.promote-disclaimer,
.acc-disclaimer { display: none !important; }

/* ============================================================
   ★★★★★★★★★★★ HERO + SEARCH BAR — Final Glory
   Make this the centerpiece. Big, beautiful, centered.
   ============================================================ */

/* Beautiful hero background — subtle gradient + glow */
.with-sidebar-main .hero {
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, var(--primary-soft) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 50% 100%, rgba(199,93,62,.06) 0%, transparent 60%),
    var(--bg) !important;
  padding: 96px 0 120px !important;
  position: relative;
}

.with-sidebar-main .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(45,91,63,.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(199,93,62,.04) 1px, transparent 1px);
  background-size: 40px 40px, 56px 56px;
  pointer-events: none;
  opacity: 0.5;
}

.with-sidebar-main .hero > .container {
  position: relative;
  z-index: 1;
}

/* Hero text — bigger, centered */
.with-sidebar-main .hero-text {
  align-items: center !important;
  text-align: center;
}

.with-sidebar-main .hero h1 {
  font-size: clamp(3rem, 6.5vw, 4.8rem) !important;
  line-height: 1.02 !important;
  margin: 24px auto 28px !important;
  text-align: center;
  max-width: 14ch;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.with-sidebar-main .hero-eyebrow {
  font-size: 0.85rem !important;
  padding: 8px 20px !important;
  background: rgba(255,255,255,.7) !important;
  border: 1px solid var(--line) !important;
  backdrop-filter: blur(10px);
  font-weight: 600 !important;
  color: var(--primary-deep) !important;
}

/* === BIG SEARCH BAR === */
.with-sidebar-main .hero-search-wrap {
  max-width: 1080px !important;
  margin: 32px auto 0 !important;
  padding: 0 8px !important;
  position: relative;
}

.with-sidebar-main .hero-search-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 100px;
  background: radial-gradient(ellipse, rgba(45,91,63,.15) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.with-sidebar-main .search-bar {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  border-radius: 100px !important;
  padding: 8px !important;
  box-shadow:
    0 1px 2px rgba(0,0,0,.06),
    0 12px 30px -8px rgba(0,0,0,.12),
    0 32px 60px -20px rgba(45,91,63,.15) !important;
  min-height: 90px;
  align-items: center !important;
}

.with-sidebar-main .search-bar:hover {
  box-shadow:
    0 1px 2px rgba(0,0,0,.06),
    0 16px 40px -8px rgba(0,0,0,.18),
    0 40px 70px -20px rgba(45,91,63,.22) !important;
  transform: translateY(-2px);
}

.with-sidebar-main .search-bar .search-field {
  padding: 18px 32px !important;
  min-height: 74px;
  border-radius: 100px !important;
  position: relative;
}

.with-sidebar-main .search-bar .search-field + .search-field {
  border-left: 1px solid var(--line) !important;
}

.with-sidebar-main .search-bar .search-field:hover {
  background: var(--bg-soft);
}

.with-sidebar-main .search-bar .search-field label {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  margin-bottom: 4px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.with-sidebar-main .search-bar .search-field input,
.with-sidebar-main .search-bar .search-field select {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
}

.with-sidebar-main .search-bar .search-field input::placeholder {
  color: var(--ink-mute);
  font-weight: 400;
}

/* Big circular search button */
.with-sidebar-main .search-bar .search-btn {
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 0 32px !important;
  min-height: 64px !important;
  height: 64px !important;
  margin: 4px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 10px !important;
  letter-spacing: 0.005em;
  box-shadow: 0 4px 12px -2px rgba(45,91,63,.4);
  transition: all .2s var(--ease-out);
}

.with-sidebar-main .search-bar .search-btn:hover {
  background: var(--primary-2) !important;
  transform: scale(1.04);
  box-shadow: 0 6px 18px -2px rgba(45,91,63,.5);
}

.with-sidebar-main .search-bar .search-btn .search-btn-icon {
  font-size: 1.2rem;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .with-sidebar-main .hero {
    padding: 64px 0 80px !important;
  }
  .with-sidebar-main .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.2rem) !important;
  }
  .with-sidebar-main .search-bar {
    min-height: auto;
  }
  .with-sidebar-main .search-bar .search-field {
    padding: 14px 24px !important;
    min-height: 64px;
  }
}

@media (max-width: 700px) {
  .with-sidebar-main .search-bar {
    flex-direction: column !important;
    border-radius: 28px !important;
    padding: 12px !important;
    min-height: auto;
  }
  .with-sidebar-main .search-bar .search-field {
    width: 100%;
    border-radius: 16px !important;
    padding: 14px 18px !important;
    text-align: left;
  }
  .with-sidebar-main .search-bar .search-field + .search-field {
    border-left: none !important;
    border-top: 1px solid var(--line) !important;
  }
  .with-sidebar-main .search-bar .search-btn {
    width: 100% !important;
    margin: 4px 0 0 !important;
    border-radius: 16px !important;
  }
}


/* === Trust strip under search === */
.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-item-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.trust-divider {
  color: var(--line-strong);
  font-weight: 400;
}
@media (max-width: 700px) {
  .hero-trust-strip { gap: 8px 14px; font-size: 0.82rem; }
  .trust-divider { display: none; }
}

/* ============================================================
   ★ FINAL HERO REWRITE — fix broken layout
   ============================================================ */

/* Remove the trust-strip entirely */
.hero-trust-strip { display: none !important; }

/* === MAKE HERO PROPERLY LAID OUT === */
.with-sidebar-main .hero {
  padding: 80px 24px 100px !important;
  text-align: center;
}
.with-sidebar-main .hero > .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.with-sidebar-main .hero-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 48px !important;
}

.with-sidebar-main .hero-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 900px !important;
}

.with-sidebar-main .hero-eyebrow {
  display: inline-block !important;
  margin: 0 auto 20px !important;
}

.with-sidebar-main .hero h1 {
  margin: 0 auto !important;
  text-align: center !important;
  max-width: 18ch !important;
}

/* === BIG WIDE SEARCH BAR — full width, centered === */
.with-sidebar-main .hero-search-wrap {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: block !important;
  position: relative;
}

.with-sidebar-main .hero-search-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 200px;
  background: radial-gradient(ellipse, rgba(45,91,63,.12) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.with-sidebar-main .search-bar {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  background: white !important;
  border: 1px solid var(--line) !important;
  border-radius: 100px !important;
  padding: 10px !important;
  width: 100% !important;
  box-shadow:
    0 4px 12px rgba(0,0,0,.06),
    0 20px 50px -16px rgba(0,0,0,.18),
    0 40px 80px -24px rgba(45,91,63,.20) !important;
  position: relative;
  z-index: 1;
  transition: all .25s var(--ease-out);
}

.with-sidebar-main .search-bar:hover {
  transform: translateY(-3px);
  box-shadow:
    0 6px 16px rgba(0,0,0,.08),
    0 26px 60px -16px rgba(0,0,0,.22),
    0 50px 100px -24px rgba(45,91,63,.28) !important;
}

.with-sidebar-main .search-bar .search-field {
  flex: 1 1 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 16px 32px !important;
  text-align: left !important;
  border-radius: 100px !important;
  position: relative;
  cursor: pointer;
  transition: background .15s;
  min-width: 0;
  min-height: 76px;
}

.with-sidebar-main .search-bar .search-field:hover {
  background: var(--bg-soft) !important;
}

.with-sidebar-main .search-bar .search-field + .search-field {
  position: relative;
}
.with-sidebar-main .search-bar .search-field + .search-field::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: var(--line);
}
.with-sidebar-main .search-bar .search-field:hover + .search-field::before,
.with-sidebar-main .search-bar .search-field + .search-field:hover::before {
  background: transparent;
}

.with-sidebar-main .search-bar .search-field label {
  display: block !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  margin-bottom: 4px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  pointer-events: none;
}

.with-sidebar-main .search-bar .search-field input,
.with-sidebar-main .search-bar .search-field select {
  display: block !important;
  width: 100% !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  color: var(--ink) !important;
  outline: none !important;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.with-sidebar-main .search-bar .search-field input::placeholder {
  color: var(--ink-mute) !important;
  font-weight: 400 !important;
  opacity: 1;
}

.with-sidebar-main .search-bar .search-field input[type="date"] {
  color-scheme: light;
  text-transform: none;
}

/* BIG round search button on the right */
.with-sidebar-main .search-bar .search-btn {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px !important;
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 0 36px !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.005em;
  cursor: pointer !important;
  box-shadow: 0 4px 14px -2px rgba(45,91,63,.5) !important;
  transition: all .2s var(--ease-out) !important;
  white-space: nowrap;
}

.with-sidebar-main .search-bar .search-btn:hover {
  background: var(--primary-2) !important;
  transform: scale(1.04);
  box-shadow: 0 8px 20px -2px rgba(45,91,63,.6) !important;
}

.with-sidebar-main .search-bar .search-btn .search-btn-icon {
  font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .with-sidebar-main .hero {
    padding: 48px 20px 64px !important;
  }
  .with-sidebar-main .search-bar {
    flex-direction: column !important;
    border-radius: 24px !important;
    padding: 12px !important;
  }
  .with-sidebar-main .search-bar .search-field {
    border-radius: 16px !important;
    padding: 14px 18px !important;
    min-height: 60px;
    width: 100%;
  }
  .with-sidebar-main .search-bar .search-field + .search-field::before {
    left: 16px;
    right: 16px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .with-sidebar-main .search-bar .search-btn {
    width: 100% !important;
    margin-top: 8px !important;
    padding: 16px !important;
    border-radius: 16px !important;
  }
}


/* ============================================================
   ★★★ MEGA SEARCH BAR — much bigger and grander
   Final attempt: search bar dominates the hero
   ============================================================ */

/* Forcibly hide trust strip everywhere */
.hero-trust-strip,
.trust-item-small,
.trust-divider,
.trust-ic { display: none !important; visibility: hidden !important; }

/* Make hero much bigger and search dominant */
.with-sidebar-main .hero {
  padding: 64px 32px 120px !important;
}

.with-sidebar-main .hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem) !important;
  margin-bottom: 56px !important;
}

/* === GIANT SEARCH BAR === */
.with-sidebar-main .hero-search-wrap {
  width: 100% !important;
  max-width: 1200px !important;
}

.with-sidebar-main .search-bar {
  padding: 14px !important;
  border-radius: 100px !important;
  border: 2px solid rgba(45,91,63,.12) !important;
  background: white !important;
  box-shadow:
    0 4px 16px rgba(0,0,0,.06),
    0 24px 60px -16px rgba(0,0,0,.20),
    0 50px 100px -32px rgba(45,91,63,.30) !important;
}

.with-sidebar-main .search-bar .search-field {
  padding: 22px 40px !important;
  min-height: 96px !important;
}

.with-sidebar-main .search-bar .search-field label {
  font-size: 0.9rem !important;
  margin-bottom: 6px !important;
  font-weight: 700 !important;
}

.with-sidebar-main .search-bar .search-field input,
.with-sidebar-main .search-bar .search-field select {
  font-size: 1.05rem !important;
  font-weight: 500 !important;
}

/* HUGE search button */
.with-sidebar-main .search-bar .search-btn {
  padding: 0 44px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  height: auto !important;
  align-self: stretch;
  margin: 0 !important;
  box-shadow: 0 8px 24px -4px rgba(45,91,63,.55) !important;
  gap: 12px !important;
}

.with-sidebar-main .search-bar .search-btn .search-btn-icon {
  font-size: 1.4rem !important;
}

.with-sidebar-main .search-bar .search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px -4px rgba(45,91,63,.65) !important;
}


/* ============================================================
   ★ HOW IT WORKS SECTION + TOURIST BANNER + TOURISTS PAGE
   ============================================================ */

/* === Clean "How it works" section on homepage === */
.how-section-clean {
  padding: 80px 24px !important;
  background: var(--bg-soft);
}

.how-clean-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.how-clean-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.how-clean-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.how-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.how-clean-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: all .25s var(--ease-out);
}
.how-clean-step:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(45,91,63,.25);
}

.how-clean-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.how-clean-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-soft);
  letter-spacing: -0.04em;
}

.how-clean-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.how-clean-step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* Trust row under steps */
.how-clean-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.trust-item-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.trust-ic-green {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .how-clean-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* === Tourist banner — small horizontal banner === */
.tourist-banner {
  padding: 48px 24px;
}
.tourist-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2D5B3F 0%, #1F4530 100%);
  color: white;
  border-radius: 24px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.tourist-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}
.tourist-banner-flag {
  font-size: 2.2rem;
  flex-shrink: 0;
}
.tourist-banner-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.tourist-banner-sub {
  color: rgba(255,255,255,.78);
  font-size: 0.92rem;
  line-height: 1.4;
}
.tourist-banner-cta {
  background: white;
  color: var(--primary-deep) !important;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all .15s;
}
.tourist-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

@media (max-width: 700px) {
  .tourist-banner-inner { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* === Tourists page — benefits grid === */
.tourist-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tourist-benefit {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all .2s var(--ease-out);
}
.tourist-benefit:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.tourist-benefit-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.tourist-benefit h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.tourist-benefit p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.tourist-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.tourist-popular-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.tourist-popular-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.tourist-popular-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.tourist-popular-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.tourist-popular-from {
  font-size: 0.82rem;
  color: var(--ink-mute);
}

@media (max-width: 800px) {
  .tourist-benefits-grid,
  .tourist-popular-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .tourist-benefits-grid,
  .tourist-popular-grid { grid-template-columns: 1fr; }
}

/* === Hide old tourist-callout (now replaced by how + banner) === */
.tourist-callout { display: none !important; }


/* ==========================================================
   RENTÓ — Production readiness additions
   Accessibility, FAQ, waitlist and promoted listings
   ========================================================== */

:root {
  --r-pill: 999px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

html { overflow-x: hidden; }
body { overflow-x: hidden; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(199, 93, 62, .35);
  outline-offset: 3px;
}

button,
.btn-primary,
.btn-accent,
.btn-outline,
.search-btn {
  min-height: 44px;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 18px auto 0;
}

.hero-cta {
  justify-content: center;
}

.item-img-badge-promoted {
  background: #fff7df;
  color: #6a4200;
  border: 1px solid rgba(193,154,75,.35);
}

.faq-section {
  background: var(--surface-2);
  padding: 72px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.faq-item p {
  color: var(--ink-soft);
  margin: 14px 0 0;
}

.waitlist-section {
  padding: 72px 0;
}

.waitlist-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
  background: linear-gradient(135deg, var(--primary), #1f3528);
  color: var(--primary-ink);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.waitlist-card h2,
.waitlist-card p { color: var(--primary-ink); }
.waitlist-card p { opacity: .88; }

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.waitlist-form textarea,
.waitlist-form button {
  grid-column: 1 / -1;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 13px 14px;
  font: inherit;
}

.waitlist-form button {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 760px) {
  .faq-grid,
  .waitlist-card,
  .waitlist-form {
    grid-template-columns: 1fr;
  }
  .waitlist-card { padding: 28px; }
  .hero-cta { align-items: stretch; }
  .hero-cta .btn-accent,
  .hero-cta .btn-outline { text-align: center; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


/* ==========================================================
   USER REQUESTED HERO + COMPACT FAQ REFINEMENTS
   ========================================================== */
.hero .hero-text { text-align: center; max-width: 980px; margin: 0 auto; }
.hero-grid { display: block; }
.hero h1 { margin-bottom: 0; }
.hero-sub, .hero-cta { display: none !important; }
.hero-search-wrap { margin-top: 40px; }

.faq-section-compact {
  padding: 32px 0 20px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-compact-head {
  display: grid;
  grid-template-columns: auto minmax(180px, 300px) 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.faq-compact-head .eyebrow { margin: 0; white-space: nowrap; }
.faq-compact-head h2 { margin: 0; font-size: clamp(1.45rem, 2vw, 2rem); }
.faq-compact-head p { margin: 0; color: var(--ink-mute); }
.faq-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}
.faq-tab {
  min-width: 260px;
  flex: 1 0 260px;
  scroll-snap-align: start;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.faq-tab:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.faq-tab[open] { border-color: rgba(44, 74, 54, .28); background: #fff; }
.faq-tab summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.faq-tab summary::-webkit-details-marker { display: none; }
.faq-tab summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}
.faq-tab[open] summary::after { content: '−'; }
.faq-tab p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .94rem;
}
.tourist-banner { display: none !important; }

@media (max-width: 760px) {
  .faq-compact-head { grid-template-columns: 1fr; gap: 8px; }
  .faq-tabs { display: grid; grid-template-columns: 1fr; overflow: visible; }
  .faq-tab { min-width: 0; flex-basis: auto; }
  .hero-search-wrap { margin-top: 28px; }
}


/* ==========================================================
   RENTÓ final polish v4
   ========================================================== */
.earnings-card {
  align-items: stretch;
}
.earnings-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.earnings-cta,
.value-card-cta.earnings-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 190px;
  min-height: 46px;
  padding: 12px 20px !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: var(--primary) !important;
  font-weight: 800 !important;
  border: 1px solid rgba(255,255,255,.65) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  text-decoration: none !important;
}
.earnings-cta:hover { transform: translateY(-1px); background: var(--bg) !important; }
.earn-calc-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  line-height: 1.45;
}
.earn-result-total span:last-child {
  font-size: 1.35rem;
}
.how-clean-head .hero-eyebrow { display: none; }
.how-clean-head h2 { margin-top: 0; }
.active-search-filter {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .88rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

/* FAQ as clean accordion rows */
.faq-page-hero { text-align: left; }
.faq-page-hero .hero-eyebrow { display: none; }
.faq-accordion {
  display: grid;
  gap: 12px;
}
.faq-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27,31,26,.05);
}
.faq-row summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 800;
  color: var(--ink);
}
.faq-row summary::-webkit-details-marker { display: none; }
.faq-plus {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--bg-soft);
  position: relative;
  flex: 0 0 auto;
}
.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  background: var(--primary);
  left: 9px;
  right: 9px;
  top: 15px;
  height: 2px;
  border-radius: 2px;
}
.faq-plus::after {
  transform: rotate(90deg);
}
.faq-row[open] .faq-plus::after { transform: rotate(0deg); }
.faq-answer {
  padding: 0 22px 22px;
  color: var(--ink-soft);
  max-width: 760px;
  line-height: 1.65;
}

/* Footer redesign */
.site-footer,
footer.site-footer,
body:not(.app-mode) footer.site-footer {
  background: linear-gradient(180deg, var(--surface-2) 0%, #efe8dc 100%);
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
  margin-top: 72px;
}
.site-footer .footer-grid,
footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(4, minmax(140px, 1fr));
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(44,74,54,.14);
}
.site-footer .footer-brand {
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(44,74,54,.12);
  border-radius: 24px;
  padding: 24px;
}
.site-footer .footer-brand p {
  max-width: 420px;
}
.footer-mini-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-mini-cta a {
  display: inline-flex !important;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 13px !important;
  font-weight: 700;
  color: var(--primary) !important;
  background: rgba(255,255,255,.6);
}
.site-footer .footer-col h4,
footer.site-footer h4 {
  color: var(--primary);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.site-footer .footer-col a,
footer.site-footer a {
  color: var(--ink-soft);
  font-size: .9rem;
  padding: 6px 0;
  text-decoration: none;
}
.site-footer .footer-col a:hover,
footer.site-footer a:hover {
  color: var(--accent);
  text-decoration: none;
}
.site-footer .footer-bottom,
footer.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  color: var(--ink-mute);
}
@media (max-width: 980px) {
  .site-footer .footer-grid,
  footer.site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .site-footer .footer-grid,
  footer.site-footer .footer-grid { grid-template-columns: 1fr; }
  .site-footer .footer-bottom { flex-direction: column; }
}

@media (max-width: 700px) {
  .earnings-card { padding: 28px 22px !important; }
  .earnings-cta { width: 100%; }
  .faq-row summary { padding: 18px; }
  .faq-answer { padding: 0 18px 18px; }
}


.browse-search-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.browse-search-input {
  flex: 1 1 360px;
  min-height: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 16px;
  box-shadow: var(--shadow-sm);
}
.browse-search-input input {
  border: 0;
  outline: 0;
  background: transparent;
  flex: 1;
  min-width: 140px;
  font: inherit;
  color: var(--ink);
}
.browse-search-input button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 800;
  padding: 10px 18px;
}
@media (max-width: 640px) {
  .browse-search-row { align-items: stretch; }
  .browse-search-input, .browse-sort { width: 100%; }
}

/* ==========================================================
   BROWSE PAGE — v5 cleanup
   Keep one category/location sidebar only. The inner filter card was removed.
   ========================================================== */
.browse-top {
  padding-top: 40px;
}
.browse-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 28px 0 22px;
}
.browse-page-head h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.browse-page-head p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-mute);
  font-size: 1rem;
}
.with-sidebar-main .browse-layout.browse-layout-full,
.browse-layout.browse-layout-full {
  display: block;
  padding-top: 8px;
}
.browse-layout-full .items-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.browse-clear {
  border: 1px solid var(--line);
  background: var(--surface);
  white-space: nowrap;
}
@media (min-width: 1500px) {
  .browse-layout-full .items-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 1100px) {
  .browse-layout-full .items-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .browse-page-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .browse-layout-full .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 460px) {
  .browse-layout-full .items-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================
   Hero CTA replacing the large search bar
   ========================================================== */
.hero-main-cta {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-browse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 68px;
  padding: 0 34px;
  border-radius: 999px;
  border: 0;
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.18rem);
  box-shadow: 0 18px 44px -18px rgba(44, 74, 54, .55);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.hero-browse-btn:hover {
  background: var(--primary-2);
  transform: translateY(-2px);
  box-shadow: 0 24px 54px -20px rgba(44, 74, 54, .65);
}
.hero-browse-icon {
  font-size: 1.25em;
}
.hero-cta-note {
  max-width: 520px;
  text-align: center;
  color: var(--ink-mute);
  font-size: .98rem;
  margin: 0;
}
@media (max-width: 640px) {
  .hero-browse-btn {
    width: 100%;
    min-height: 60px;
    padding: 0 22px;
  }
}

/* ==========================================================
   RENTÓ GROWTH / BUSINESS / PACKAGE FEATURES
   ========================================================== */
.rento-opportunity-section,
.rento-seo-section,
.rento-packages-strip {
  background: var(--surface);
}
.rento-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.rento-action-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.rento-action-card-primary {
  background: linear-gradient(135deg, #F7F3EC 0%, #F1D9CC 100%);
}
.rento-action-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: white;
  font-size: 1.7rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.rento-action-card h3 { font-size: 1.55rem; }
.rento-action-card p { color: var(--ink-soft); max-width: 520px; }
.rento-action-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.rento-request-teaser { padding: 40px 0; }
.rento-request-card,
.rento-packages-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--primary);
  color: var(--primary-ink);
  border-radius: var(--r-xl);
  padding: 38px;
}
.rento-request-card h2,
.rento-packages-strip-inner h2 { color: white; }
.rento-request-card p,
.rento-packages-strip-inner p { color: rgba(247,243,236,.82); margin: 0; }
.rento-request-card .eyebrow,
.rento-packages-strip-inner .eyebrow { color: #FFC4B0; }

.rento-seo-grid,
.rento-info-grid,
.rento-pack-grid,
.rento-business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.rento-seo-card,
.rento-info-card,
.rento-pack-card {
  display: block;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  color: var(--ink);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.rento-seo-card:hover,
.rento-info-card:hover,
.rento-pack-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  color: var(--ink);
}
.rento-seo-card span,
.rento-pack-card > span,
.rento-big-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: white;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.rento-seo-card h3,
.rento-pack-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.rento-seo-card p,
.rento-info-card p,
.rento-pack-card p { color: var(--ink-soft); font-size: .95rem; }
.rento-seo-card strong { color: var(--primary); }

.rento-growth-teaser {
  background: var(--bg-soft);
}
.rento-growth-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}
.rento-growth-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.rento-growth-cards button {
  text-align: left;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.rento-growth-cards strong { display: block; font-size: 1.2rem; color: var(--ink); }
.rento-growth-cards span { color: var(--ink-mute); }

.rento-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.rento-price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.rento-price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.rento-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
  font-weight: 700;
}
.rento-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 650;
  margin: 12px 0 18px;
}
.rento-price-card ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--ink-soft);
}
.rento-disclaimer {
  margin-top: 28px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  color: var(--ink-soft);
}
.rento-landing-hero .rento-big-icon { margin-bottom: 18px; }
.rento-landing-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.section-soft { background: var(--surface-2); }
.rento-pack-card button { margin-top: 16px; }

@media (max-width: 1000px) {
  .rento-seo-grid,
  .rento-info-grid,
  .rento-pack-grid,
  .rento-business-grid,
  .rento-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rento-growth-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .rento-action-grid,
  .rento-growth-cards,
  .rento-seo-grid,
  .rento-info-grid,
  .rento-pack-grid,
  .rento-business-grid,
  .rento-pricing-grid { grid-template-columns: 1fr; }
  .rento-request-card,
  .rento-packages-strip-inner { align-items: flex-start; flex-direction: column; padding: 26px; }
  .rento-action-card { padding: 26px; }
}


/* ==========================================================
   RENTÓ v9 refinements — cleaner home sections
   ========================================================== */
.rento-request-teaser,
.rento-growth-teaser {
  display: none !important;
}

.rento-opportunity-compact {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}

.rento-path-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.rento-path-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 10px;
}

.rento-path-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 620px;
}

.rento-action-grid-compact {
  gap: 18px;
}

.rento-action-grid-compact .rento-action-card {
  min-height: 0;
  padding: 26px;
  border-radius: 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.rento-action-grid-compact .rento-action-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.rento-action-grid-compact .rento-action-card-primary {
  background: linear-gradient(135deg, #FFF7F0 0%, #F1D9CC 100%);
}

.rento-action-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.rento-action-top .rento-action-icon {
  margin: 0;
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

.rento-action-grid-compact h3 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.rento-action-grid-compact p {
  margin: 0;
  line-height: 1.55;
}

.rento-action-grid-compact .rento-action-links {
  margin-top: 22px;
  padding-left: 72px;
}

@media (max-width: 760px) {
  .rento-action-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rento-action-grid-compact .rento-action-links {
    padding-left: 0;
  }
}


/* Launch footer cleanup */
.site-footer .footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.site-footer .footer-col a {
  line-height: 1.6;
}
.browse-page-head p, .hero-cta-note {
  display: none !important;
}
@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
