/* ClipsTrust — refined */
:root {
  --bg: #fbf8f4;
  --bg-2: #f4efe7;
  --ink: #1a1410;
  --ink-2: #4a3f36;
  --ink-3: #8a7d70;
  --line: #e6ddcf;
  --line-2: #d8ccba;
  --paper: #ffffff;
  --brand: #e8542b;
  --brand-deep: #c0411e;
  --brand-soft: #fde4d8;
  --gold: #c79341;
  --green: #1f7a4d;
  --shadow-sm: 0 1px 2px rgba(26,20,16,.04), 0 2px 6px rgba(26,20,16,.04);
  --shadow-md: 0 4px 12px rgba(26,20,16,.06), 0 12px 32px rgba(26,20,16,.06);
  --shadow-lg: 0 24px 60px rgba(26,20,16,.10);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --max: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
img { display: block; max-width: 100%; }

/* Typography */
.display {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
}
.eyebrow.muted { color: var(--ink-3); }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; padding: 96px 0 40px; }
.section-head h2 { font-size: clamp(36px, 4.6vw, 56px); margin: 14px 0 0; }
.section-head p { color: var(--ink-2); margin: 16px 0 0; max-width: 44ch; font-size: 17px; }
.section-head .meta { display: flex; gap: 8px; align-items: center; margin-top: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px; border-radius: 999px; font-weight: 500; font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--brand); transform: translateY(-1px); }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(232,84,43,.55); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: var(--bg-2); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 999px; font-size: 12px;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-2);
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.chip-live .dot { background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 80%, transparent);
}
.header-inner {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 36px; padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--brand) 0%, #f08151 100%);
  display: grid; place-items: center; color: #fff; font-size: 14px; font-weight: 700;
  box-shadow: 0 2px 8px rgba(232,84,43,.35);
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; inset: 6px;
  border: 1.5px solid rgba(255,255,255,.6); border-radius: 5px;
}
.logo-mark span { position: relative; z-index: 1; font-size: 11px; }
.nav { display: flex; gap: 4px; }
.nav a { padding: 8px 14px; border-radius: 8px; font-size: 14px; color: var(--ink-2); position: relative; }
.nav a:hover { color: var(--ink); background: var(--bg-2); }
.nav a.has-caret::after { content: '⌄'; margin-left: 4px; opacity: .5; font-size: 11px; position: relative; top: -2px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.country {
  display: flex; align-items: center; gap: 6px; padding: 7px 11px;
  border: 1px solid var(--line); border-radius: 999px; font-size: 12px; color: var(--ink-2);
  background: var(--paper);
}
.country .flag {
  width: 18px; height: 12px; border-radius: 2px; overflow: hidden;
  background: linear-gradient(to bottom, #ff9933 33%, #fff 33% 66%, #138808 66%);
  position: relative;
}
.country .flag::after {
  content: ''; position: absolute; left: 50%; top: 50%; width: 4px; height: 4px;
  border-radius: 50%; border: 1px solid #000080; transform: translate(-50%, -50%);
}

/* Hero */
.hero { padding: 60px 0 80px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.hero-head h1 {
  font-size: clamp(56px, 7.4vw, 96px);
  margin: 18px 0 0;
}
.hero-head h1 .accent {
  font-style: italic;
  font-family: 'Bricolage Grotesque', serif;
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 500;
}
.hero-head p { font-size: 19px; color: var(--ink-2); margin: 24px 0 32px; max-width: 50ch; }

.search {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 8px; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
  align-items: center;
}
.search-fields { display: flex; align-items: center; }
.search-field { display: flex; align-items: center; gap: 10px; padding: 12px 14px; flex: 1; }
.search-field + .search-field { border-left: 1px solid var(--line); }
.search-field svg { flex-shrink: 0; color: var(--ink-3); }
.search-field input {
  border: 0; background: transparent; outline: 0; font-family: inherit; font-size: 14px;
  width: 100%; color: var(--ink);
}
.search-field input::placeholder { color: var(--ink-3); }
.search-field .label { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin-bottom: 2px; }
.search-field .col { display: flex; flex-direction: column; flex: 1; }
.search-go { padding: 14px 22px; background: var(--brand); color: #fff; border-radius: 12px; font-weight: 500; display: flex; gap: 8px; align-items: center; }
.search-go:hover { background: var(--brand-deep); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-tags .tag {
  padding: 7px 13px; border-radius: 999px; background: var(--paper);
  border: 1px solid var(--line); font-size: 13px; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .15s ease;
}
.hero-tags .tag:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-1px); }

.hero-stats { display: flex; gap: 36px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-stats .stat .n { font-family: 'Bricolage Grotesque', sans-serif; font-size: 32px; font-weight: 600; letter-spacing: -.02em; }
.hero-stats .stat .l { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

/* Hero visual collage */
.hero-visual { position: relative; height: 580px; }
.hv-card {
  position: absolute; background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.hv-video {
  top: 0; left: 30px; width: 280px; height: 360px;
  border-radius: 24px; transform: rotate(-3deg);
}
.hv-video .thumb {
  height: 100%; background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5)),
    url('https://img.youtube.com/vi/pabLJqclimA/hqdefault.jpg') center/cover;
  position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 16px;
}
.hv-video .play {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.95); display: grid; place-items: center;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.hv-video .meta { color: #fff; position: relative; z-index: 1; }
.hv-video .meta .name { font-weight: 600; font-size: 15px; }
.hv-video .meta .biz { font-size: 12px; opacity: .85; }
.hv-video .live-badge {
  background: rgba(0,0,0,.5); color: #fff; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; align-self: flex-start; backdrop-filter: blur(8px);
  display: inline-flex; gap: 6px; align-items: center;
}
.hv-video .live-badge .dot { width: 6px; height: 6px; background: #ff3b30; border-radius: 50%; }

.hv-rating {
  top: 60px; right: 0; width: 240px; padding: 18px;
  transform: rotate(4deg);
}
.hv-rating .stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.hv-rating .score { font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 600; margin: 6px 0 4px; }
.hv-rating .label { font-size: 12px; color: var(--ink-3); }
.hv-rating .bars { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.hv-rating .bar { display: grid; grid-template-columns: 14px 1fr 24px; gap: 8px; align-items: center; font-size: 11px; color: var(--ink-3); }
.hv-rating .bar .track { height: 4px; background: var(--bg-2); border-radius: 2px; overflow: hidden; }
.hv-rating .bar .fill { height: 100%; background: var(--brand); }

.hv-listing {
  bottom: 80px; right: 40px; width: 290px; padding: 16px;
  transform: rotate(-2deg);
}
.hv-listing .row { display: flex; gap: 12px; align-items: center; }
.hv-listing .av {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, #2d6a4f, #1a3d2c); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.hv-listing .name { font-weight: 600; font-size: 14px; }
.hv-listing .cat { font-size: 11px; color: var(--ink-3); }
.hv-listing .verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--green); margin-top: 8px; padding: 3px 8px; background: #e8f5ee; border-radius: 999px; }
.hv-listing .stats { display: flex; gap: 14px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.hv-listing .stats .s { font-size: 11px; color: var(--ink-3); }
.hv-listing .stats .s b { color: var(--ink); font-weight: 600; display: block; font-size: 14px; font-family: 'Bricolage Grotesque', sans-serif; }

.hv-ticker {
  top: 380px; left: 0; width: 230px; padding: 12px 14px;
  transform: rotate(2deg);
  display: flex; gap: 10px; align-items: center;
}
.hv-ticker .ico {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
}
.hv-ticker .txt { font-size: 12px; }
.hv-ticker .txt b { display: block; font-size: 13px; }
.hv-ticker .txt span { color: var(--ink-3); }

/* Marquee logo bar */
.trustbar { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 0; overflow: hidden; }
.trustbar .row { display: flex; align-items: center; gap: 56px; animation: marquee 40s linear infinite; }
.trustbar .label { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-3); flex-shrink: 0; padding-right: 24px; border-right: 1px solid var(--line); margin-right: 8px; }
.trustbar .item { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; color: var(--ink-2); font-weight: 500; flex-shrink: 0; opacity: .7; transition: opacity .2s; }
.trustbar .item:hover { opacity: 1; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Categories */
.cat-tabs { display: inline-flex; gap: 4px; padding: 5px; background: var(--bg-2); border-radius: 999px; }
.cat-tabs button {
  padding: 9px 18px; border-radius: 999px; font-size: 13px; color: var(--ink-2); font-weight: 500;
  transition: all .15s ease;
}
.cat-tabs button.active { background: var(--ink); color: #fff; }

.cat-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-top: 32px;
}
.cat-card {
  background: var(--paper); padding: 22px 18px; display: flex; flex-direction: column; gap: 14px;
  transition: all .2s ease; cursor: pointer; position: relative;
  min-height: 150px;
}
.cat-card:hover { background: var(--bg); transform: scale(1.01); z-index: 2; box-shadow: var(--shadow-md); }
.cat-card .ico {
  width: 40px; height: 40px; border-radius: 10px; background: var(--brand-soft);
  display: grid; place-items: center; color: var(--brand);
}
.cat-card .name { font-weight: 600; font-size: 14px; line-height: 1.3; }
.cat-card .count { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-3); margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.cat-card .count .arrow { opacity: 0; transition: opacity .15s; }
.cat-card:hover .count .arrow { opacity: 1; }
.cat-card.featured .ico { background: var(--brand); color: #fff; }
.cat-card.featured::after {
  content: 'Top'; position: absolute; top: 10px; right: 10px;
  font-size: 9px; padding: 2px 6px; background: var(--gold); color: #fff;
  border-radius: 4px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase;
  letter-spacing: .1em;
}

.cat-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; }
.cat-footer .lhs { font-size: 13px; color: var(--ink-3); }
.cat-footer .lhs b { color: var(--ink); }

/* Features pillar */
.pillar { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; padding: 80px 0; align-items: center; }
.pillar h2 { font-size: clamp(36px, 4.5vw, 54px); margin: 14px 0 22px; }
.pillar p { color: var(--ink-2); font-size: 17px; }
.pillar ul { list-style: none; padding: 0; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.pillar li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.pillar li .check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; flex-shrink: 0; font-size: 11px;
}

.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.feature-tile {
  padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
  transition: all .2s ease; min-height: 160px; position: relative; overflow: hidden;
}
.feature-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-tile .num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-3);
  position: absolute; top: 18px; right: 18px;
}
.feature-tile .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-2); display: grid; place-items: center; color: var(--brand);
}
.feature-tile h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 600; margin: 0; line-height: 1.2; letter-spacing: -.01em; }
.feature-tile p { font-size: 13px; color: var(--ink-3); margin: 0; }
.feature-tile.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.feature-tile.dark .ico { background: rgba(255,255,255,.1); color: var(--brand); }
.feature-tile.dark p { color: rgba(255,255,255,.6); }
.feature-tile.dark .num { color: rgba(255,255,255,.4); }
.feature-tile.brand { background: var(--brand); color: #fff; border-color: var(--brand); }
.feature-tile.brand .ico { background: rgba(255,255,255,.18); color: #fff; }
.feature-tile.brand p { color: rgba(255,255,255,.85); }
.feature-tile.brand .num { color: rgba(255,255,255,.7); }

/* Spotlight */
.spotlight { padding-bottom: 40px; }
.spot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.biz-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all .2s ease; cursor: pointer; position: relative;
}
.biz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.biz-card .img {
  height: 160px; background: var(--bg-2); position: relative;
  background-size: cover; background-position: center;
}
.biz-card .img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.4));
}
.biz-card .img .cat-badge {
  position: absolute; top: 12px; left: 12px; padding: 5px 10px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: 999px; font-size: 11px; font-weight: 500;
  z-index: 1;
}
.biz-card .img .save {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.95); display: grid; place-items: center;
  color: var(--ink); z-index: 1;
}
.biz-card .body { padding: 16px; }
.biz-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 600;
  margin: 0; letter-spacing: -.01em;
}
.biz-card p { font-size: 13px; color: var(--ink-3); margin: 6px 0 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.biz-card .meta { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--line); }
.biz-card .rating { display: flex; align-items: center; gap: 4px; font-size: 13px; }
.biz-card .rating .stars { color: var(--gold); }
.biz-card .verified-mini { font-size: 11px; color: var(--green); display: flex; align-items: center; gap: 4px; }

