/* ============================================================
   Trustway Global — Corporate Dark/Gold Theme
   ============================================================ */

:root {
  --bg-1: #080e1a;
  --bg-2: #0c1424;
  --bg-3: #101c30;
  --bg-card: rgba(14, 24, 42, 0.82);
  --bg-card-hover: rgba(18, 30, 52, 0.92);
  --bg-glass: rgba(10, 18, 34, 0.88);
  --text: #e8ecf4;
  --text-muted: #8a96aa;
  --text-dark: #0a1628;
  --gold: #c9a84c;
  --gold-light: #dcc06e;
  --gold-dark: #a8893d;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --border: rgba(201, 168, 76, 0.14);
  --border-subtle: rgba(138, 150, 170, 0.1);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.25);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg-1);
  background-image:
    radial-gradient(ellipse 900px 600px at 80% -5%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    linear-gradient(170deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h3 {
  font-size: 1.35rem;
}

h4 {
  font-size: 1.1rem;
}

/* ---- Layout ---- */
.shell {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  color: var(--text-dark);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--border);
}

.btn-outline:hover {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.25);
}

.btn-full {
  width: 100%;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  width: min(1160px, 92vw);
  margin: 16px auto 0;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.2px;
}

.brand:hover {
  color: var(--text);
}

.badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* ---- Desktop Nav ---- */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.nav-link .chevron {
  transition: transform var(--transition);
}

/* Desktop Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: rgba(12, 20, 36, 0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 110;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-toggle .chevron {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

/* ---- Mobile Trigger (hamburger) ---- */
.mob-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.06);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 105;
  flex-direction: column;
  gap: 5px;
}

.mob-trigger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
  transform-origin: center;
}

.mob-trigger.is-active .mob-trigger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mob-trigger.is-active .mob-trigger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mob-trigger.is-active .mob-trigger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Fullscreen Mobile Overlay ---- */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: linear-gradient(170deg, #060c18 0%, #0c1828 50%, #0f1e34 100%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.4s;
}

.mob-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Overlay top bar */
.mob-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  flex-shrink: 0;
}

.mob-overlay__top .brand {
  font-size: 16px;
}

.mob-overlay__top .badge {
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.mob-overlay__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.06);
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.mob-overlay__close:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.3);
}

/* Overlay nav links */
.mob-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  gap: 0;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 8px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: color 0.25s ease;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.mob-link:last-child {
  border-bottom: none;
}

.mob-link:hover,
.mob-link.active {
  color: var(--gold);
}

.mob-link__num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.4;
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
  min-width: 24px;
}

