﻿/* ============================================
     0. DESIGN TOKENS
  ============================================ */
:root {
  --navy-deep: #0a1b33;
  --navy: #0f2a52;
  --navy-soft: #16386b;
  --gold: #bf9b30;
  --gold-light: #e3c878;
  --gold-soft: #f4e8bd;
  --cream: #faf7f0;
  --paper: #fffdf8;
  --white: #ffffff;
  --charcoal: #242424;
  --grey: #6b7280;
  --success: #1f8f5f;
  --danger: #b84236;
  --border: #e5dfcf;
  --border-navy: rgba(255, 255, 255, 0.14);
  --shadow: 0 10px 30px rgba(10, 27, 51, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 27, 51, 0.14);
  --radius: 6px;
  --max: 1180px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, Segoe UI, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

/* ============================================
     1. RESET & BASE
  ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

/* ============================================
     ADMIN PANEL
  ============================================ */
.admin-body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(191, 155, 48, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(10, 27, 51, 0.035) 1px, transparent 1px), var(--cream);
}
.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-login-card {
  width: min(100%, 460px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(244, 232, 189, 0.34)
    ),
    var(--paper);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.admin-login-logo,
.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-deep);
}
.admin-login-logo strong,
.admin-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.1;
}
.admin-login-logo strong span {
  color: var(--gold);
}
.admin-login-logo small,
.admin-brand small {
  display: block;
  margin-top: 3px;
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-login-head {
  margin: 34px 0 24px;
}
.admin-login-head h1,
.admin-page-head h1 {
  font-size: clamp(30px, 6vw, 42px);
  margin-bottom: 10px;
}
.admin-login-head p,
.admin-page-head p {
  color: var(--grey);
}
.admin-login-form {
  display: grid;
  gap: 18px;
}
.admin-field {
  display: grid;
  gap: 8px;
}
.admin-field label {
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 700;
}
.admin-field input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  padding: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.admin-field input:focus {
  outline: none;
  border-color: rgba(191, 155, 48, 0.76);
  box-shadow: 0 0 0 4px rgba(191, 155, 48, 0.12);
}
.admin-submit {
  width: 100%;
  justify-content: center;
}
.admin-alert {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  padding: 14px 16px;
}
.admin-alert.error {
  border: 1px solid rgba(184, 66, 54, 0.26);
  background: rgba(184, 66, 54, 0.08);
  color: #8d3028;
}
.admin-shell {
  width: min(100%, 1260px);
  margin: 0 auto;
  padding: 14px;
}
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 14px;
  position: sticky;
  top: 12px;
  z-index: 20;
}
.admin-userbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.admin-userbar span {
  display: none;
  color: var(--grey);
  font-size: 13px;
  font-weight: 600;
}
.admin-userbar a {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.admin-userbar a:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.admin-content {
  padding: 34px 0 60px;
}
.admin-page-head {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}
.admin-count {
  width: fit-content;
  border: 1px solid rgba(191, 155, 48, 0.28);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
}
.admin-empty {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 34px 24px;
}
.admin-empty h2 {
  font-size: 26px;
  margin-bottom: 8px;
}
.admin-empty p {
  color: var(--grey);
}
.admin-inquiry-list {
  display: grid;
  gap: 18px;
}
.admin-inquiry-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-inquiry-main {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--border);
}
.admin-inquiry-main h2 {
  font-size: 23px;
  margin-bottom: 10px;
}
.admin-inquiry-main p {
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.75;
}
.admin-status {
  width: fit-content;
  height: fit-content;
  border-radius: 999px;
  background: rgba(191, 155, 48, 0.12);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  text-transform: uppercase;
}
.admin-status.new {
  background: rgba(31, 143, 95, 0.1);
  color: #14613f;
}
.admin-status.archived {
  background: rgba(107, 114, 128, 0.12);
  color: var(--grey);
}
.admin-inquiry-meta {
  display: grid;
  gap: 0;
}
.admin-inquiry-meta div {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  padding: 16px 22px;
}
.admin-inquiry-meta div:last-child {
  border-bottom: none;
}
.admin-inquiry-meta dt {
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-inquiry-meta dd,
.admin-inquiry-meta a {
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 700;
  word-break: break-word;
}
.admin-app {
  display: grid;
  gap: 16px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 14px;
}
.admin-sidebar {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.92),
      rgba(244, 232, 189, 0.3)
    ),
    var(--paper);
  box-shadow: var(--shadow);
  padding: 14px;
}
.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 14px;
  color: var(--navy-deep);
}
.admin-sidebar-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.1;
}
.admin-sidebar-brand small {
  display: block;
  margin-top: 3px;
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-sidebar-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 100%;
}
.admin-nav-link {
  min-width: 0;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  padding: 10px 14px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.admin-nav-link:hover,
.admin-nav-link.active {
  border-color: rgba(191, 155, 48, 0.52);
  background: var(--navy-deep);
  color: var(--white);
}
.admin-nav-link svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
}
.admin-nav-link.active svg,
.admin-nav-link:hover svg {
  color: var(--gold-light);
}
.admin-sidebar-foot {
  display: none;
}
.admin-main {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}
.admin-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 12px 14px;
  position: sticky;
  top: 10px;
  text-transform: uppercase;
  z-index: 12;
}
.admin-mobile-header span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-mobile-header a {
  border-radius: 999px;
  background: var(--navy-deep);
  color: var(--gold-light);
  padding: 8px 12px;
}
.admin-action-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(191, 155, 48, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 16px;
  box-shadow: 0 12px 24px rgba(191, 155, 48, 0.18);
}
.admin-action-btn svg {
  width: 17px;
  height: 17px;
}
.admin-empty-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--navy-deep);
  color: var(--gold-light);
  margin-bottom: 20px;
  box-shadow: 0 14px 28px rgba(10, 27, 51, 0.16);
}
.admin-empty-icon svg {
  width: 28px;
  height: 28px;
}
.admin-blog-empty p {
  max-width: 680px;
}
.admin-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.admin-blog-table-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow-x: auto;
}
.admin-blog-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}
.admin-blog-table thead th {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 27, 51, 0.04);
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 16px 18px;
  text-align: left;
  text-transform: uppercase;
}
.admin-blog-table tbody td {
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 14px;
  padding: 18px;
  vertical-align: top;
}
.admin-blog-table tbody tr:hover {
  background: rgba(244, 232, 189, 0.18);
}
.admin-blog-table tbody tr:last-child td {
  border-bottom: none;
}
.admin-blog-title {
  display: grid;
  gap: 6px;
  max-width: 460px;
}
.admin-blog-title strong {
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 800;
}
.admin-blog-title span {
  color: var(--grey);
  line-height: 1.6;
}
.admin-blog-title em {
  width: fit-content;
  border-radius: 999px;
  background: rgba(191, 155, 48, 0.12);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  text-transform: uppercase;
}
.admin-status.draft {
  background: rgba(107, 114, 128, 0.1);
  color: var(--grey);
}
.admin-status.published {
  background: rgba(31, 143, 95, 0.1);
  color: #14613f;
}
.admin-table-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}
.admin-table-actions a {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.admin-table-actions a:hover {
  border-color: var(--navy);
  background: var(--navy-deep);
  color: var(--white);
}
.admin-main .container-fluid {
  width: 100%;
  max-width: 1040px !important;
  margin: 0;
  padding: 0;
}
.admin-main .card {
  border: 1px solid var(--border) !important;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow) !important;
  overflow: hidden;
}
.admin-main .card-body {
  padding: 24px;
}
.admin-main .form-label {
  display: block;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}
