/* ============================================================
   IT Walay – Nine Tree Hotel SEO Report 2026
   Premium Dark Green + Gold Design System
   ============================================================ */

:root {
  --green-900: #0a1f15;
  --green-800: #122b1e;
  --green-700: #1B4332;
  --green-600: #2d6a4f;
  --green-500: #40916c;
  --green-400: #52b788;
  --green-100: #d8f3dc;
  --gold-600:  #b8960c;
  --gold-500:  #D4AF37;
  --gold-400:  #e8c84a;
  --gold-100:  #fdf4c7;
  --white:     #ffffff;
  --gray-100:  #f8f9fa;
  --gray-200:  #e9ecef;
  --gray-300:  #dee2e6;
  --gray-600:  #6c757d;
  --gray-800:  #343a40;
  --red:       #dc3545;
  --orange:    #fd7e14;
  --blue:      #0d6efd;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.12);
  --shadow-md: 0 6px 24px rgba(0,0,0,.18);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.28);
  --transition: .25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--green-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'DM Serif Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: .75rem; }

a { color: var(--gold-500); text-decoration: none; }
a:hover { color: var(--gold-400); }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,31,21,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,.2);
  padding: .9rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand { display: flex; align-items: center; gap: .75rem; }
.navbar-logo {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--gold-500));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; color: var(--white);
}
.navbar-name { font-weight: 700; font-size: 1.1rem; color: var(--white); }
.navbar-name span { color: var(--gold-500); }
.navbar-tagline { font-size: .72rem; color: var(--gray-600); letter-spacing: .04em; }

.navbar-links { display: flex; gap: 1.5rem; list-style: none; }
.navbar-links a {
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.navbar-links a:hover { color: var(--gold-500); }

.navbar-cta {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--green-900) !important;
  padding: .45rem 1.2rem;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: .82rem !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.navbar-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,175,55,.4) !important; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-900) 0%, #0d2b1b 50%, #081a10 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding: 7rem 2rem 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,175,55,.08) 0%, transparent 70%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold-500);
  padding: .4rem 1.1rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; font-size: .5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }

.hero h1 { margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.7);
  max-width: 680px; margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: all var(--transition); border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--green-900);
  box-shadow: 0 4px 20px rgba(212,175,55,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,.5); color: var(--green-900); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-500); transform: translateY(-2px); }

.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden; max-width: 900px; margin: 0 auto;
}
.stat-item {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem; color: var(--gold-500); line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .04em; margin-top: .4rem; }

/* ── Section titles ──────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold-500);
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .9rem;
  border-radius: 50px; margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: rgba(255,255,255,.6); max-width: 580px; margin: 0 auto; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 2rem; transition: all var(--transition);
}
.card:hover { border-color: rgba(212,175,55,.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ── Executive summary ───────────────────────────────────────── */
#executive { background: var(--green-800); }
.exec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.exec-left { border-right: 1px solid rgba(255,255,255,.08); padding-right: 2rem; }
.exec-right { padding-left: 2rem; }
.exec-intro { font-size: 1.1rem; color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 2rem; }
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2rem; }
.kpi-box {
  background: rgba(212,175,55,.07);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-sm);
  padding: 1.2rem; text-align: center;
}
.kpi-val { font-size: 1.8rem; font-family: 'DM Serif Display', serif; color: var(--gold-500); }
.kpi-lbl { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .05em; }

.finding-list { list-style: none; }
.finding-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .92rem; color: rgba(255,255,255,.8);
}
.finding-list li:last-child { border-bottom: none; }
.finding-icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