/* Stagger animation for links */
.mob-overlay.is-open .mob-link,
.mob-overlay.is-open .mob-accordion__trigger {
  animation: mobLinkIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.mob-overlay.is-open .mob-overlay__nav > :nth-child(1) { animation-delay: 0.08s; }
.mob-overlay.is-open .mob-overlay__nav > :nth-child(2) { animation-delay: 0.14s; }
.mob-overlay.is-open .mob-overlay__nav > :nth-child(3) { animation-delay: 0.2s; }
.mob-overlay.is-open .mob-overlay__nav > :nth-child(4) { animation-delay: 0.26s; }

@keyframes mobLinkIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile accordion */
.mob-accordion__trigger {
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.mob-accordion__arrow {
  margin-left: auto;
  color: var(--gold);
  opacity: 0.4;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s;
}

.mob-accordion.is-open .mob-accordion__arrow {
  transform: rotate(180deg);
  opacity: 0.8;
}

.mob-accordion.is-open .mob-accordion__trigger {
  color: var(--gold);
}

.mob-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mob-accordion.is-open .mob-accordion__panel {
  max-height: 320px;
}

.mob-sublink {
  display: block;
  padding: 14px 8px 14px 48px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.mob-sublink::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
}

.mob-sublink:hover {
  color: var(--gold);
}

/* Overlay bottom */
.mob-overlay__bottom {
  padding: 20px 32px 32px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mob-overlay__bottom .btn-gold {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: var(--radius-pill);
}

.mob-overlay__meta {
  text-align: center;
}

.mob-overlay__meta a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.mob-overlay__meta a:hover {
  color: var(--gold);
}

.mob-overlay__legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.78rem;
}

.mob-overlay__legal a {
  color: var(--text-muted);
  opacity: 0.5;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mob-overlay__legal a:hover {
  color: var(--gold);
  opacity: 1;
}

/* ---- Panels / Cards ---- */
.panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.panel .decor {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ---- Hero — Full Image with Caption ---- */
.hero-wrap {
  position: relative;
  height: calc(85vh + 96px);
  min-height: 620px;
  max-height: 1000px;
  overflow: hidden;
  margin-top: -96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/hero-bg.webp') center 30% / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(8, 14, 26, 0.82) 0%,
      rgba(8, 14, 26, 0.45) 45%,
      rgba(8, 14, 26, 0.1) 70%,
      transparent 100%
    ),
    linear-gradient(180deg,
      rgba(8, 14, 26, 0.3) 0%,
      transparent 30%,
      transparent 70%,
      var(--bg-1) 100%
    );
}

/* Caption positioned bottom-left */
.hero-caption {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  padding-top: 0;
}

.hero-caption__inner {
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding-bottom: 80px;
  pointer-events: auto;
  max-width: 620px;
  margin-left: max(4vw, calc((100vw - 1160px) / 2));
}

.hero-caption__inner .eyebrow {
  margin-bottom: 16px;
}

.hero-caption__inner h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-caption__inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 42ch;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-caption__inner .btn {
  pointer-events: auto;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ---- Intro Row (below hero) ---- */
.intro-row {
  margin-top: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.intro-content {
  position: relative;
}

.intro-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 58ch;
}

/* Metrics */
.metric-bar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-md);
  padding: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition);
}

.metric:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.22);
}

.metric strong {
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
}

.metric p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---- Sections ---- */
.section {
  margin-top: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .eyebrow {
  justify-content: center;
}

.section-header p {
  color: var(--text-muted);
  max-width: 56ch;
  margin: 12px auto 0;
  line-height: 1.7;
}

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

.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ---- Service Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 168, 76, 0.25);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.card h4 {
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.card .card-link:hover {
  gap: 10px;
}

/* ---- Process / Steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 14px;
}

.step h4 {
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---- Contact Grid (UK / Dubai) ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.location-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.location-card__flag {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.location-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-card__label {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.location-card__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.location-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.location-card__icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 2px;
}

.location-card__row a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

.location-card__row a:hover {
  color: var(--gold-light);
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---- Contact Form ---- */
.contact-section {
  margin-top: 80px;
}

.form-card {
  max-width: 640px;
  margin: 0 auto;
}

.form-card h3 {
  margin-bottom: 6px;
}

.form-card > p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.contact-form input[type="text"]:hover,
.contact-form input[type="email"]:hover,
.contact-form textarea:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
}

