/* =====================================================
   Secret Hotel Inspector — Stylesheet
   Color palette: deep navy + gold
   ===================================================== */

/* ----- Reset & Base --------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #090f1c;
  --bg-alt:        #0c1526;
  --bg-card:       #101d2e;
  --bg-card-hover: #152233;
  --gold:          #c9a84c;
  --gold-hover:    #dbbe68;
  --gold-dim:      rgba(201,168,76,0.12);
  --gold-border:   rgba(201,168,76,0.25);
  --gold-border-s: rgba(201,168,76,0.5);
  --text:          #e8e2d5;
  --text-muted:    #8fa4b8;
  --text-dim:      #4e6275;
  --green:         #4a9e6e;
  --amber:         #d97b3a;
  --red:           #c95050;
  --serif:         'Playfair Display', Georgia, serif;
  --sans:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h:         68px;
  --max-w:         1160px;
  --radius:        4px;
  --radius-lg:     8px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold-hover); }
ul { list-style: none; }

/* ----- Container ------------------------------------ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Buttons -------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: #0a1520;
}
.btn--primary:hover {
  background: var(--gold-hover);
  color: #0a1520;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border-s);
}
.btn--ghost:hover {
  background: var(--gold-dim);
  color: var(--gold-hover);
  border-color: var(--gold);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--outline:hover {
  border-color: var(--gold-border-s);
  color: var(--gold);
  background: var(--gold-dim);
}
.btn--gold {
  background: var(--gold);
  color: #0a1520;
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--gold-hover);
  color: #0a1520;
  transform: translateY(-1px);
}
.btn--full { width: 100%; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }

/* ----- Navigation ----------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(9,15,28,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--gold); }
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav__cta {
  background: var(--gold) !important;
  color: #0a1520 !important;
  font-weight: 500 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  margin-left: 8px;
}
.nav__cta:hover {
  background: var(--gold-hover) !important;
  color: #0a1520 !important;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.25s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Hero ----------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #090f1c 0%, #0c1526 100%);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  max-width: 720px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__trust-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__trust-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}
.hero__trust-div {
  width: 1px;
  height: 32px;
  background: var(--gold-border);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-dot {
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%,100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
}

/* ----- Positioning section -------------------------- */
.positioning {
  padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.positioning__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.positioning__icon {
  color: var(--gold);
  margin-bottom: 16px;
}
.positioning__block h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.positioning__block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ----- Section defaults ----------------------------- */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ----- Card Grid ------------------------------------ */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ----- Service Cards -------------------------------- */
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  position: relative;
}
.service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}
.service-card--featured {
  border-color: var(--gold-border-s);
  background: linear-gradient(145deg, #162538 0%, #101d2e 100%);
}
.service-card__icon {
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card__badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.service-card__badge--gold {
  color: var(--gold);
}
.service-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.service-card__list {
  list-style: none;
  margin-bottom: 20px;
}
.service-card__list li {
  font-size: 0.825rem;
  color: var(--text-muted);
  padding: 5px 0 5px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-card__list li:last-child { border-bottom: none; }
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
.service-card__price {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.service-card__price strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}
.service-card__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
}
.service-card__link:hover { color: var(--gold-hover); }

/* ----- Criteria Cards ------------------------------- */
.criteria-grid { gap: 16px; }

.criteria-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: border-color 0.2s var(--ease);
}
.criteria-card:hover { border-color: var(--gold-border); }
.criteria-card__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.criteria-card__body h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.criteria-card__body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.criteria-card__pts {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 3px 8px;
  border-radius: 2px;
}

.criteria-footer {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.criteria-footer h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-border);
}
.rating-scale { display: flex; flex-direction: column; gap: 10px; }
.rating-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.rating-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.rating-score--0 { background: rgba(201,80,80,0.15); color: var(--red); }
.rating-score--1 { background: rgba(217,123,58,0.15); color: var(--amber); }
.rating-score--2 { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.rating-score--3 { background: rgba(74,158,110,0.15); color: var(--green); }

.star-table { display: flex; flex-direction: column; gap: 8px; }
.star-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.star-row:last-child { border-bottom: none; }
.stars {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  width: 80px;
}

/* ----- Process -------------------------------------- */
.process {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.process__step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.process__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-dim);
}
.process__body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 10px;
}
.process__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 4px;
}
.process__connector {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold-border-s), var(--gold-border));
  margin-left: 23px;
}