.admin-main .form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
  color: var(--charcoal);
  font: inherit;
  padding: 13px 14px;
}
.admin-main textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
.admin-main .form-control:focus {
  outline: none;
  border-color: rgba(191, 155, 48, 0.76);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(191, 155, 48, 0.12);
}
.admin-main .mb-3 {
  margin-bottom: 18px;
}
.admin-main .row {
  display: grid;
  gap: 18px;
}
.admin-main .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  padding: 12px 16px;
}
.admin-main .alert {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 14px 16px;
}
.admin-main .alert-danger {
  border: 1px solid rgba(184, 66, 54, 0.26);
  background: rgba(184, 66, 54, 0.08);
  color: #8d3028;
}
.admin-main .alert-success {
  border: 1px solid rgba(31, 143, 95, 0.28);
  background: rgba(31, 143, 95, 0.09);
  color: #14613f;
}

@media (min-width: 700px) {
  .admin-login-card {
    padding: 38px;
  }
  .admin-shell {
    padding: 24px;
  }
  .admin-topbar {
    padding: 16px 18px;
  }
  .admin-userbar span {
    display: inline;
  }
  .admin-page-head {
    align-items: end;
    display: flex;
    justify-content: space-between;
  }
  .admin-inquiry-main {
    align-items: flex-start;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 26px;
  }
  .admin-inquiry-meta {
    grid-template-columns: repeat(4, 1fr);
  }
  .admin-inquiry-meta div {
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 18px 22px;
  }
  .admin-inquiry-meta div:last-child {
    border-right: none;
  }
  .admin-main .row {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-main .col-md-6 {
    min-width: 0;
  }
  .admin-sidebar-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .admin-app {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
  }
  .admin-sidebar {
    min-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 24px;
  }
  .admin-sidebar-brand {
    padding-bottom: 24px;
  }
  .admin-sidebar-nav {
    display: grid;
    gap: 10px;
    overflow: visible;
    grid-template-columns: 1fr;
  }
  .admin-nav-link {
    min-width: 0;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 13px 14px;
  }
  .admin-sidebar-foot {
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    padding-top: 18px;
  }
  .admin-sidebar-foot span {
    color: var(--grey);
    font-size: 12px;
    font-weight: 700;
  }
  .admin-sidebar-foot a {
    display: inline-flex;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--navy);
    font-weight: 800;
    padding: 11px 14px;
  }
  .admin-mobile-header {
    display: none;
  }
  .admin-content {
    padding: 8px 0 60px;
  }
}
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(191, 155, 48, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(10, 27, 51, 0.035) 1px, transparent 1px), var(--cream);
  background-size:
    64px 64px,
    64px 64px,
    auto;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
}
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 96px 0;
  position: relative;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow {
  justify-content: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--grey);
  font-size: 17px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(10, 27, 51, 0.08);
  max-width: 100%;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border-color: rgba(117, 86, 14, 0.18);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(191, 155, 48, 0.25);
}
.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
     2. TOP UTILITY BAR
  ============================================ */
