/* ═══════════════════════════════════════════════════════════════
   Clean Source Group — Main Stylesheet v2
   Theme: Dark Luxury | Aged Shelf Corporations
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --silver:      #C0C0C0;
  --blue:        #191970;
  --gold:        #FFD700;
  --gold-dim:    rgba(255,215,0,0.10);
  --gold-border: rgba(255,215,0,0.22);
  --white:       #FFFFFF;
  --gray-900:    #0E0E0E;
  --gray-800:    #111111;
  --gray-700:    #1A1A1A;
  --gray-600:    #222222;
  --gray-500:    #333333;
  --gray-400:    #444444;
  --gray-300:    #666666;
  --text-muted:  #888888;
  --silver-dim:  rgba(192,192,192,0.07);
  --blue-dim:    rgba(25,25,112,0.30);
  --radius:      6px;
  --radius-lg:   12px;
  --radius-xl:   18px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h:       76px;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--black);
  color: var(--silver);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  line-height: 1.22;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.18rem); }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ───────────────────────────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container--wide  { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192,192,192,0.07);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Logo ─────────────────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--black);
  border: 1.5px solid rgba(192,192,192,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 22px rgba(255,215,0,0.10), inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: box-shadow var(--transition);
}

.nav-logo:hover .nav-logo-mark {
  box-shadow: 0 0 32px rgba(255,215,0,0.2), inset 0 0 0 1px rgba(255,215,0,0.2);
}

.nav-logo-mark img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

.nav-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

/* ── Nav Links ────────────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: rgba(192,192,192,0.82);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  font-size: 0.77rem !important;
  letter-spacing: 0.07em !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--black) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.28) !important;
}

.nav-cta::after { display: none !important; }

/* ── Hamburger ────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  width: 38px;
  height: 38px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover {
  background: var(--white); color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.26);
}

.btn-secondary {
  background: transparent; color: var(--silver);
  border: 1px solid rgba(192,192,192,0.24);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-lg { padding: 18px 38px; font-size: 0.87rem; }
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }

/* ══════════════════════════════════════════════════════════════
   SVG ICON SYSTEM
══════════════════════════════════════════════════════════════ */
.icon-box {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

.icon-box svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

.icon-sm {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  display: inline-block; vertical-align: middle;
  flex-shrink: 0;
}

.check-icon {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(25,25,112,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(255,215,0,0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0A0A0A 0%, #0D0D1A 100%);
}

.hero-image-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 44%;
  overflow: hidden;
}

.hero-image-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(40%);
}

.hero-image-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 45%);
  z-index: 1;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,192,192,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,192,192,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

.hero h1 {
  margin-bottom: 22px;
  background: linear-gradient(140deg, #fff 0%, #C0C0C0 55%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.17rem);
  color: rgba(192,192,192,0.82);
  margin-bottom: 36px;
  max-width: 550px;
  line-height: 1.78;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 34px;
  border-top: 1px solid rgba(192,192,192,0.09);
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ══════════════════════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}

.section-divider {
  width: 54px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px auto 0;
}

/* ══════════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════════ */
.card {
  background: var(--gray-800);
  border: 1px solid rgba(192,192,192,0.07);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(255,215,0,0.18);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.4), 0 0 36px rgba(255,215,0,0.06);
}

.card:hover::before { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--gray-800);
  border-top: 1px solid rgba(192,192,192,0.05);
  border-bottom: 1px solid rgba(192,192,192,0.05);
  padding: 30px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(192,192,192,0.7);
  font-size: 0.84rem;
  font-weight: 500;
}

.trust-item-icon {
  color: var(--gold);
  flex-shrink: 0;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
}

.trust-item-icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* ══════════════════════════════════════════════════════════════
   IMAGE SECTIONS
══════════════════════════════════════════════════════════════ */
.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.image-strip-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  position: relative;
  background: var(--gray-700);
}

.image-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  filter: grayscale(20%) brightness(0.7);
}

.image-strip-item:hover img { transform: scale(1.06); filter: grayscale(0%) brightness(0.82); }

.image-strip-item .strip-label {
  position: absolute;
  bottom: 14px; left: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-800);
  border: 1px solid rgba(192,192,192,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: rgba(255,215,0,0.18); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none; border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  width: 26px; height: 26px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor;
  stroke-width: 2.4; stroke-linecap: round;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { background: var(--gold); color: var(--black); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.76;
  font-size: 0.92rem;
}

/* ══════════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════════ */
.form-section {
  background: var(--gray-800);
  border: 1px solid rgba(192,192,192,0.07);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--silver);
}

.required-mark { color: var(--gold); margin-left: 2px; }

input, select, textarea {
  background: var(--gray-700);
  border: 1px solid rgba(192,192,192,0.10);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  padding: 13px 15px;
  width: 100%;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none; appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.09);
  background: var(--gray-600);
}