/* ----- Sample Report -------------------------------- */
.report-mock {
  background: var(--bg-card);
  border: 1px solid var(--gold-border-s);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.report-mock__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 36px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.report-mock__meta {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.report-mock__logo {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.report-mock__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.report-mock__prop {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.report-mock__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.report-mock__overall {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.report-mock__score {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.report-mock__score::after { content: '/100'; font-size: 1rem; opacity: 0.5; }
.report-mock__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 4px;
}
.report-mock__score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 160px;
}

.report-mock__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.report-mock__categories {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.report-mock__categories h4,
.report-mock__findings h4 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.report-mock__findings { padding: 28px 32px; }

.score-bar-list { display: flex; flex-direction: column; gap: 12px; }
.score-bar-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
}
.score-bar-label { font-size: 0.78rem; color: var(--text-muted); }
.score-bar-track {
  width: 100px;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gold);
  width: 0;
  transition: width 1s var(--ease);
}
.score-bar-fill--warn { background: var(--amber); }
.score-bar-fill--good { background: var(--green); }
.score-bar-pct { font-size: 0.78rem; font-weight: 600; color: var(--gold); min-width: 32px; text-align: right; }
.score-bar-pct--warn { color: var(--amber); }
.score-bar-pct--good { color: var(--green); }

.finding {
  padding: 12px 14px;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  background: rgba(255,255,255,0.03);
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.finding:last-child { margin-bottom: 0; }
.finding--good { border-left-color: var(--green); }
.finding--issue { border-left-color: var(--amber); }
.finding--critical { border-left-color: var(--red); }
.finding__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  margin-bottom: 6px;
}
.finding__tag--good { background: rgba(74,158,110,0.15); color: var(--green); }
.finding__tag--issue { background: rgba(217,123,58,0.15); color: var(--amber); }
.finding__tag--critical { background: rgba(201,80,80,0.15); color: var(--red); }
.finding strong { color: var(--text); }

.report-mock__footer {
  padding: 24px 36px;
  border-top: 1px solid rgba(201,168,76,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.report-mock__cta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 12px;
}

/* ----- Pricing -------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.25s var(--ease);
}
.pricing-card:hover { border-color: var(--gold-border); }
.pricing-card--featured {
  border-color: var(--gold-border-s);
  background: linear-gradient(160deg, #162538 0%, #101d2e 100%);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2), 0 24px 64px rgba(0,0,0,0.4);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a1520;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
}
.pricing-card__tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pricing-card__price {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dim);
  font-family: var(--sans);
}
.pricing-card__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing-card__features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-card__features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.pricing-footer {
  margin-top: 36px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
}
.pricing-footer strong { color: var(--text); }
.pricing-footer a { color: var(--gold); }

/* ----- About ---------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}
.about__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__credentials {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.about__cred {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__cred-num {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.about__cred-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}
.about__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__seal {
  aspect-ratio: 1;
  max-width: 180px;
  margin: 0 auto;
  border: 2px solid var(--gold-border-s);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  position: relative;
}
.about__seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--gold-border-s);
  border-radius: 50%;
}
.about__seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  z-index: 1;
}
.about__seal-top,
.about__seal-bottom {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.about__seal-mark {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about__quote {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.about__quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}
.about__conf {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.about__conf svg { color: var(--text-dim); flex-shrink: 0; margin-top: 1px; }

/* ----- Contact -------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}
.contact__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact__intro p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.contact__reassure {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__reassure-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact__reassure-item svg { color: var(--green); flex-shrink: 0; }

/* ----- Contact Form --------------------------------- */
.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group:last-of-type { margin-bottom: 20px; }

label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
input, select, textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 11px 14px;
  width: 100%;
  transition: border-color 0.2s var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-border-s);
  background: rgba(201,168,76,0.04);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7d90' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
select option { background: #0c1526; color: var(--text); }
textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  justify-content: center;
}
.form-success.visible { display: flex; }
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--text);
}
.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.65;
}

/* ----- Footer --------------------------------------- */
.footer {
  background: #060c16;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer__links h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer__links a:hover { color: var(--text); }
.footer__contact h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer__contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__conf {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 680px;
}
.footer__bottom > p:last-child {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ----- Responsive ----------------------------------- */
@media (max-width: 980px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .positioning__grid { grid-template-columns: 1fr; gap: 32px; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__aside { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .report-mock__body { grid-template-columns: 1fr; }
  .report-mock__categories { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .criteria-footer { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(9,15,28,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px 32px;
    border-bottom: 1px solid var(--gold-border);
    gap: 2px;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 16px; border-radius: var(--radius); }
  .nav__cta { text-align: center; margin-left: 0; }
  .nav__logo-text { display: none; }
}

@media (max-width: 620px) {
  .card-grid--3 { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .hero__trust { gap: 16px; }
  .hero__trust-div { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .report-mock__header { flex-direction: column; gap: 20px; }
  .report-mock__footer { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 72px 0; }
  .contact-form { padding: 24px; }
  .score-bar-item { grid-template-columns: 1fr; gap: 4px; }
  .score-bar-track { display: none; }
}
