/* UB NOW .ORG — style.css v6 — clean rewrite */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --ink:       #1a1612;
  --ink-soft:  #2e2820;
  --cream:     #f5f0e8;
  --sand:      #e8dfc8;
  --sand-dark: #d4c9a8;
  --gold:      #c9933a;
  --gold-lt:   #e8b86d;
  --gold-pale: #f5e6cc;
  --rust:      #b54e2a;
  --sky:       #3a6b8a;
  --body:      #3d342a;
  --muted:     #7a6d5f;
  --r:         12px;
  --r-sm:      8px;
  --r-lg:      18px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--body); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(32px, 6vw, 54px); font-weight: 700; }
h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 600; }
h3 { font-size: 18px; font-weight: 600; }
p  { font-size: 15px; line-height: 1.7; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ── LABELS ── */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.label::before { content: ''; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: 40px; border: none; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,147,58,.3); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.btn-dark  { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--sand-dark); }
.btn-outline:hover { border-color: var(--ink); }

/* ─────────────── NAV ─────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--ink); height: 60px;
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo-text { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--gold-lt); }
.nav-logo-sub  { font-size: 12px; color: rgba(255,255,255,.35); font-weight: 300; margin-left: 4px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.6); font-size: 13px; padding: 6px 12px;
  border-radius: 20px; transition: all .18s;
}
.nav-links a:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-links .btn-gold { color: var(--ink); padding: 7px 16px; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-toggle { display: flex; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; overflow: hidden; }
.lang-btn {
  font-size: 11px; font-weight: 700; font-family: 'Outfit', sans-serif;
  padding: 5px 11px; color: rgba(255,255,255,.4); cursor: pointer;
  border: none; background: none; transition: all .18s;
}
.lang-btn.active { background: var(--gold); color: var(--ink); border-radius: 20px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.7); border-radius: 2px; }

/* ─────────────── HERO ─────────────── */
.hero { background: var(--ink); padding: 80px 0 64px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(58,107,138,.18) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 5% 80%, rgba(181,78,42,.12) 0%, transparent 50%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(201,147,58,.12); border: 1px solid rgba(201,147,58,.28);
  color: var(--gold-lt); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero h1 em { color: var(--gold-lt); font-style: italic; }
.hero-sub { color: rgba(255,255,255,.5); font-size: 15px; font-weight: 300; max-width: 420px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.stat-num   { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 700; color: var(--gold-lt); line-height: 1; margin-bottom: 3px; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.4); }

/* Hero visual panel */
.hero-visual {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 20px;
}
.hv-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.hv-dots { display: flex; gap: 5px; }
.hv-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }
.hv-dots span:nth-child(1) { background: var(--rust); }
.hv-dots span:nth-child(2) { background: var(--gold); }
.hv-dots span:nth-child(3) { background: #3a8a4a; }
.hv-label { font-size: 11px; color: rgba(255,255,255,.3); }
.lp-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-sm); padding: 12px; margin-bottom: 8px; transition: background .2s;
}
.lp-card:hover { background: rgba(255,255,255,.09); }
.lp-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.lp-name { font-size: 13px; font-weight: 500; color: #fff; }
.lp-meta { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 1px; }
.lp-badge { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; flex-shrink: 0; }
.badge-prem { background: rgba(201,147,58,.18); color: var(--gold-lt); border: 1px solid rgba(201,147,58,.3); }
.badge-free { background: rgba(255,255,255,.07); color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.1); }
.badge-new  { background: rgba(58,138,74,.18); color: #6fcf7a; border: 1px solid rgba(58,138,74,.3); }

/* ─────────────── TRUST STRIP ─────────────── */
.trust-strip { background: var(--sand); border-top: 1px solid var(--sand-dark); border-bottom: 1px solid var(--sand-dark); padding: 16px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--muted); }
.trust-icon  { font-size: 16px; }

/* ─────────────── SEARCH + CATEGORIES BAR ─────────────── */
.search-bar-wrap {
  background: #fff; border-bottom: 1px solid var(--sand-dark);
  padding: 14px 0 0; position: sticky; top: 60px; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.qs-row { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.qs-input-wrap { flex: 1; position: relative; }
.qs-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.qs-input {
  width: 100%; padding: 11px 14px 11px 40px;
  background: var(--cream); border: 1.5px solid var(--sand-dark);
  border-radius: 40px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--ink); outline: none; transition: border-color .18s, box-shadow .18s;
}
.qs-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,147,58,.1); background: #fff; }
.qs-btn {
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 600;
  font-family: 'Outfit', sans-serif; padding: 11px 18px; border-radius: 40px;
  white-space: nowrap; transition: background .18s; border: none; cursor: pointer; flex-shrink: 0;
}
.qs-btn:hover { background: var(--rust); }
.qs-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--sand-dark); border-radius: var(--r);
  box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 400; display: none; overflow: hidden;
}
.qs-dropdown.open { display: block; }
.qs-result {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; font-size: 13px; color: var(--ink);
  transition: background .14s; cursor: pointer;
}
.qs-result:hover { background: var(--cream); }
.qs-result-icon {
  width: 32px; height: 32px; border-radius: 7px; background: var(--sand);
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; overflow: hidden;
}
.qs-result-name { font-weight: 500; line-height: 1.3; }
.qs-result-meta { font-size: 11px; color: var(--muted); margin-top: 1px; }
.qs-result-loading { padding: 14px; text-align: center; color: var(--muted); font-size: 13px; }
.qs-see-all { border-top: 1px solid var(--sand-dark); background: var(--cream); }
.qs-see-all .qs-result-name { color: var(--sky); }