.topbar {
  background:
    linear-gradient(90deg, rgba(191, 155, 48, 0.12), transparent 28%),
    var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar-left a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.topbar-left a:hover {
  color: var(--gold-light);
}
.topbar-left svg {
  width: 14px;
  height: 14px;
}
.topbar-social {
  display: flex;
  gap: 8px;
}
.topbar-social a {
  color: rgba(255, 255, 255, 0.65);
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  transition: 0.2s;
}
.topbar-social a:hover {
  color: var(--gold-light);
  border-color: rgba(227, 200, 120, 0.58);
  background: rgba(255, 255, 255, 0.06);
}
.topbar-social svg {
  width: 15px;
  height: 15px;
}

/* ============================================
     3. HEADER / NAV
  ============================================ */
header.site-header {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 70% 18%,
      rgba(227, 200, 120, 0.22),
      transparent 30%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 40%),
    var(--navy-deep);
  border: 1px solid rgba(227, 200, 120, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 12px 28px rgba(10, 27, 51, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.logo-mark svg {
  width: 32px;
  height: 32px;
}
.logo-shield {
  fill: rgba(227, 200, 120, 0.1);
  stroke: var(--gold-light);
  stroke-width: 1.8;
}
.logo-chart,
.logo-spark {
  stroke: var(--gold-light);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.02em;
}
.logo-text span {
  color: var(--gold);
}
.logo-tagline {
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

nav.main-nav ul {
  display: flex;
  gap: 26px;
  align-items: center;
}
nav.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after {
  width: 100%;
}
nav.main-nav a.active {
  color: var(--navy-deep);
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-cta {
  display: inline-flex;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  display: block;
  transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
     4. HERO
  ============================================ */
.hero {
  padding: 94px 0 108px;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(250, 247, 240, 0.74) 47%,
      rgba(244, 232, 189, 0.58) 100%
    ),
    var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 0 42%,
      rgba(191, 155, 48, 0.12) 42% 42.5%,
      transparent 42.5%
    ),
    linear-gradient(
      45deg,
      transparent 0 55%,
      rgba(10, 27, 51, 0.05) 55% 55.5%,
      transparent 55.5%
    );
  background-size:
    360px 180px,
    300px 150px;
  opacity: 0.75;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy {
  position: relative;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  margin-bottom: 22px;
  letter-spacing: 0;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-copy p.lead {
  font-size: 18px;
  color: var(--grey);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-kpi {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(229, 223, 207, 0.92);
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 12px 28px rgba(10, 27, 51, 0.06);
}
.hero-kpi b {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--navy-deep);
  line-height: 1.2;
}
.hero-kpi span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(229, 223, 207, 0.8);
  border-radius: 999px;
  padding: 7px 12px;
}
.hero-trust svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Signature element: the Ledger Card */
.ledger-card {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(
      circle at 86% 12%,
      rgba(191, 155, 48, 0.2),
      transparent 26%
    ),
    var(--navy-deep);
  border: 1px solid var(--border-navy);
  border-radius: 10px;
  padding: 38px 34px;
  position: relative;
  box-shadow: 0 28px 70px rgba(10, 27, 51, 0.24);
  overflow: hidden;
}
.ledger-card > * {
  position: relative;
  z-index: 1;
}
.ledger-card::before,
.ledger-card::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold);
}
.ledger-card::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.ledger-card::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}
.ledger-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-navy);
  padding-bottom: 18px;
  margin-bottom: 24px;
}
.ledger-head .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.ledger-head .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3fb27f;
  box-shadow: 0 0 0 4px rgba(63, 178, 127, 0.18);
}
.ledger-headline {
  margin-bottom: 22px;
}
.ledger-headline strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
}
.ledger-headline span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  margin-top: 7px;
}
.ledger-chart {
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.ledger-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ledger-stats .stat {
  border-left: 1px solid rgba(227, 200, 120, 0.28);
  padding-left: 14px;
}
.ledger-stats .stat b {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.ledger-stats .stat b .count {
  color: var(--gold-light);
}
.ledger-stats .stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ledger-foot {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border-navy);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
}

/* ============================================
     5. WHY LEARN WITH US
  ============================================ */
.why {
  background: linear-gradient(180deg, var(--white), var(--paper));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.why-card:last-child {
  border-right: none;
}
.why-card::after {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 600;
  color: rgba(191, 155, 48, 0.12);
}
.why-card:nth-child(1)::after {
  content: "01";
}
.why-card:nth-child(2)::after {
  content: "02";
}
.why-card:nth-child(3)::after {
  content: "03";
}
.why-card:nth-child(4)::after {
  content: "04";
}
.why-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(227, 200, 120, 0.2), transparent),
    var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 12px 24px rgba(10, 27, 51, 0.16);
}
.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.why-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14.5px;
  color: var(--grey);
}

/* ============================================
     6. WHAT WE COVER
  ============================================ */
.cover {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.56),
      rgba(250, 247, 240, 0.92)
    ),
    var(--cream);
}
.cover .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.cover-visual {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.market-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--navy-deep);
  color: var(--white);
}
.market-panel-head strong {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.2;
}
.market-panel-head span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cover-visual .tick-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 15px 22px;
  border-bottom: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.5);
}
.cover-visual .tick-row:last-child {
  border-bottom: none;
}
.cover-visual .tick-row span:first-child {
  color: var(--navy-deep);
  font-weight: 600;
}
.cover-visual .up {
  color: var(--success);
}
.cover-visual .down {
  color: var(--danger);
}
.mini-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 7px;
  padding: 22px;
  min-height: 112px;
}
.mini-bars span {
  display: block;
  height: var(--h);
  min-height: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: inset 0 -8px 14px rgba(10, 27, 51, 0.08);
}
.mini-bars span:nth-child(1) {
  --h: 42%;
}
.mini-bars span:nth-child(2) {
  --h: 66%;
}
.mini-bars span:nth-child(3) {
  --h: 38%;
}
.mini-bars span:nth-child(4) {
  --h: 78%;
}
.mini-bars span:nth-child(5) {
  --h: 54%;
}
.mini-bars span:nth-child(6) {
  --h: 92%;
}
.mini-bars span:nth-child(7) {
  --h: 64%;
}
.mini-bars span:nth-child(8) {
  --h: 84%;
}
.mini-bars span:nth-child(9) {
  --h: 48%;
}
.mini-bars span:nth-child(10) {
  --h: 72%;
}
.mini-bars span:nth-child(11) {
  --h: 58%;
}
.mini-bars span:nth-child(12) {
  --h: 88%;
}
.cover-copy p {
  color: var(--grey);
  margin-bottom: 22px;
  font-size: 16px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.chip {
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(10, 27, 51, 0.04);
}
.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================
     7. ABOUT SNAPSHOT
  ============================================ */
.about-snap {
  background:
    linear-gradient(120deg, rgba(191, 155, 48, 0.12), transparent 35%),
    linear-gradient(180deg, var(--navy-deep), #07172c);
  color: var(--white);
  overflow: hidden;
}
.about-snap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.32;
  pointer-events: none;
}
.about-snap .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-snap .eyebrow {
  color: var(--gold-light);
}
.about-snap .eyebrow::before {
  background: var(--gold-light);
}
.about-snap h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 20px;
}
.about-snap p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 520px;
}
.about-quote {
  border-left: 3px solid var(--gold);
  padding: 32px;
  background: rgba(255, 255, 255, 0.065);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}
.about-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--white);
  margin: 0;
}
.about-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 13px;
  color: var(--gold-light);
  font-family: var(--font-mono);
}
.about-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.about-points svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ============================================
     8. TESTIMONIALS
  ============================================ */
.reviews {
  background: linear-gradient(180deg, var(--white), var(--paper));
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-shot {
  min-height: 320px;
  height: clamp(300px, 34vw, 380px);
  background:
    linear-gradient(160deg, rgba(10, 27, 51, 0.95), rgba(22, 56, 107, 0.9)),
    repeating-linear-gradient(
      0deg,
      transparent 0 23px,
      rgba(255, 255, 255, 0.08) 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px;
}
.review-shot::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(227, 200, 120, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}
.review-shot-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}
.review-shot svg {
  width: 46px;
  height: 46px;
  color: rgba(227, 200, 120, 0.62);
  position: relative;
  z-index: 1;
}
.review-shot .replace-note {
  position: absolute;
  bottom: 28px;
  left: 34px;
  right: 34px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.03em;
  z-index: 1;
}
.review-name {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
}
.review-name svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name span {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-deep);
}
.reviews-more {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
     9. COMMUNITY BANNER
  ============================================ */
.banner {
  background:
    linear-gradient(135deg, rgba(10, 27, 51, 0.08), rgba(255, 255, 255, 0.18)),
    var(--gold);
  text-align: center;
  padding: 74px 0;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(10, 27, 51, 0.14);
  pointer-events: none;
}
.banner .container {
  position: relative;
  z-index: 1;
}
.banner h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 14px;
  color: var(--navy-deep);
}
.banner p {
  color: rgba(10, 27, 51, 0.75);
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 16px;
}
.banner-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.banner-icons a {
  min-width: 148px;
  height: 50px;
  border-radius: 5px;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s;
  box-shadow: 0 14px 28px rgba(10, 27, 51, 0.18);
}
.banner-icons a:hover {
  transform: translateY(-3px);
}
.banner-icons svg {
  width: 21px;
  height: 21px;
  color: var(--white);
}