/* ── Hotel overview ──────────────────────────────────────────── */
#hotel { background: var(--green-900); }
.hotel-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.hotel-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.fact-box {
  background: rgba(212,175,55,.07);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.2rem;
}
.fact-label { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }
.fact-val { font-size: 1rem; font-weight: 600; color: var(--white); }
.hotel-audit-cards { display: flex; flex-direction: column; gap: 1rem; }
.audit-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.audit-score {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.score-good  { background: rgba(64,145,108,.25); color: #52b788; border: 2px solid #52b788; }
.score-warn  { background: rgba(253,126,20,.2);  color: var(--orange); border: 2px solid var(--orange); }
.score-bad   { background: rgba(220,53,69,.2);   color: var(--red);    border: 2px solid var(--red); }
.audit-info h4 { font-size: .95rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.audit-info p  { font-size: .82rem; color: rgba(255,255,255,.55); margin: 0; }

/* ── Keywords ────────────────────────────────────────────────── */
#keywords { background: var(--green-800); }
.tab-nav {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
  background: rgba(0,0,0,.2);
  padding: .4rem; border-radius: 50px;
  width: fit-content;
}
.tab-btn {
  background: none; border: none; cursor: pointer;
  padding: .55rem 1.4rem; border-radius: 50px;
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--green-900); font-weight: 700;
  box-shadow: 0 2px 12px rgba(212,175,55,.3);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.kw-table { width: 100%; border-collapse: collapse; }
.kw-table thead tr { background: rgba(212,175,55,.12); }
.kw-table th {
  padding: .9rem 1rem; text-align: left;
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--gold-500);
  border-bottom: 2px solid rgba(212,175,55,.2);
}
.kw-table td {
  padding: .85rem 1rem;
  font-size: .88rem; color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.kw-table tbody tr:hover { background: rgba(255,255,255,.03); }

.badge {
  display: inline-block; padding: .2rem .6rem;
  border-radius: 50px; font-size: .7rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.badge-trans  { background: rgba(13,110,253,.2);  color: #74b9ff; border: 1px solid rgba(13,110,253,.3); }
.badge-local  { background: rgba(64,145,108,.2);  color: #52b788; border: 1px solid rgba(64,145,108,.3); }
.badge-info   { background: rgba(212,175,55,.15); color: var(--gold-500); border: 1px solid rgba(212,175,55,.25); }
.badge-brand  { background: rgba(253,126,20,.15); color: #fd7e14; border: 1px solid rgba(253,126,20,.25); }
.badge-comp   { background: rgba(220,53,69,.15);  color: #f8a5ae; border: 1px solid rgba(220,53,69,.2); }
.badge-occ    { background: rgba(159,90,253,.15); color: #c9b1ff; border: 1px solid rgba(159,90,253,.2); }
.badge-amn    { background: rgba(32,201,151,.15); color: #20c997; border: 1px solid rgba(32,201,151,.2); }

.vol-bar {
  display: flex; align-items: center; gap: .5rem;
}
.vol-track {
  height: 5px; border-radius: 3px;
  background: rgba(255,255,255,.1); flex: 1; min-width: 60px;
}
.vol-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--green-500), var(--gold-500)); }

.rank-chip {
  display: inline-block; padding: .2rem .6rem;
  border-radius: var(--radius-sm); font-size: .82rem; font-weight: 700;
}
.rank-1to3   { background: rgba(64,145,108,.3); color: #52b788; }
.rank-4to10  { background: rgba(212,175,55,.2); color: var(--gold-500); }
.rank-11to20 { background: rgba(253,126,20,.2); color: var(--orange); }
.rank-21plus { background: rgba(220,53,69,.2);  color: var(--red); }

/* ── SERP gallery ────────────────────────────────────────────── */
#serp { background: var(--green-900); }
.filter-bar {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); padding: .5rem 1.2rem;
  border-radius: 50px; font-size: .84rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(212,175,55,.15);
  border-color: rgba(212,175,55,.4);
  color: var(--gold-500);
}

.serp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.serp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; transition: all var(--transition);
}
.serp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.4);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.serp-card.hidden { display: none; }

.serp-thumb {
  width: 100%; height: 180px; object-fit: cover; object-position: top;
  display: block; background: var(--green-800);
}
.serp-thumb-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(255,255,255,.2);
}
.serp-meta { padding: 1.1rem; }
.serp-meta h4 { font-family: 'Inter',sans-serif; font-size: .92rem; font-weight: 600; margin-bottom: .35rem; }
.serp-meta p  { font-size: .78rem; color: rgba(255,255,255,.5); margin: 0; line-height: 1.5; }
.serp-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .65rem; }

.show-more-wrap { text-align: center; margin-top: 2.5rem; }

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-inner {
  position: relative; max-width: 92vw; max-height: 92vh;
  display: flex; flex-direction: column;
}
.lb-img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lb-close {
  position: absolute; top: -42px; right: 0;
  background: rgba(255,255,255,.12); border: none; color: var(--white);
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover { background: rgba(220,53,69,.5); }
.lb-caption {
  background: rgba(10,31,21,.9);
  border-top: 2px solid var(--gold-500);
  padding: 1rem 1.5rem; border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.lb-caption h3 { font-size: 1rem; margin-bottom: .25rem; }
.lb-caption p  { font-size: .82rem; color: rgba(255,255,255,.6); margin: 0; }
.lb-nav {
  display: flex; justify-content: space-between;
  padding: .75rem 0;
}
.lb-nav-btn {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); padding: .4rem 1.2rem;
  border-radius: 50px; font-size: .82rem;
  cursor: pointer; transition: all var(--transition);
}
.lb-nav-btn:hover { background: rgba(212,175,55,.2); border-color: var(--gold-500); }

/* ── Competitor analysis ─────────────────────────────────────── */
#competitors { background: var(--green-800); }
.comp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.comp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 1.8rem;
  transition: all var(--transition);
}
.comp-card:hover { border-color: rgba(212,175,55,.3); box-shadow: var(--shadow-sm); }
.comp-card.nine-tree {
  border-color: rgba(212,175,55,.4);
  background: rgba(212,175,55,.05);
}
.comp-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.2rem; }
.comp-name { font-size: 1.05rem; font-weight: 700; }
.comp-domain { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .2rem; }
.comp-star {
  background: rgba(212,175,55,.2); color: var(--gold-500);
  border: 1px solid rgba(212,175,55,.3);
  font-size: .75rem; font-weight: 700;
  padding: .25rem .65rem; border-radius: 50px;
}
.comp-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.2rem; }
.comp-metric { background: rgba(0,0,0,.2); border-radius: var(--radius-sm); padding: .8rem; }
.comp-metric .label { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .05em; }
.comp-metric .val   { font-size: 1rem; font-weight: 700; color: var(--white); margin-top: .2rem; }
.comp-strengths { font-size: .82rem; color: rgba(255,255,255,.6); }
.comp-strengths span { font-weight: 600; color: rgba(255,255,255,.8); }

/* ── Timeline / Campaign log ─────────────────────────────────── */
#campaign { background: var(--green-900); }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: .65rem; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--gold-500), var(--green-500));
}
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-dot {
  position: absolute; left: -2.5rem; top: .3rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--green-900);
  box-shadow: 0 0 0 3px rgba(212,175,55,.25);
}
.timeline-month {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold-500); margin-bottom: .5rem;
}
.timeline-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.timeline-tasks { list-style: none; }
.timeline-tasks li {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .88rem; color: rgba(255,255,255,.75);
  padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.timeline-tasks li:last-child { border-bottom: none; }
.check { color: var(--green-400); flex-shrink: 0; }
.timeline-results {
  display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-top: 1rem;
}
.t-result { background: rgba(212,175,55,.07); border: 1px solid rgba(212,175,55,.15); border-radius: var(--radius-sm); padding: .75rem; text-align: center; }
.t-result .num { font-size: 1.3rem; font-family: 'DM Serif Display',serif; color: var(--gold-500); }
.t-result .lbl { font-size: .7rem; color: rgba(255,255,255,.5); }

/* ── Roadmap ─────────────────────────────────────────────────── */
#roadmap { background: var(--green-800); }
.roadmap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.road-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 2rem;
  position: relative; overflow: hidden;
}
.road-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
}
.road-phase {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold-500); margin-bottom: .5rem;
}
.road-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.road-list { list-style: none; }
.road-list li {
  font-size: .85rem; color: rgba(255,255,255,.7);
  padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; gap: .5rem; align-items: center;
}
.road-list li::before { content: '→'; color: var(--gold-500); flex-shrink: 0; }