input::placeholder, textarea::placeholder { color: var(--gray-400); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='none' stroke='%23888' stroke-width='1.5' stroke-linecap='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

select option { background: var(--gray-700); }
textarea { resize: vertical; min-height: 130px; }

.form-message {
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-top: 14px;
  display: none;
}

.form-message.success {
  background: rgba(0,200,100,0.09);
  border: 1px solid rgba(0,200,100,0.28);
  color: #4ade80; display: block;
}

.form-message.error {
  background: rgba(239,68,68,0.09);
  border: 1px solid rgba(239,68,68,0.28);
  color: #f87171; display: block;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual { position: relative; }

.about-card-stack { position: relative; height: 420px; }

.about-card-bg {
  position: absolute;
  inset: 20px 20px 0 0;
  background: var(--blue-dim);
  border: 1px solid rgba(25,25,112,0.35);
  border-radius: var(--radius-lg);
}

.about-card-main {
  position: absolute;
  inset: 0 0 20px 20px;
  background: var(--gray-800);
  border: 1px solid rgba(255,215,0,0.13);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }

.about-value { display: flex; gap: 14px; align-items: flex-start; }

.about-value-icon {
  width: 38px; height: 38px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}

.about-value-icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(25,25,112,0.17) 0%, rgba(10,10,10,0) 100%);
  border-top: 1px solid rgba(25,25,112,0.22);
  border-bottom: 1px solid rgba(25,25,112,0.22);
  text-align: center;
  padding: 96px 0;
}

.cta-section h2 { margin-bottom: 18px; }
.cta-section > .container > p { color: var(--text-muted); font-size: 1.07rem; margin-bottom: 38px; max-width: 490px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--gray-800);
  border-top: 1px solid rgba(192,192,192,0.05);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.72;
  margin-top: 18px;
  max-width: 290px;
}

.footer-heading {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a { color: var(--text-muted); font-size: 0.87rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(192,192,192,0.05);
  color: var(--gray-300);
  font-size: 0.79rem;
}

.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--gray-300); }
.footer-legal a:hover { color: var(--silver); }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, var(--gray-800) 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(192,192,192,0.05);
  padding: calc(var(--nav-h) + 56px) 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero-image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 38%;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: grayscale(55%);
}

.page-hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gray-800) 0%, transparent 55%);
  z-index: 1;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 80% 50%, rgba(25,25,112,0.17) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   HIGHLIGHT BOX
══════════════════════════════════════════════════════════════ */
.highlight-box {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.highlight-box p { color: var(--silver); font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.15) 20%, rgba(255,215,0,0.15) 80%, transparent);
}

.process-step { text-align: center; counter-increment: step; position: relative; }

.process-step-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: rgba(255,215,0,0.2);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
}

.process-step h4 { margin-bottom: 10px; font-size: 0.98rem; }
.process-step p  { font-size: 0.84rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--gray-800);
  border: 1px solid rgba(192,192,192,0.07);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star-svg {
  width: 14px; height: 14px;
  fill: var(--gold);
}

.testimonial-text {
  color: var(--silver);
  font-style: italic;
  line-height: 1.72;
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.testimonial-author { font-size: 0.79rem; color: var(--text-muted); }
.testimonial-author strong { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   TIER LISTS
══════════════════════════════════════════════════════════════ */
.tier-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.tier-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.tier-list li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.5;
}

.tier-list li .check-icon { color: var(--gold); }
.tier-list.limitations li .check-icon { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeUp 0.65s ease forwards; }
.animate-delay-1 { animation-delay: 0.10s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.20s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.32s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.46s; opacity: 0; }

/* ══════════════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════════════ */
.text-gold   { color: var(--gold); }
.text-silver { color: var(--silver); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.section-dark { background: var(--gray-800); }

.spinner {
  width: 17px; height: 17px;
  border: 2px solid rgba(10,10,10,0.25);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-inner       { padding: 0 24px; }
  .nav-links       { gap: 20px; }
  .nav-links a     { font-size: 0.77rem; }
  .hero-image-panel { width: 36%; }
  .services-grid   { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .about-card-stack { height: 300px; }
  .process-steps   { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .image-strip     { grid-template-columns: 1fr 1fr; }
  .page-hero-image { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  section { padding: 56px 0; }
  .container, .container--narrow, .container--wide { padding: 0 18px; }

  /* Nav */
  .nav-inner  { padding: 0 18px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 18px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(192,192,192,0.07);
    z-index: 999;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }

  .nav-links.open li { width: 100%; }

  .nav-links.open a {
    display: block;
    font-size: 0.93rem;
    padding: 13px 6px;
    border-bottom: 1px solid rgba(192,192,192,0.05);
    letter-spacing: 0.04em;
  }

  .nav-links.open .nav-cta {
    display: block !important;
    text-align: center !important;
    margin-top: 12px;
    padding: 14px 20px !important;
    border-radius: var(--radius) !important;
  }

  /* Logo */
  .nav-logo-mark { width: 44px; height: 44px; }
  .nav-logo-mark img { width: 44px; height: 44px; }
  .nav-brand-name { font-size: 0.92rem; }

  /* Hero */
  .hero { min-height: auto; padding: 36px 0 56px; }
  .hero-image-panel { display: none; }
  .hero-content { padding: 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }

  /* Grids */
  .services-grid    { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; gap: 36px; }
  .image-strip      { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; gap: 20px; }
  .process-steps::before { display: none; }
  .trust-items      { gap: 18px; justify-content: flex-start; }

  /* Forms */
  .form-grid    { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .form-section { padding: 24px 18px; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal  { justify-content: center; }

  /* About card */
  .about-card-stack { height: 260px; }

  /* Sections */
  .section-header { margin-bottom: 36px; }
  .cta-section    { padding: 64px 0; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .nav-brand-name { display: none; }
  .nav-logo-mark  { width: 42px; height: 42px; }
  .nav-logo-mark img { width: 42px; height: 42px; }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }

  .btn-lg { padding: 15px 26px; font-size: 0.82rem; }

  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-badge { font-size: 0.65rem; padding: 7px 14px; }
}