/* Video review carousel */
.video-section { padding: 0 0 80px; background: var(--ink); color: #fff; margin-top: 100px; }
.video-section .section-head { padding-top: 96px; }
.video-section .section-head h2, .video-section .section-head .display { color: #fff; }
.video-section .section-head p { color: rgba(255,255,255,.6); }
.video-section .eyebrow { color: var(--brand); }
.video-row { overflow: hidden; padding: 8px 0 24px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.video-track { display: flex; gap: 18px; animation: marquee 50s linear infinite; }
.video-card {
  flex-shrink: 0; width: 220px; height: 360px; border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  background-size: cover; background-position: center;
  transition: transform .2s ease;
}
.video-card:hover { transform: scale(1.02); }
.video-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, transparent 30%, transparent 60%, rgba(0,0,0,.85)); }
.video-card .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.95);
  display: grid; place-items: center; z-index: 1;
}
.video-card .vmeta { position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 1; color: #fff; }
.video-card .vmeta .name { font-weight: 600; font-size: 15px; }
.video-card .vmeta .biz { font-size: 12px; opacity: .8; margin-top: 2px; }
.video-card .vmeta .duration {
  position: absolute; top: 12px; right: 12px; padding: 3px 8px; background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  border-radius: 4px; font-size: 11px; font-family: 'JetBrains Mono', monospace;
}
.video-section .partner-cta {
  display: flex; justify-content: center; gap: 16px; align-items: center; margin-top: 32px;
}
.video-section .partner-cta .btn-ghost { border-color: rgba(255,255,255,.2); color: #fff; }
.video-section .partner-cta .btn-ghost:hover { background: rgba(255,255,255,.08); }

/* Most Searched - Editorial layout */
.searched { padding-bottom: 80px; }
.searched-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 16px; }
.searched-card {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background-size: cover; background-position: center;
  transition: all .25s ease;
}
.searched-card:hover { transform: scale(1.01); box-shadow: var(--shadow-lg); }
.searched-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85)); }
.searched-card.lead { grid-row: span 2; }
.searched-card .body { position: absolute; bottom: 22px; left: 22px; right: 22px; color: #fff; z-index: 1; }
.searched-card .ix { font-family: 'JetBrains Mono', monospace; font-size: 11px; opacity: .7; margin-bottom: 6px; }
.searched-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; font-weight: 600; margin: 0; letter-spacing: -.02em; }
.searched-card.lead h3 { font-size: 44px; line-height: 1; }
.searched-card .arrow {
  position: absolute; top: 22px; right: 22px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px); display: grid; place-items: center;
  color: #fff; z-index: 1; transition: all .2s; border: 1px solid rgba(255,255,255,.2);
}
.searched-card:hover .arrow { background: var(--brand); border-color: var(--brand); transform: rotate(-45deg); }
.searched-card .pill { position: absolute; top: 22px; left: 22px; padding: 5px 11px; background: rgba(255,255,255,.18); backdrop-filter: blur(8px); border-radius: 999px; font-size: 11px; color: #fff; z-index: 1; border: 1px solid rgba(255,255,255,.2); }

/* Partners */
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-card {
  padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 16px; transition: all .2s;
}
.partner-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.partner-card .pmark {
  width: 64px; height: 64px; border-radius: 14px;
  display: grid; place-items: center; color: #fff; font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600; font-size: 22px;
}
.partner-card .role { font-size: 11px; color: var(--brand); text-transform: uppercase; letter-spacing: .12em; font-family: 'JetBrains Mono', monospace; }
.partner-card h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; margin: 4px 0; font-weight: 600; }
.partner-card p { font-size: 14px; color: var(--ink-3); margin: 0; }
.partner-card .more { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ink-2); }