/* ── ROI ─────────────────────────────────────────────────────── */
#roi { background: var(--green-900); }
.roi-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.roi-numbers { display: flex; flex-direction: column; gap: 1.5rem; }
.roi-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.5rem; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.roi-item:hover { border-color: rgba(212,175,55,.3); }
.roi-icon { font-size: 2rem; flex-shrink: 0; }
.roi-info .label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.roi-info .value { font-size: 1.6rem; font-family: 'DM Serif Display',serif; color: var(--gold-500); }
.roi-info .desc  { font-size: .8rem; color: rgba(255,255,255,.5); margin: 0; }
.roi-chart { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md); padding: 2rem; }
.chart-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--gold-500); }
.chart-bars { display: flex; flex-direction: column; gap: .9rem; }
.chart-row { display: flex; align-items: center; gap: 1rem; }
.chart-label { width: 60px; font-size: .78rem; color: rgba(255,255,255,.6); text-align: right; flex-shrink: 0; }
.chart-track { flex: 1; height: 28px; background: rgba(255,255,255,.06); border-radius: 4px; overflow: hidden; position: relative; }
.chart-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  display: flex; align-items: center; padding-left: .75rem;
  font-size: .78rem; font-weight: 700; color: var(--green-900);
  transition: width 1.2s ease;
}