/* ============================================
     10. FINAL CTA
  ============================================ */
.final-cta {
  background: var(--cream);
  text-align: center;
}
.final-cta .container {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(244, 232, 189, 0.48)
    ),
    var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 58px 24px;
  box-shadow: var(--shadow);
}
.final-cta h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 16px;
}
.final-cta p {
  color: var(--grey);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 16px;
}

/* ============================================
     ABOUT PAGE
  ============================================ */
.about-hero {
  padding: 96px 0 108px;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.96),
      rgba(250, 247, 240, 0.78) 52%,
      rgba(244, 232, 189, 0.56)
    ),
    var(--cream);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 0 44%,
      rgba(191, 155, 48, 0.13) 44% 44.4%,
      transparent 44.4%
    ),
    linear-gradient(rgba(10, 27, 51, 0.04) 1px, transparent 1px);
  background-size:
    330px 180px,
    72px 72px;
  pointer-events: none;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-hero-copy h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.8vw, 58px);
}
.about-hero-copy p {
  max-width: 620px;
  color: var(--grey);
  font-size: 18px;
  margin-bottom: 34px;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.about-hero-visual {
  position: relative;
  min-height: 470px;
}
.about-hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px 14px 26px 34px;
  border: 1px solid rgba(191, 155, 48, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.55),
      rgba(244, 232, 189, 0.34)
    ),
    var(--paper);
  transform: rotate(-3deg);
  box-shadow: 0 28px 70px rgba(10, 27, 51, 0.12);
}
.research-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 80% 8%,
      rgba(227, 200, 120, 0.22),
      transparent 28%
    ),
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), transparent 32%),
    var(--navy-deep);
  color: var(--white);
  box-shadow: 0 32px 80px rgba(10, 27, 51, 0.28);
}
.research-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.research-toolbar div {
  display: flex;
  gap: 7px;
}
.research-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}
.research-toolbar span:first-child {
  background: var(--gold-light);
}
.research-toolbar strong {
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.research-screen {
  padding: 22px;
}
.research-chart {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(255, 255, 255, 0.04);
}
.chart-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.7;
}
.research-chart svg {
  position: absolute;
  inset: 34px 0 0;
  width: 100%;
  height: calc(100% - 34px);
}
.research-chart svg path:first-child {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 4;
  stroke-linecap: round;
}
.research-chart svg path:last-child {
  fill: rgba(191, 155, 48, 0.16);
  stroke: none;
}
.chart-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-grid;
  gap: 2px;
  border: 1px solid rgba(227, 200, 120, 0.34);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(10, 27, 51, 0.76);
  backdrop-filter: blur(8px);
}
.chart-badge strong {
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 26px;
  line-height: 1;
}
.chart-badge span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.research-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.research-summary span {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.research-summary strong {
  color: var(--white);
  font-size: 18px;
}
.research-summary p {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}
.research-note-card {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 106px;
  width: 218px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 42px rgba(10, 27, 51, 0.16);
  backdrop-filter: blur(10px);
}
.research-note-card span {
  display: block;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.research-note-card strong {
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
}
.research-metrics {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 46px;
  bottom: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.research-metrics div {
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(10, 27, 51, 0.09);
}
.research-metrics b {
  display: block;
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 15px;
  margin-bottom: 4px;
}
.research-metrics span {
  color: var(--grey);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-story {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}
.story-panel h2 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.2vw, 42px);
}
.story-panel p {
  max-width: 680px;
  color: var(--grey);
  margin-bottom: 18px;
}
.story-ledger {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.story-ledger-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.story-ledger-row:last-child {
  border-bottom: none;
}
.story-ledger-row span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}
.story-ledger-row strong {
  color: var(--navy-deep);
  font-size: 16px;
}

.mission-vision {
  background: var(--cream);
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.mission-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.mission-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(191, 155, 48, 0.24);
  background: rgba(244, 232, 189, 0.36);
}
.mission-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--navy-deep);
  color: var(--gold-light);
  margin-bottom: 22px;
  box-shadow: 0 12px 26px rgba(10, 27, 51, 0.16);
}
.mission-icon svg {
  width: 24px;
  height: 24px;
}
.mission-card > span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mission-card h3 {
  margin: 10px 0 14px;
  font-size: 24px;
}
.mission-card p {
  color: var(--grey);
}

.daily-analysis {
  background: var(--white);
}
.analysis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.analysis-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  background: var(--paper);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.analysis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.analysis-card svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}
.analysis-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.analysis-card p {
  color: var(--grey);
  font-size: 14.5px;
}

.sector-focus {
  background:
    linear-gradient(120deg, rgba(191, 155, 48, 0.1), transparent 38%),
    var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}
.sector-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.26;
}
.sector-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sector-copy .eyebrow {
  color: var(--gold-light);
}
.sector-copy .eyebrow::before {
  background: var(--gold-light);
}
.sector-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.3vw, 42px);
  margin-bottom: 18px;
}
.sector-copy p {
  color: rgba(255, 255, 255, 0.72);
}
.sector-wheel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sector-wheel span {
  border: 1px solid rgba(227, 200, 120, 0.26);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.about-community {
  padding: 0;
  background: var(--white);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
  transform: translateY(-44px);
  box-shadow: var(--shadow-lg);
}
.about-stats div {
  padding: 28px;
  border-right: 1px solid var(--border);
}
.about-stats div:last-child {
  border-right: none;
}
.about-stats b {
  display: block;
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 6px;
}
.about-stats .count {
  color: var(--gold);
}
.about-stats span:last-child {
  color: var(--grey);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-section {
  padding-top: 58px;
  background: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.trust-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}
.trust-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.trust-card p {
  color: var(--grey);
}

.about-cta {
  text-align: center;
  background: var(--cream);
}
.about-cta .container {
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.94),
      rgba(244, 232, 189, 0.48)
    ),
    var(--paper);
  padding: 58px 24px;
  box-shadow: var(--shadow);
}
.about-cta h2 {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: clamp(28px, 3.5vw, 40px);
}
.about-cta p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--grey);
}