.form-consent input[type="checkbox"] {
  accent-color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.form-consent a {
  color: var(--gold);
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Alerts */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #6ee7a0;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

/* ---- CTA Banner ---- */
.cta-banner {
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}

.cta-banner h2 {
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ---- Service Page ---- */
.service-hero {
  margin-top: 32px;
}

.service-hero .eyebrow {
  margin-bottom: 16px;
}

.service-hero h1 {
  margin-bottom: 16px;
}

.service-hero .hero-copy {
  margin: 0 0 28px;
}

.service-features {
  margin-top: 48px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.feature-item .fi-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.feature-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ---- Legal Pages ---- */
.legal-page {
  margin-top: 32px;
  margin-bottom: 60px;
}

.legal-page .panel {
  max-width: 860px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.legal-page .lead {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.legal-page h2 {
  margin: 32px 0 12px;
  font-size: 1.2rem;
  color: var(--gold);
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 0.96rem;
}

.legal-page ul {
  padding-left: 20px;
  list-style: disc;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page .meta {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin: 16px 0;
  color: var(--text-muted);
}

.legal-page .meta strong {
  color: var(--gold);
}

.legal-page .last-updated {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---- Footer ---- */
.site-footer {
  margin-top: 80px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  width: min(1160px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.footer-inner .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 16px;
}

.footer-inner .footer-brand .badge {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 auto 8px;
}

.footer-reg {
  color: var(--text-muted);
  font-size: 0.82rem;
  opacity: 0.6;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ============================================================
   COOKIE CONSENT — Dark/Gold Theme Override
   ============================================================ */

#cc-main {
  --cc-font-family: "Inter", "Manrope", sans-serif;
  --cc-bg: #0c1424;
  --cc-primary-color: #e8ecf4;
  --cc-secondary-color: #8a96aa;

  --cc-btn-primary-bg: #c9a84c;
  --cc-btn-primary-color: #0a1628;
  --cc-btn-primary-border-color: #c9a84c;
  --cc-btn-primary-hover-bg: #dcc06e;
  --cc-btn-primary-hover-color: #0a1628;
  --cc-btn-primary-hover-border-color: #dcc06e;

  --cc-btn-secondary-bg: rgba(201, 168, 76, 0.08);
  --cc-btn-secondary-color: #c9a84c;
  --cc-btn-secondary-border-color: rgba(201, 168, 76, 0.2);
  --cc-btn-secondary-hover-bg: rgba(201, 168, 76, 0.15);
  --cc-btn-secondary-hover-color: #dcc06e;
  --cc-btn-secondary-hover-border-color: rgba(201, 168, 76, 0.35);

  --cc-separator-border-color: rgba(201, 168, 76, 0.12);
  --cc-cookie-category-block-bg: rgba(14, 24, 42, 0.6);
  --cc-cookie-category-block-border: rgba(201, 168, 76, 0.1);
  --cc-cookie-category-block-hover-bg: rgba(201, 168, 76, 0.06);
  --cc-cookie-category-block-hover-border: rgba(201, 168, 76, 0.2);

  --cc-overlay-bg: rgba(4, 8, 16, 0.65);
  --cc-webkit-scrollbar-bg: #0c1424;
  --cc-webkit-scrollbar-hover-bg: #c9a84c;

  --cc-toggle-on-bg: #c9a84c;
  --cc-toggle-off-bg: rgba(138, 150, 170, 0.3);
  --cc-toggle-on-knob-bg: #0a1628;
  --cc-toggle-off-knob-bg: #8a96aa;
  --cc-toggle-readonly-bg: rgba(201, 168, 76, 0.4);
  --cc-toggle-readonly-knob-bg: #0a1628;

  --cc-section-border: rgba(201, 168, 76, 0.1);
}

#cc-main .cm,
#cc-main .pm {
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

#cc-main a {
  color: #c9a84c;
}

#cc-main a:hover {
  color: #dcc06e;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    padding: 10px 16px;
    border-radius: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .mob-trigger {
    display: flex;
  }

  /* Hero */
  .hero-wrap {
    height: 70vh;
    min-height: 420px;
  }

  .hero-caption__inner {
    margin-left: 4vw;
    max-width: 400px;
    padding-bottom: 48px;
  }

  .hero-caption__inner h1 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .hero-scroll-hint {
    display: none;
  }

  /* Layout */
  .intro-row {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .metric-bar {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-2x2,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    margin-top: 48px;
  }

  .site-footer {
    margin-top: 48px;
  }

  .cta-banner {
    margin-top: 48px;
    padding: 32px 20px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 8px 12px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .badge {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .panel {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .card {
    padding: 22px 18px;
  }

  h1 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
}