/* ── Urgent actions ──────────────────────────────────────────── */
#urgent { background: var(--green-800); }
.urgent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.urgent-card {
  border-radius: var(--radius-md); padding: 1.8rem;
  border-left: 4px solid;
}
.urgent-critical { background: rgba(220,53,69,.08);  border-color: var(--red); }
.urgent-high     { background: rgba(253,126,20,.08); border-color: var(--orange); }
.urgent-medium   { background: rgba(212,175,55,.08); border-color: var(--gold-500); }
.urgent-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.urgent-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.urgent-desc  { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.urgency-tag {
  display: inline-block; margin-top: .75rem;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .65rem; border-radius: 50px;
}
.tag-crit  { background: rgba(220,53,69,.2);  color: var(--red); }
.tag-high  { background: rgba(253,126,20,.2); color: var(--orange); }
.tag-med   { background: rgba(212,175,55,.2); color: var(--gold-500); }

/* ── Contact / Footer ────────────────────────────────────────── */
#contact { background: var(--green-900); }
.contact-inner {
  background: linear-gradient(135deg, var(--green-800), #0d2b1b);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-lg); padding: 4rem;
  text-align: center; max-width: 760px; margin: 0 auto;
}
.contact-inner h2 { margin-bottom: 1rem; }
.contact-inner p { color: rgba(255,255,255,.65); margin-bottom: 2rem; }
.contact-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-link {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8); padding: .7rem 1.4rem;
  border-radius: 50px; font-size: .9rem; font-weight: 500;
  transition: all var(--transition);
}
.contact-link:hover { border-color: var(--gold-500); color: var(--gold-500); transform: translateY(-2px); }

footer {
  background: #070f0a;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 2rem; text-align: center;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
footer a { color: var(--gold-500); }

/* ── Print / PDF ─────────────────────────────────────────────── */
@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .navbar, .hero-actions, .filter-bar, .show-more-wrap, #contact, footer,
  .lightbox, .lb-close, .lb-nav { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
  .hero { min-height: auto; padding: 2rem; background: #1B4332 !important; }
  section { padding: 2rem 0; page-break-inside: avoid; }
  .serp-card.hidden { display: block !important; }
  .serp-grid { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .card, .comp-card, .urgent-card, .road-card { break-inside: avoid; }
  .kw-table { font-size: .78rem; }
  .exec-grid, .hotel-grid, .roi-grid { grid-template-columns: 1fr; }
  .exec-left { border-right: none; padding-right: 0; }
  .exec-right { padding-left: 0; }
  h2 { page-break-before: always; }
  h2:first-child { page-break-before: avoid; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .exec-grid, .hotel-grid, .roi-grid { grid-template-columns: 1fr; }
  .exec-left { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 2rem; }
  .exec-right { padding-left: 0; }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .roadmap-grid { grid-template-columns: 1fr; }
  .timeline-results { grid-template-columns: 1fr 1fr; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }
  .contact-inner { padding: 2.5rem 1.5rem; }
}