/* ============================================
     EXPERT GUIDANCE PAGE
  ============================================ */
.guidance-hero {
  padding: 96px 0 108px;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.96),
      rgba(250, 247, 240, 0.78) 48%,
      rgba(244, 232, 189, 0.52)
    ),
    var(--cream);
}
.guidance-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 0 42%,
      rgba(191, 155, 48, 0.13) 42% 42.4%,
      transparent 42.4%
    ),
    linear-gradient(rgba(10, 27, 51, 0.04) 1px, transparent 1px);
  background-size:
    340px 180px,
    72px 72px;
  pointer-events: none;
}
.guidance-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.guidance-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.8vw, 58px);
}
.guidance-hero-copy p {
  max-width: 620px;
  color: var(--grey);
  font-size: 18px;
  margin-bottom: 34px;
}
.guidance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.guidance-visual {
  position: relative;
  min-height: 500px;
}
.guidance-visual::before {
  content: "";
  position: absolute;
  inset: 28px 20px 22px 28px;
  border: 1px solid rgba(191, 155, 48, 0.2);
  border-radius: 16px;
  background: var(--paper);
  transform: rotate(2.5deg);
  box-shadow: 0 28px 70px rgba(10, 27, 51, 0.12);
}
.guidance-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(227, 200, 120, 0.22),
      transparent 28%
    ),
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), transparent 34%),
    var(--navy-deep);
  color: var(--white);
  box-shadow: 0 32px 80px rgba(10, 27, 51, 0.28);
}
.guidance-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.guidance-window-head span {
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.guidance-window-head strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
}
.guidance-chart {
  position: relative;
  min-height: 250px;
  margin: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(255, 255, 255, 0.04);
}
.guidance-chart svg {
  position: absolute;
  inset: 38px 0 0;
  width: 100%;
  height: calc(100% - 38px);
}
.guidance-chart svg path:first-child {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 4;
  stroke-linecap: round;
}
.guidance-chart svg path:last-child {
  fill: rgba(191, 155, 48, 0.16);
  stroke: none;
}
.guidance-chart-note {
  position: absolute;
  left: 18px;
  top: 18px;
  max-width: 220px;
  border: 1px solid rgba(227, 200, 120, 0.34);
  border-radius: 9px;
  padding: 12px 14px;
  background: rgba(10, 27, 51, 0.78);
  backdrop-filter: blur(8px);
}
.guidance-chart-note span {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.guidance-chart-note strong {
  color: var(--white);
  font-size: 16px;
  line-height: 1.25;
}
.guidance-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 22px 22px;
}
.guidance-timeline div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
}
.guidance-timeline span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.guidance-timeline b {
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 14px;
}
.guidance-mini-card {
  position: absolute;
  z-index: 3;
  right: -14px;
  bottom: 34px;
  width: 250px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 42px rgba(10, 27, 51, 0.16);
  backdrop-filter: blur(10px);
}
.guidance-mini-card span {
  display: block;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.guidance-mini-card strong {
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
}

.guidance-content,
.learner-fit {
  background: var(--white);
}
.guidance-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.guidance-card,
.learner-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  background: var(--paper);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.guidance-card:hover,
.learner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.guidance-card svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}
.guidance-card h3,
.learner-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.guidance-card p,
.learner-card p {
  color: var(--grey);
  font-size: 14.5px;
}

.live-sessions {
  background:
    linear-gradient(120deg, rgba(191, 155, 48, 0.1), transparent 38%),
    var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}
.live-sessions::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.25;
}
.live-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.live-copy .eyebrow {
  color: var(--gold-light);
}
.live-copy .eyebrow::before {
  background: var(--gold-light);
}
.live-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 18px;
}
.live-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}
.live-note {
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
}
.session-list {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}
.session-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.session-list div:last-child {
  border-bottom: none;
}
.session-list span {
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}
.session-list strong {
  color: var(--white);
}

.learner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.learner-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.community-access {
  background: var(--cream);
}
.access-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}
.access-copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 18px;
}
.access-copy p {
  color: var(--grey);
}
.access-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.access-list span {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px 14px 42px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(10, 27, 51, 0.04);
}
.access-list span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.guidance-disclaimer {
  background: var(--white);
}
.guidance-disclaimer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.94),
      rgba(244, 232, 189, 0.5)
    ),
    var(--paper);
  padding: 48px;
  box-shadow: var(--shadow);
}
.guidance-disclaimer h2 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 40px);
}
.guidance-disclaimer p {
  max-width: 680px;
  color: var(--grey);
}

/* ============================================
     CLIENT REVIEWS PAGE
  ============================================ */
.testimonials-hero {
  padding: 96px 0 108px;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.96),
      rgba(250, 247, 240, 0.78) 50%,
      rgba(244, 232, 189, 0.54)
    ),
    var(--cream);
}
.testimonials-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 0 43%,
      rgba(191, 155, 48, 0.13) 43% 43.4%,
      transparent 43.4%
    ),
    linear-gradient(rgba(10, 27, 51, 0.04) 1px, transparent 1px);
  background-size:
    340px 180px,
    72px 72px;
  pointer-events: none;
}
.testimonials-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.testimonials-hero-copy h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.8vw, 58px);
}
.testimonials-hero-copy p {
  max-width: 590px;
  color: var(--grey);
  font-size: 18px;
  margin-bottom: 34px;
}
.testimonial-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
}
.testimonial-hero-stats div {
  border: 1px solid rgba(229, 223, 207, 0.92);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(10, 27, 51, 0.06);
}
.testimonial-hero-stats b {
  display: block;
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 5px;
}
.testimonial-hero-stats .count {
  color: var(--gold);
}
.testimonial-hero-stats span:last-child {
  color: var(--grey);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.testimonial-hero-visual {
  position: relative;
  min-height: 520px;
}
.testimonial-hero-visual::before {
  content: "";
  position: absolute;
  inset: 28px 12px 20px 30px;
  border: 1px solid rgba(191, 155, 48, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.58),
      rgba(244, 232, 189, 0.34)
    ),
    var(--paper);
  transform: rotate(-2.5deg);
  box-shadow: 0 28px 70px rgba(10, 27, 51, 0.12);
}
.review-preview {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(10, 27, 51, 0.16);
}
.review-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-1 {
  z-index: 4;
  left: 7%;
  top: 4%;
  width: 45%;
  height: 58%;
  transform: rotate(-3deg);
}
.preview-2 {
  z-index: 3;
  right: 3%;
  top: 12%;
  width: 42%;
  height: 52%;
  transform: rotate(3deg);
}
.preview-3 {
  z-index: 5;
  left: 30%;
  bottom: 4%;
  width: 46%;
  height: 48%;
  transform: rotate(1deg);
}
.preview-4 {
  z-index: 2;
  left: 4%;
  bottom: 12%;
  width: 36%;
  height: 38%;
  transform: rotate(4deg);
  opacity: 0.92;
}