/* Blog & news */
.editorial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.blog-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all .2s; cursor: pointer;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card .img { height: 160px; background: var(--bg-2); background-size: cover; background-position: center; position: relative; }
.blog-card .body { padding: 18px; }
.blog-card .tag { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--brand); text-transform: uppercase; letter-spacing: .12em; }
.blog-card h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; line-height: 1.25; margin: 8px 0 12px; font-weight: 600; letter-spacing: -.01em; }
.blog-card .when { font-size: 12px; color: var(--ink-3); }

/* Movies + Destinations */
.movie-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.movie-card { cursor: pointer; }
.movie-card .poster {
  aspect-ratio: 2/3; border-radius: 12px; overflow: hidden; background: var(--bg-2);
  background-size: cover; background-position: center; position: relative;
  transition: transform .2s;
}
.movie-card:hover .poster { transform: translateY(-3px); }
.movie-card .poster::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.85)); }
.movie-card .poster .rating {
  position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  color: var(--gold); padding: 4px 8px; border-radius: 6px; font-size: 12px; font-weight: 600; display: flex; gap: 4px; align-items: center;
}
.movie-card .poster .lang {
  position: absolute; bottom: 10px; left: 10px; padding: 3px 8px; background: rgba(255,255,255,.95); border-radius: 4px; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em;
}
.movie-card .info { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 12px; gap: 10px; }
.movie-card .info h5 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; margin: 0; font-weight: 600; line-height: 1.2; }
.movie-card .info .fmt { font-size: 11px; color: var(--ink-3); font-family: 'JetBrains Mono', monospace; flex-shrink: 0; }