/* Category pills */
.cat-scroll {
  display: flex; gap: 6px; overflow-x: auto; padding-bottom: 12px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream); color: var(--ink);
  border: 1.5px solid var(--sand-dark); border-radius: 40px;
  padding: 6px 14px 6px 8px; white-space: nowrap; cursor: pointer;
  font-size: 13px; font-weight: 500; font-family: 'Inter', sans-serif;
  flex-shrink: 0; transition: all .18s;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-1px);
}
.cat-icon {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0;
}
.cat-pill:hover .cat-icon, .cat-pill.active .cat-icon { background: rgba(255,255,255,.15); }

/* ─────────────── BENEFITS ─────────────── */
.benefits { background: var(--cream); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.benefit-card {
  background: #fff; border-radius: var(--r); padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.06); transition: all .22s; position: relative; overflow: hidden;
}
.benefit-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-icon { width: 48px; height: 48px; background: var(--gold-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.benefit-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.benefit-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─────────────── LOCATIONS ─────────────── */
.locations-section { background: var(--sand); }
.loc-group { margin-bottom: 28px; }
.loc-group:last-child { margin-bottom: 0; }
.loc-group-label {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 10px; display: flex; align-items: center; gap: 12px;
}
.loc-group-label::after { content: ''; flex: 1; height: 1px; background: var(--sand-dark); }

/* Cities — compact horizontal scroll */
.loc-cities-row {
  display: flex; gap: 10px; overflow-x: auto;
  padding-bottom: 4px; scrollbar-width: none;
}
.loc-cities-row::-webkit-scrollbar { display: none; }

/* Provinces — tight wrap grid */
.loc-provinces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 6px;
}

/* Shared card */
.loc-card {
  border-radius: var(--r-sm); overflow: hidden;
  cursor: pointer; transition: transform .18s, box-shadow .18s;
  flex-shrink: 0; display: block; text-decoration: none;
}
.loc-card:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(0,0,0,.25); }

/* City: 150x100 */
.loc-card-city { width: 150px; }
.loc-card-city .loc-thumb { height: 100px; }

/* Province: fills grid, short */
.loc-card-province { width: 100%; }
.loc-card-province .loc-thumb { height: 72px; }

.loc-thumb {
  width: 100%;
  background: #1e1c18;
  background-size: cover; background-position: center; position: relative;
}
.loc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 7px 9px;
}
.loc-type {
  font-size: 8px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 2px;
}
.loc-name {
  font-family: 'Outfit', sans-serif; font-size: 11px;
  font-weight: 600; color: #fff; line-height: 1.2;
}