.testimonial-gallery-section {
  background: linear-gradient(180deg, var(--white), var(--paper));
}
.testimonial-wall {
  columns: 3 280px;
  column-gap: 24px;
}
.testimonial-shot-card {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  margin: 0 0 24px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.testimonial-shot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-shot-card a {
  display: block;
  background:
    linear-gradient(160deg, rgba(10, 27, 51, 0.08), transparent), var(--cream);
}
.testimonial-shot-card img {
  width: 100%;
  height: auto;
}
.testimonial-shot-name {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  background: var(--paper);
}
.testimonial-shot-name svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-shot-name span {
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 15px;
}
.empty-testimonials {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 42px 28px;
  background: var(--paper);
  text-align: center;
  box-shadow: var(--shadow);
}
.empty-testimonials h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.empty-testimonials p {
  color: var(--grey);
}
.empty-testimonials code {
  color: var(--navy-deep);
  font-family: var(--font-mono);
}
.testimonial-cta {
  text-align: center;
  background: var(--cream);
}
.testimonial-cta .container {
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.94),
      rgba(244, 232, 189, 0.48)
    ),
    var(--paper);
  padding: 58px 24px;
  box-shadow: var(--shadow);
}
.testimonial-cta h2 {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: clamp(28px, 3.5vw, 40px);
}
.testimonial-cta p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--grey);
}

/* ============================================
     CONTACT PAGE
  ============================================ */
.contact-hero {
  padding: 96px 0 108px;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.96),
      rgba(250, 247, 240, 0.8) 48%,
      rgba(244, 232, 189, 0.54)
    ),
    var(--cream);
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 0 44%,
      rgba(191, 155, 48, 0.12) 44% 44.35%,
      transparent 44.35%
    ),
    linear-gradient(rgba(10, 27, 51, 0.04) 1px, transparent 1px);
  background-size:
    340px 180px,
    72px 72px;
  pointer-events: none;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-hero-copy h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.8vw, 58px);
}
.contact-hero-copy p {
  max-width: 590px;
  color: var(--grey);
  font-size: 18px;
  margin-bottom: 34px;
}
.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.contact-hero-visual {
  position: relative;
}
.contact-hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px 18px -18px 34px;
  border: 1px solid rgba(191, 155, 48, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.62),
      rgba(244, 232, 189, 0.34)
    ),
    var(--paper);
  transform: rotate(-2.5deg);
  box-shadow: 0 28px 70px rgba(10, 27, 51, 0.12);
}
.contact-desk-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--border-navy);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 86% 12%,
      rgba(227, 200, 120, 0.22),
      transparent 28%
    ),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), transparent 30%),
    var(--navy-deep);
  box-shadow: 0 28px 70px rgba(10, 27, 51, 0.24);
}
.contact-desk-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--border-navy);
}
.contact-desk-head span {
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.contact-desk-head strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
}
.contact-desk-chart {
  min-height: 250px;
  margin: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 36px 36px;
}
.contact-desk-chart svg {
  width: 100%;
  height: 250px;
}
.contact-desk-chart path:first-child {
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-width: 4;
}
.contact-desk-chart path:last-child {
  fill: rgba(191, 155, 48, 0.18);
  stroke: none;
}
.contact-desk-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 28px 28px;
}
.contact-desk-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12.5px;
  font-weight: 600;
  padding: 12px;
}
.contact-desk-list svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-section {
  background: linear-gradient(180deg, var(--white), var(--paper));
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 42px;
  align-items: start;
}
.contact-form-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 42px;
}
.contact-form-wrap .section-head {
  margin-bottom: 32px;
}
.contact-form {
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  gap: 8px;
}
.form-row.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row.two-col > div {
  display: grid;
  gap: 8px;
}
.contact-form label,
.captcha-alert label {
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.captcha-alert input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
  color: var(--charcoal);
  font: inherit;
  padding: 13px 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.captcha-alert input:focus {
  outline: none;
  border-color: rgba(191, 155, 48, 0.78);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(191, 155, 48, 0.12);
}
.captcha-alert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 16px;
  align-items: end;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      rgba(244, 232, 189, 0.28),
      rgba(255, 255, 255, 0.72)
    ),
    var(--paper);
  padding: 18px;
}
.captcha-alert p {
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 13px;
  margin-top: 5px;
}
.captcha-alert strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-left: 6px;
  border: 1px solid rgba(191, 155, 48, 0.35);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.16em;
  padding: 3px 10px;
}
.form-alert {
  display: grid;
  gap: 6px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
  padding: 14px 16px;
}
.form-alert.success {
  border: 1px solid rgba(31, 143, 95, 0.28);
  background: rgba(31, 143, 95, 0.09);
  color: #14613f;
}
.form-alert.error {
  border: 1px solid rgba(184, 66, 54, 0.26);
  background: rgba(184, 66, 54, 0.08);
  color: #8d3028;
}
.form-alert.pending {
  border: 1px solid rgba(15, 42, 82, 0.2);
  background: rgba(15, 42, 82, 0.06);
  color: var(--navy);
}
.contact-form button[disabled] {
  opacity: 0.72;
  pointer-events: none;
}
.contact-side {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 118px;
}
.contact-side-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
}
.telegram-card {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.94),
      rgba(244, 232, 189, 0.42)
    ),
    var(--paper);
}
.contact-side-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy-deep);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 14px 28px rgba(10, 27, 51, 0.16);
}
.contact-side-icon svg {
  width: 24px;
  height: 24px;
}
.contact-side-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.contact-side-card p {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 22px;
}
.contact-note-list {
  display: grid;
  gap: 14px;
}
.contact-note-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--grey);
  font-size: 14px;
}
.contact-note-list svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================
     BLOG PAGES
  ============================================ */