.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; background-size: cover; background-position: center; transition: all .2s; }
.dest-card:hover { transform: scale(1.02); }
.dest-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.85)); }
.dest-card.tall { grid-row: span 2; }
.dest-card .body { position: absolute; bottom: 16px; left: 18px; right: 18px; color: #fff; z-index: 1; }
.dest-card .body h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; margin: 0; font-weight: 600; }
.dest-card.tall .body h4 { font-size: 32px; }
.dest-card .body p { font-size: 12px; opacity: .8; margin: 4px 0 0; line-height: 1.4; }

/* Reviews */
.reviews { padding: 80px 0; }
.review-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.review-tabs button {
  padding: 8px 14px; border-radius: 999px; font-size: 13px;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-2);
  font-weight: 500; transition: all .15s;
}
.review-tabs button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.review-tabs button .ct { font-family: 'JetBrains Mono', monospace; font-size: 11px; margin-left: 6px; opacity: .6; }

.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.review-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 14px;
  transition: all .2s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card .top { display: flex; gap: 12px; align-items: center; }
.review-card .av {
  width: 40px; height: 40px; border-radius: 50%; color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.review-card .name { font-weight: 600; font-size: 14px; }
.review-card .biz { font-size: 12px; color: var(--ink-3); }
.review-card .stars { color: var(--gold); font-size: 13px; }
.review-card blockquote { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.review-card .when { font-size: 11px; color: var(--ink-3); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; }

/* Stats counter */
.stats-section {
  padding: 100px 0; background: var(--ink); color: #fff;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(232,84,43,.18), transparent),
    radial-gradient(600px 300px at 90% 100%, rgba(199,147,65,.12), transparent);
}
.stats-section .wrap { position: relative; z-index: 1; }
.stats-section .title-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: end; margin-bottom: 60px; }
.stats-section h2 { font-size: clamp(40px, 5vw, 64px); margin: 14px 0 0; color: #fff; }
.stats-section .title-row p { color: rgba(255,255,255,.6); font-size: 16px; max-width: 40ch; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.1); }
.stats-grid .stat-cell { padding: 32px 0; border-right: 1px solid rgba(255,255,255,.1); position: relative; }
.stats-grid .stat-cell:last-child { border-right: none; }
.stats-grid .stat-cell { padding-right: 24px; padding-left: 24px; }
.stats-grid .stat-cell:first-child { padding-left: 0; }
.stats-grid .n { font-family: 'Bricolage Grotesque', sans-serif; font-size: 64px; font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.stats-grid .l { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 14px; }
.stats-grid .ix { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,.4); position: absolute; top: 32px; right: 24px; }

/* FAQ */
.faq { padding: 100px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  text-align: left; font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; font-weight: 500; letter-spacing: -.01em;
  transition: color .2s;
}
.faq-q:hover { color: var(--brand); }
.faq-q .ico {
  width: 26px; height: 26px; border-radius: 50%; background: var(--bg-2);
  display: grid; place-items: center; flex-shrink: 0; transition: all .2s; font-size: 14px;
}
.faq-item.open .faq-q .ico { background: var(--brand); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  font-size: 15px; color: var(--ink-2); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 0 22px; }
.faq-side h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 32px; margin: 14px 0 16px; font-weight: 600; letter-spacing: -.02em; }
.faq-side p { color: var(--ink-2); font-size: 15px; }
.faq-side .support-card {
  margin-top: 28px; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
}
.faq-side .support-card .row { display: flex; gap: 12px; align-items: center; }
.faq-side .support-card .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #2d6a4f, #1a3d2c); }
.faq-side .support-card .name { font-weight: 600; font-size: 14px; }
.faq-side .support-card .role { font-size: 12px; color: var(--ink-3); }
.faq-side .support-card .btn { width: 100%; justify-content: center; margin-top: 14px; }