/* ─────────────── FEATURED PLACES ─────────────── */
.featured { background: var(--ink); padding: 72px 0; }
.featured .label { color: var(--gold-lt); }
.featured .label::before { background: var(--gold-lt); }
.featured h2 { color: #fff; margin-bottom: 8px; }
.featured .section-sub { color: rgba(255,255,255,.45); font-size: 15px; margin-bottom: 0; }
.places-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px; margin-top: 36px;
}
.place-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); overflow: hidden; transition: all .2s; display: block;
}
.place-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); border-color: rgba(201,147,58,.3); }
.place-thumb {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a3040, #1a2028);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.place-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.place-initial {
  font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 700;
  color: rgba(255,255,255,.1); user-select: none; z-index: 0;
}
.place-card-body { padding: 12px 14px 14px; }
.place-card-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--gold-lt); background: rgba(201,147,58,.12);
  border-radius: 20px; padding: 2px 9px; display: inline-block; margin-bottom: 6px;
}
.place-card-name { font-size: 13px; font-weight: 500; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.place-card-loc  { font-size: 11px; color: rgba(255,255,255,.38); display: flex; align-items: center; gap: 3px; }
.place-card-cat  { font-size: 11px; color: rgba(255,255,255,.22); margin-top: 3px; }
.places-loading  { grid-column: 1/-1; text-align: center; padding: 40px; color: rgba(255,255,255,.3); font-size: 14px; }
.places-cta      { text-align: center; margin-top: 28px; }
.places-cta a    { color: var(--gold-lt); font-size: 13px; border-bottom: 1px solid rgba(201,147,58,.3); padding-bottom: 2px; transition: border-color .18s; }
.places-cta a:hover { border-color: var(--gold-lt); }

/* ─────────────── HOW IT WORKS ─────────────── */
.how { background: var(--sand); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 27px;
  left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1px; background: var(--sand-dark);
}
.step { text-align: center; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: var(--gold-lt);
  font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  border: 3px solid var(--sand); position: relative; z-index: 1;
}
.step-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.step-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─────────────── PRICING ─────────────── */
.pricing { background: var(--cream); }
.pricing-group-title {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin: 36px 0 14px; display: flex; align-items: center; gap: 12px;
}
.pricing-group-title::after { content: ''; flex: 1; height: 1px; background: var(--sand-dark); }
.plans-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.plan-card {
  background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: var(--r);
  padding: 28px 24px; transition: all .2s;
}
.plan-card:hover:not(.plan-featured) { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.plan-featured { background: var(--ink); border-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.plan-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--gold); color: var(--ink); padding: 3px 12px; border-radius: 20px;
  display: inline-block; margin-bottom: 14px;
}
.plan-name    { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.plan-featured .plan-name { color: #fff; }
.plan-price   { font-family: 'Outfit', sans-serif; font-size: 34px; font-weight: 700; color: var(--ink); line-height: 1; }
.plan-featured .plan-price { color: var(--gold-lt); }
.plan-period  { font-size: 12px; color: var(--muted); margin-bottom: 18px; margin-top: 2px; }
.plan-featured .plan-period { color: rgba(255,255,255,.4); }
.plan-hr      { border: none; border-top: 1px solid rgba(0,0,0,.07); margin: 16px 0; }
.plan-featured .plan-hr { border-color: rgba(255,255,255,.1); }
.plan-features { list-style: none; margin-bottom: 22px; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--body); padding: 4px 0; }
.plan-featured .plan-features li { color: rgba(255,255,255,.75); }
.plan-check { color: var(--gold); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.plan-featured .plan-check { color: var(--gold-lt); }
.plan-cta {
  display: block; text-align: center; padding: 11px; border-radius: 40px;
  font-size: 13px; font-weight: 600; font-family: 'Outfit', sans-serif;
  transition: all .2s; cursor: pointer; border: none;
}
.plan-cta-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--sand-dark); }
.plan-cta-outline:hover { border-color: var(--ink); }
.plan-cta-gold { background: var(--gold); color: var(--ink); }
.plan-cta-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.pricing-note {
  margin-top: 28px; padding: 16px 20px; background: var(--sand); border-radius: var(--r);
  border: 1px solid var(--sand-dark); font-size: 13px; color: var(--muted); line-height: 1.7;
}

/* ─────────────── TESTIMONIALS ─────────────── */
.testimonials { background: var(--cream); }
.testi-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.testi-card   { background: #fff; border-radius: var(--r); padding: 24px; border: 1px solid rgba(0,0,0,.06); }
.testi-stars  { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text   { font-size: 13px; color: var(--body); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.testi-name   { font-size: 13px; font-weight: 600; color: var(--ink); }
.testi-biz    { font-size: 11px; color: var(--muted); }

/* ─────────────── BLOG ─────────────── */
.blog      { background: var(--sand); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.blog-card { background: #fff; border-radius: var(--r); overflow: hidden; border: 1px solid rgba(0,0,0,.06); transition: all .2s; cursor: pointer; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.blog-thumb { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--ink-soft), var(--ink)); display: flex; align-items: center; justify-content: center; font-size: 36px; }
.blog-body  { padding: 18px; }
.blog-tag   { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sky); margin-bottom: 7px; }
.blog-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 7px; line-height: 1.4; }
.blog-exc   { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.blog-meta  { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.blog-dot   { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); opacity: .4; }

/* ─────────────── CTA BAND ─────────────── */
.cta-band { background: var(--gold); padding: 64px 0; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 120% at 80% 50%, rgba(255,255,255,.1) 0%, transparent 60%);
}
.cta-inner { text-align: center; position: relative; }
.cta-inner h2 { color: var(--ink); margin-bottom: 12px; }
.cta-inner p  { color: rgba(26,22,18,.6); font-size: 15px; max-width: 460px; margin: 0 auto 28px; }
.cta-actions  { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.btn-ghost-ink { background: transparent; color: var(--ink); border: 2px solid rgba(26,22,18,.25); font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; padding: 12px 22px; border-radius: 40px; transition: all .2s; cursor: pointer; }
.btn-ghost-ink:hover { border-color: var(--ink); background: rgba(26,22,18,.06); }

/* ─────────────── CONTACT ─────────────── */
.contact     { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 48px; }
.c-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.c-info-icon { width: 42px; height: 42px; background: var(--gold-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.c-info-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.c-info-value { font-size: 14px; color: var(--ink); font-weight: 500; }
.c-socials    { display: flex; gap: 8px; margin-top: 24px; }
.c-social     { width: 40px; height: 40px; background: var(--ink); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all .18s; cursor: pointer; }
.c-social:hover { background: var(--gold); transform: translateY(-2px); }
.c-form       { display: flex; flex-direction: column; gap: 13px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px; background: #fff; border: 1.5px solid var(--sand-dark);
  border-radius: var(--r-sm); font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--ink); outline: none; transition: border-color .18s; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,147,58,.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

/* ─────────────── FOOTER ─────────────── */
.site-footer { background: var(--ink); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--gold-lt); margin-bottom: 10px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 220px; }
.footer-h    { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a  { font-size: 13px; color: rgba(255,255,255,.45); transition: color .18s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy   { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-legal  { display: flex; gap: 18px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.22); transition: color .18s; }
.footer-legal a:hover { color: rgba(255,255,255,.45); }

/* ─────────────── BACK TO TOP + TOAST ─────────────── */
#back-top {
  position: fixed; bottom: 24px; right: 22px;
  width: 42px; height: 42px; background: var(--ink); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none; transition: all .25s; z-index: 500;
  color: rgba(255,255,255,.7); font-size: 16px;
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover   { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
#toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(12px);
  background: var(--ink); color: #fff; font-size: 13px; padding: 11px 20px;
  border-radius: 40px; border: 1px solid rgba(255,255,255,.1);
  opacity: 0; transition: all .3s; pointer-events: none; white-space: nowrap; z-index: 999;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─────────────── ANIMATIONS ─────────────── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 900px) {
  .hero-grid     { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .plans-2       { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 600px) {
  .section       { padding: 52px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats    { flex-wrap: wrap; gap: 16px; }
  /* On mobile, provinces also scroll horizontally */
  .loc-provinces-grid {
    display: flex; overflow-x: auto; gap: 8px;
    grid-template-columns: none; padding-bottom: 4px;
    scrollbar-width: none;
  }
  .loc-provinces-grid::-webkit-scrollbar { display: none; }
  .loc-card-province { width: 100px; flex-shrink: 0; }
  .loc-card-province .loc-thumb { height: 72px; }
  .loc-card-city { width: 130px; }
  .loc-card-city .loc-thumb { height: 90px; }
  .qs-btn { display: none; }
}

/* Mobile nav open */
.site-nav.open .nav-links {
  display: flex; flex-direction: column;
  position: absolute; top: 60px; left: 0; right: 0;
  background: var(--ink-soft); padding: 14px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.08); gap: 4px; z-index: 300;
}
.site-nav.open .nav-links a { display: block; padding: 10px 12px; border-radius: var(--r-sm); }

/* lp-info — hero card text wrapper */
.lp-info { flex: 1; min-width: 0; }

/* ─── CATEGORY DROPDOWN ─── */
.cat-arrow {
  font-size: 14px; margin-left: 2px; opacity: 0.5;
  transition: transform 0.2s;
}
.cat-pill.active-parent .cat-arrow { transform: rotate(90deg); opacity: 1; }
.cat-pill.active-parent {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
button.cat-pill {
  cursor: pointer; font-family: 'Inter', sans-serif;
  appearance: none; -webkit-appearance: none;
}
.cat-drop {
  background: #fff;
  border: 1px solid var(--sand-dark);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--r) var(--r);
  padding: 16px 20px 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
  z-index: 1000;
}
.cat-drop-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--sand-dark);
}
.cat-drop-title {
  font-family: 'Outfit', sans-serif; font-size: 15px;
  font-weight: 600; color: var(--ink); flex: 1;
}
.cat-drop-all {
  font-size: 12px; color: var(--sky); font-weight: 500;
  transition: color 0.18s;
}
.cat-drop-all:hover { color: var(--rust); }
.cat-drop-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 16px; padding: 2px 6px;
  border-radius: 4px; transition: background 0.15s;
  line-height: 1;
}
.cat-drop-close:hover { background: var(--sand); }
.cat-drop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 6px;
}
.cat-child {
  display: block; padding: 8px 12px;
  background: var(--cream); border: 1px solid var(--sand-dark);
  border-radius: var(--r-sm); font-size: 13px; color: var(--ink);
  font-weight: 500; transition: all 0.15s; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.cat-child:hover {
  background: var(--ink); color: #fff;
  border-color: var(--ink); transform: translateY(-1px);
}