.blog-hero,
.blog-detail-hero {
  padding: 96px 0 108px;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.96),
      rgba(250, 247, 240, 0.8) 48%,
      rgba(244, 232, 189, 0.54)
    ),
    var(--cream);
}
.blog-hero::before,
.blog-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 0 44%,
      rgba(191, 155, 48, 0.12) 44% 44.35%,
      transparent 44.35%
    ),
    linear-gradient(rgba(10, 27, 51, 0.04) 1px, transparent 1px);
  background-size:
    340px 180px,
    72px 72px;
  pointer-events: none;
}
.blog-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.blog-hero-copy h1,
.blog-detail-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.8vw, 58px);
}
.blog-hero-copy p {
  max-width: 590px;
  color: var(--grey);
  font-size: 18px;
  margin-bottom: 34px;
}
.blog-hero-visual {
  position: relative;
}
.blog-hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px 18px -18px 34px;
  border: 1px solid rgba(191, 155, 48, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.62),
      rgba(244, 232, 189, 0.34)
    ),
    var(--paper);
  transform: rotate(-2.5deg);
  box-shadow: 0 28px 70px rgba(10, 27, 51, 0.12);
}
.blog-board {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--border-navy);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 86% 12%,
      rgba(227, 200, 120, 0.22),
      transparent 28%
    ),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), transparent 30%),
    var(--navy-deep);
  box-shadow: 0 28px 70px rgba(10, 27, 51, 0.24);
  padding: 28px;
}
.blog-board-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-navy);
}
.blog-board-head span {
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.blog-board-head strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
}
.blog-board-lines {
  display: grid;
  gap: 14px;
  padding: 34px 0;
}
.blog-board-lines span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.blog-board-lines span:nth-child(1) {
  width: 82%;
}
.blog-board-lines span:nth-child(2) {
  width: 64%;
}
.blog-board-lines span:nth-child(3) {
  width: 74%;
}
.blog-board-lines span:nth-child(4) {
  width: 48%;
}
.blog-board-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.blog-board-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
}
.blog-board-metrics b {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 26px;
}
.blog-board-metrics span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}
.blog-list-section,
.blog-detail-section,
.related-blog-section {
  background: linear-gradient(180deg, var(--white), var(--paper));
}
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.site-blog-card,
.related-blog-card,
.blog-side-card,
.blog-empty {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.site-blog-card {
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.site-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.site-blog-visual {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(10, 27, 51, 0.95), rgba(22, 56, 107, 0.92)),
    var(--navy-deep);
}
.site-blog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-blog-icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(227, 200, 120, 0.32);
  border-radius: 18px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}
.site-blog-icon svg {
  width: 38px;
  height: 38px;
}
.blog-featured-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 800;
  padding: 7px 11px;
  text-transform: uppercase;
}
.site-blog-content {
  padding: 24px;
}
.site-blog-meta,
.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.site-blog-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.site-blog-content p,
.related-blog-card p {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 20px;
}
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}
.blog-read-link svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}
.blog-empty {
  padding: 44px 28px;
  text-align: center;
}
.blog-empty h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.blog-empty p {
  color: var(--grey);
}
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.blog-back-link svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}
.blog-detail-hero .container {
  position: relative;
  z-index: 1;
}
.blog-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}
.blog-article {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.blog-article-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
.blog-article-banner {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(227, 200, 120, 0.22),
      transparent 30%
    ),
    linear-gradient(160deg, rgba(10, 27, 51, 0.96), rgba(22, 56, 107, 0.92)),
    var(--navy-deep);
  color: var(--gold-light);
}
.blog-article-banner svg {
  width: 74px;
  height: 74px;
}
.blog-article-content {
  padding: 38px;
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.85;
}
.blog-article-content h1,
.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
  margin: 34px 0 14px;
}
.blog-article-content h2 {
  font-size: 32px;
}
.blog-article-content h3 {
  font-size: 25px;
}
.blog-article-content p,
.blog-article-content ul,
.blog-article-content ol {
  margin-bottom: 20px;
}
.blog-article-content ul,
.blog-article-content ol {
  list-style: disc;
  padding-left: 24px;
}
.blog-article-content a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(191, 155, 48, 0.5);
  text-underline-offset: 4px;
}
.blog-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding: 22px 38px 32px;
}
.blog-tag-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 12px;
}
.blog-detail-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 118px;
}
.blog-side-card {
  padding: 28px;
}
.blog-side-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}
.blog-side-card p {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 20px;
}
.blog-side-list {
  display: grid;
  gap: 14px;
}
.blog-side-list a {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}
.blog-side-list a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-side-list strong {
  color: var(--navy-deep);
  font-size: 15px;
}
.blog-side-list span,
.related-blog-card span {
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.related-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-blog-card {
  padding: 24px;
}
.related-blog-card h3 {
  font-size: 22px;
  margin: 10px 0 12px;
}

/* ============================================
     11. FOOTER
  ============================================ */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.65);
}
.footer-top {
  padding: 80px 0 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand .logo-text {
  color: var(--white);
}
.footer-brand .logo-tagline {
  color: rgba(255, 255, 255, 0.45);
}
.footer-brand p {
  margin: 18px 0 22px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.footer-social svg {
  width: 15px;
  height: 15px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12.5px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: 0.2s;
}
.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 3px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-navy);
  padding: 26px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.disclaimer-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 760px;
  line-height: 1.7;
}
.copyright {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

/* ============================================
     12. FLOATING TELEGRAM + BACK TO TOP
  ============================================ */
.float-stack {
  position: fixed;
  right: 26px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 200;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(10, 27, 51, 0.25);
  border: none;
  transition: transform 0.2s;
}
.float-btn:hover {
  transform: translateY(-3px);
}
.float-telegram {
  background: #229ed9;
}
.float-telegram svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}
.float-top {
  background: var(--navy-deep);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.2s;
}
.float-top.show {
  opacity: 1;
  pointer-events: auto;
}
.float-top svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* ============================================
     13. SCROLL REVEAL
  ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
     14. RESPONSIVE
  ============================================ */