/* Footer */
.footer { background: #0e0a07; color: rgba(255,255,255,.7); padding: 80px 0 32px; position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 80% 0%, rgba(232,84,43,.1), transparent);
}
.footer .wrap { position: relative; z-index: 1; }
.foot-cta {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 60px;
}
.foot-cta h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(36px, 5vw, 56px); color: #fff; margin: 0; letter-spacing: -.025em; line-height: 1.05; }
.foot-cta h2 i { font-style: italic; color: var(--brand); font-weight: 500; }
.foot-cta .actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.foot-cta .btn-brand { padding: 16px 26px; }
.foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; }
.foot-cols h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin: 0 0 18px; font-weight: 500; font-family: 'JetBrains Mono', monospace; }
.foot-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-cols a { font-size: 14px; }
.foot-cols a:hover { color: #fff; }
.foot-cols .brand-block { display: flex; flex-direction: column; gap: 16px; }
.foot-cols .brand-block .logo-mark { width: 36px; height: 36px; border-radius: 10px; }
.foot-cols address { font-style: normal; font-size: 13px; line-height: 1.7; }
.foot-cols address b { color: #fff; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.foot-bottom .links { display: flex; gap: 24px; }
.foot-bottom .ssl { display: flex; gap: 6px; align-items: center; color: var(--green); }
.foot-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 32px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); margin: 40px 0; }
.foot-stats .s { font-family: 'Bricolage Grotesque', sans-serif; }
.foot-stats .s .n { font-size: 32px; color: #fff; font-weight: 600; letter-spacing: -.02em; }
.foot-stats .s .l { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; font-family: 'Inter', sans-serif; }

/* Floating chat */
.chat-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  display: flex; align-items: center; gap: 10px; padding: 12px 18px 12px 12px;
  background: var(--ink); color: #fff; border-radius: 999px;
  box-shadow: var(--shadow-lg);
  transition: all .2s;
}
.chat-fab:hover { background: var(--brand); }
.chat-fab .av { width: 32px; height: 32px; border-radius: 50%; background: var(--brand); display: grid; place-items: center; }
.chat-fab .av img { width: 100%; }
.chat-fab .txt { display: flex; flex-direction: column; align-items: flex-start; }
.chat-fab .txt b { font-size: 13px; font-weight: 600; }
.chat-fab .txt span { font-size: 11px; opacity: .7; }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .pillar, .faq-grid, .foot-cta, .stats-section .title-row { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 400px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid, .editorial-grid, .review-grid, .spot-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .movie-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .searched-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .searched-card.lead { grid-column: span 2; grid-row: auto; min-height: 280px; }
  .nav, .header-actions .country { display: none; }
  .stats-grid, .foot-cols { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-cell { border-right: none; }
}