@media (max-width: 1024px) {
  .hero .container,
  .cover .container,
  .about-snap .container,
  .about-hero-grid,
  .about-story-grid,
  .guidance-hero-grid,
  .live-grid,
  .access-grid,
  .testimonials-hero-grid,
  .contact-hero-grid,
  .contact-grid,
  .blog-hero-grid,
  .blog-detail-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-visual {
    max-width: 560px;
    min-height: 500px;
  }
  .analysis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guidance-visual {
    max-width: 620px;
    min-height: 520px;
  }
  .testimonial-hero-visual {
    max-width: 620px;
  }
  .contact-hero-visual {
    max-width: 640px;
  }
  .contact-side {
    position: static;
  }
  .blog-card-grid,
  .related-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-detail-sidebar {
    position: static;
  }
  .guidance-card-grid,
  .learner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats div:nth-child(2) {
    border-right: none;
  }
  .about-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  .hero-copy {
    order: 1;
  }
  .hero .ledger-card {
    order: 2;
    max-width: 520px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-card:nth-child(2) {
    border-right: none;
  }
  .why-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .guidance-disclaimer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 860px) {
  nav.main-nav {
    position: fixed;
    top: 74px;
    right: 12px;
    left: auto;
    bottom: auto;
    width: min(340px, calc(100vw - 24px));
    max-height: calc(100dvh - 88px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(calc(100% + 24px));
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      visibility 0.3s ease;
    z-index: 99;
  }
  nav.main-nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 18px 44px rgba(10, 27, 51, 0.18);
  }
  nav.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .topbar-left span.divider {
    display: none;
  }
  .logo-text {
    font-size: 18px;
  }
  .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  .logo-mark svg {
    width: 28px;
    height: 28px;
  }
  .logo-tagline {
    display: none;
  }
  section {
    padding: 70px 0;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card,
  .why-card:nth-child(2) {
    border-right: none;
  }
  .why-card:nth-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 74px 0;
  }
  .guidance-hero {
    padding: 74px 0;
  }
  .testimonials-hero {
    padding: 74px 0;
  }
  .contact-hero {
    padding: 74px 0;
  }
  .blog-hero,
  .blog-detail-hero {
    padding: 74px 0;
  }
  .about-hero-visual {
    min-height: 470px;
  }
  .guidance-visual {
    min-height: 500px;
  }
  .research-note-card {
    right: 10px;
  }
  .daily-analysis,
  .trust-section {
    padding-top: 70px;
  }
}
@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }
  .topbar .container {
    justify-content: center;
    text-align: center;
  }
  .topbar-left {
    display: none;
  }
  .nav-wrap {
    padding: 12px 0;
  }
  .logo {
    gap: 9px;
  }
  .logo-text {
    font-size: 16px;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
  }
  .logo-mark svg {
    width: 25px;
    height: 25px;
  }
  nav.main-nav {
    top: 66px;
  }
  nav.main-nav a {
    font-size: 16px;
  }
  .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .hero-kpis {
    grid-template-columns: 1fr;
  }
  .hero-trust {
    gap: 10px;
  }
  .hero-trust .item {
    width: 100%;
  }
  .market-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .cover-visual .tick-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .banner-icons a {
    width: 100%;
  }
  .ledger-stats {
    grid-template-columns: 1fr 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom .container {
    flex-direction: column;
  }
  .about-hero-copy h1 {
    font-size: 34px;
  }
  .guidance-hero-copy h1 {
    font-size: 34px;
  }
  .testimonials-hero-copy h1 {
    font-size: 34px;
  }
  .contact-hero-copy h1 {
    font-size: 34px;
  }
  .blog-hero-copy h1,
  .blog-detail-hero h1 {
    font-size: 34px;
  }
  .about-hero-actions {
    flex-direction: column;
  }
  .guidance-actions {
    flex-direction: column;
  }
  .contact-hero-actions {
    flex-direction: column;
  }
  .about-hero-visual {
    min-height: auto;
  }
  .guidance-visual {
    min-height: auto;
  }
  .testimonial-hero-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }
  .contact-hero-visual {
    min-height: auto;
  }
  .blog-hero-visual {
    min-height: auto;
  }
  .about-hero-visual::before {
    inset: 12px;
    transform: none;
  }
  .testimonial-hero-visual::before {
    display: none;
  }
  .contact-hero-visual::before {
    inset: 12px;
    transform: none;
  }
  .blog-hero-visual::before {
    inset: 12px;
    transform: none;
  }
  .review-preview {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    max-height: 320px;
    transform: none;
  }
  .review-preview img {
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }
  .testimonial-hero-stats {
    grid-template-columns: 1fr;
  }
  .contact-desk-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-desk-chart {
    margin: 18px;
    min-height: 210px;
  }
  .contact-desk-chart svg {
    height: 210px;
  }
  .contact-desk-list {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }
  .blog-board {
    padding: 22px;
  }
  .blog-board-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-board-metrics,
  .blog-card-grid,
  .related-blog-grid {
    grid-template-columns: 1fr;
  }
  .site-blog-visual {
    min-height: 190px;
  }
  .blog-article-content {
    padding: 26px 22px;
    font-size: 16px;
  }
  .blog-article-content h2 {
    font-size: 26px;
  }
  .blog-article-content h3 {
    font-size: 22px;
  }
  .blog-tag-row {
    padding: 20px 22px 26px;
  }
  .blog-side-card {
    padding: 24px;
  }
  .contact-form-wrap,
  .contact-side-card {
    padding: 24px;
  }
  .form-row.two-col,
  .captcha-alert {
    grid-template-columns: 1fr;
  }
  .guidance-visual::before {
    inset: 12px;
    transform: none;
  }
  .research-window {
    position: relative;
  }
  .guidance-window {
    position: relative;
  }
  .research-screen {
    padding: 18px;
  }
  .guidance-chart {
    margin: 18px;
    min-height: 220px;
  }
  .guidance-window-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .guidance-timeline {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }
  .research-chart {
    min-height: 210px;
  }
  .research-summary {
    grid-template-columns: 1fr;
  }
  .research-summary p {
    max-width: none;
  }
  .research-note-card,
  .research-metrics,
  .guidance-mini-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 14px;
  }
  .research-metrics,
  .guidance-card,
  .learner-card,
  .access-list span,
  .mission-card,
  .trust-card {
    padding: 24px;
  }
  .research-metrics,
  .guidance-card-grid,
  .learner-grid,
  .access-list,
  .analysis-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }
  .guidance-disclaimer .container {
    padding: 34px 22px;
  }
  .testimonial-wall {
    columns: 1;
  }
  .testimonial-cta .container {
    padding: 42px 22px;
  }
  .about-stats {
    transform: translateY(-28px);
  }
  .about-stats div,
  .about-stats div:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .about-stats div:last-child {
    border-bottom: none;
  }
  .sector-wheel span {
    width: 100%;
    text-align: center;
  }
}
