/* ═══════════════════════════════════════════════════════════════
   MPCC — My Private Cash Cloud
   Red · White · Black · Gold — Luxury Design System
   ═══════════════════════════════════════════════════════════════ */

:root {
  --gold: #D4AF37;
  --gold-light: #F5D060;
  --gold-dark: #A88614;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5D060 40%, #D4AF37 60%, #A88614 100%);

  --red: #DC143C;
  --red-light: #FF2D55;
  --red-dark: #B91C3A;
  --red-gradient: linear-gradient(135deg, #DC143C 0%, #FF2D55 50%, #DC143C 100%);

  --black-900: #0A0A0A;
  --black-800: #111111;
  --black-700: #1A1A1A;
  --black-600: #222222;
  --black-500: #2A2A2A;

  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --gutter: 2rem;
  --section: 6rem;
  --radius: 12px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --header-height: 72px;
  --top-bar-height: 36px;
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--black-900); color: var(--gray-400); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); color: var(--white); line-height: 1.15; font-weight: 400; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ═══ LOADER ═══ */
.loader { position: fixed; inset: 0; z-index: 10000; background: var(--black-900); display: flex; align-items: center; justify-content: center; transition: opacity 0.6s var(--ease), visibility 0.6s; }
.loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { text-align: center; }
.loader__logo { height: 70px; margin: 0 auto 1.5rem; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.5; transform: scale(0.98); } 50% { opacity: 1; transform: scale(1); } }
.loader__bar { width: 180px; height: 2px; background: var(--gray-800); border-radius: 2px; margin: 0 auto 1rem; overflow: hidden; }
.loader__bar-fill { width: 0; height: 100%; background: var(--red-gradient); border-radius: 2px; animation: fill 2s var(--ease) forwards; }
@keyframes fill { to { width: 100%; } }
.loader__tagline { font-family: var(--font-display); font-size: 0.8rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; font-style: italic; }

/* ═══ CURSOR & SCROLL PROGRESS ═══ */
.cursor-glow { position: fixed; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%); pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.3s; }
.cursor-glow.active { opacity: 1; }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--red-gradient); z-index: 9999; transform-origin: left; transform: scaleX(0); }

/* ═══ TOP BAR ═══ */
.top-bar { background: var(--black-800); border-bottom: 1px solid rgba(220, 20, 60, 0.08); height: var(--top-bar-height); display: flex; align-items: center; font-size: 0.7rem; color: var(--gray-500); }
.top-bar__inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; justify-content: space-between; align-items: center; }
.top-bar__left, .top-bar__right { display: flex; align-items: center; gap: 1.25rem; }
.top-bar__item { display: flex; align-items: center; gap: 0.35rem; }
.top-bar__item .icon { color: var(--red); display: flex; }

/* ═══ HEADER ═══ */
.site-header { position: fixed; top: var(--top-bar-height); left: 0; right: 0; height: var(--header-height); z-index: 999; transition: all 0.3s var(--ease); background: transparent; }
.site-header.scrolled { top: 0; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(220, 20, 60, 0.08); }
.site-header__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); height: 100%; display: flex; align-items: center; justify-content: space-between; }
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; max-width: 180px; overflow: hidden; }
.site-header__logo-img { height: 40px !important; width: auto !important; max-width: 160px !important; max-height: 40px; object-fit: contain; object-position: left center; }

/* ═══ NAV ═══ */
.nav { display: flex; align-items: center; min-width: 0; flex: 1 1 auto; justify-content: center; overflow: hidden; }
.nav__menu { display: flex; flex-wrap: nowrap; align-items: center; gap: 0.15rem; min-width: 0; }
.nav__menu > li { position: relative; flex-shrink: 0; }
.nav__menu > li > a { display: flex; align-items: center; gap: 0.3rem; padding: 0.5rem 0.7rem; font-size: 0.8rem; font-weight: 500; color: var(--gray-300); letter-spacing: 0.02em; border-radius: 6px; transition: all 0.25s var(--ease); position: relative; white-space: nowrap; }
.nav__menu > li > a::after { content: ''; position: absolute; bottom: 0.15rem; left: 50%; width: 0; height: 2px; background: var(--red); transition: all 0.25s var(--ease); transform: translateX(-50%); }
.nav__menu > li > a:hover,
.nav__menu > li.active > a,
.nav__menu > li.current-menu-item > a,
.nav__menu > li.current-menu-ancestor > a,
.nav__menu > li.current_page_item > a { color: var(--red); }
.nav__menu > li > a:hover::after,
.nav__menu > li.active > a::after,
.nav__menu > li.current-menu-item > a::after,
.nav__menu > li.current-menu-ancestor > a::after,
.nav__menu > li.current_page_item > a::after { width: 55%; }
.site-header__actions { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; position: relative; z-index: 3; }
.site-header__burger { display: none; color: var(--white); padding: 0.5rem; line-height: 0; }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.7rem 1.4rem; font-size: 0.82rem; font-weight: 600; border-radius: 6px; transition: all 0.25s var(--ease); border: 1px solid transparent; cursor: pointer; letter-spacing: 0.02em; white-space: nowrap; text-align: center; }
.btn--red { background: var(--red-gradient); color: var(--white); border-color: var(--red); }
.btn--red:hover { box-shadow: 0 0 30px rgba(220, 20, 60, 0.3); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--black-900); }
.btn--ghost { background: rgba(255, 255, 255, 0.04); color: var(--white); border-color: rgba(255, 255, 255, 0.18); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.35); color: var(--white); }
.btn--sm { padding: 0.45rem 0.9rem; font-size: 0.75rem; }
.btn--lg { padding: 0.9rem 1.8rem; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }
.btn .icon { display: flex; flex-shrink: 0; }

/* ═══ MOBILE NAV ═══ */
.mobile-nav { position: fixed; inset: 0; z-index: 10001; background: rgba(6, 6, 6, 0.72); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s; display: flex; justify-content: flex-end; }
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav__panel {
  width: min(360px, 92vw); height: 100%; background: #0C0C0E;
  border-left: 1px solid rgba(220, 20, 60, 0.12);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
}
.mobile-nav.active .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06); flex-shrink: 0; }
.mobile-nav__logo img { height: 34px; width: auto; display: block; }
.mobile-nav__close { color: var(--white); padding: 0.4rem; line-height: 0; border-radius: 8px; }
.mobile-nav__close:hover { background: rgba(255, 255, 255, 0.08); }
.mobile-nav__inner { display: flex; flex-direction: column; flex: 1; min-height: 0; padding: 0.75rem 0 1.25rem; }
.mobile-nav__scroll { flex: 1; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 0.25rem 1rem; }
.mobile-nav__menu { display: flex; flex-direction: column; gap: 0.15rem; }
.mobile-nav__menu > li { border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.mobile-nav__menu > li > .mobile-nav__item-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.mobile-nav__menu > li > .mobile-nav__item-row > a {
  flex: 1; min-width: 0;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--gray-300);
  padding: 0.85rem 0.35rem; transition: color 0.25s var(--ease);
}
.mobile-nav__menu > li > .mobile-nav__item-row > a:hover,
.mobile-nav__menu > li.active > .mobile-nav__item-row > a,
.mobile-nav__menu > li.current-menu-item > .mobile-nav__item-row > a,
.mobile-nav__menu > li.current-menu-ancestor > .mobile-nav__item-row > a { color: var(--red); }
/* Fallback when WP menu outputs plain anchors without item-row */
.mobile-nav__menu > li > a {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--gray-300);
  padding: 0.85rem 0.35rem; transition: color 0.25s var(--ease);
}
.mobile-nav__menu > li > a:hover,
.mobile-nav__menu > li.active > a,
.mobile-nav__menu > li.current-menu-item > a,
.mobile-nav__menu > li.current-menu-ancestor > a { color: var(--red); }
.mobile-nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px; color: var(--gray-400); flex-shrink: 0;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.mobile-nav__toggle:hover { background: rgba(255, 255, 255, 0.06); color: var(--white); }
.mobile-nav__menu li.open > .mobile-nav__toggle { transform: rotate(180deg); color: var(--red); }
.mobile-nav__menu .sub-menu {
  display: none; padding: 0 0 0.5rem 0.75rem;
  border-left: 1px solid rgba(220, 20, 60, 0.25); margin: 0 0.35rem 0.4rem;
}
.mobile-nav__menu li.open > .sub-menu { display: block; }
.mobile-nav__menu .sub-menu li a {
  display: block; padding: 0.55rem 0.75rem; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500; color: var(--gray-400); border-radius: 8px;
}
.mobile-nav__menu .sub-menu li a:hover,
.mobile-nav__menu .sub-menu li.active > a,
.mobile-nav__menu .sub-menu li.current-menu-item > a { background: rgba(220, 20, 60, 0.1); color: var(--red); }
.mobile-nav__menu .sub-menu .sub-menu { margin-left: 0.75rem; }
.mobile-nav__cta { display: flex; flex-direction: column; gap: 0.6rem; padding: 1rem 1.25rem 0.25rem; border-top: 1px solid rgba(255, 255, 255, 0.06); flex-shrink: 0; }
body.nav-open { overflow: hidden; }

/* ═══ HERO ═══ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.42) saturate(0.9) contrast(1.05); }
.hero__gradient { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.82) 35%, rgba(10, 10, 10, 0.55) 62%, rgba(10, 10, 10, 0.85) 100%); }
.hero__grid-pattern { position: absolute; inset: 0; opacity: 0.025; background-image: linear-gradient(rgba(220, 20, 60, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(220, 20, 60, 0.25) 1px, transparent 1px); background-size: 60px 60px; }
.hero__grain, .page-hero .hero__grain { position: absolute; inset: 0; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero__grid-lines { position: absolute; inset: 0; opacity: 0.05; background-image: linear-gradient(rgba(212, 175, 55, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(220, 20, 60, 0.3) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(circle at 70% 30%, black, transparent 75%); }
.hero__orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 15s ease-in-out infinite; }
.hero__orb--1 { width: 400px; height: 400px; background: rgba(220, 20, 60, 0.06); top: 10%; left: 5%; }
.hero__orb--2 { width: 300px; height: 300px; background: rgba(212, 175, 55, 0.04); top: 60%; right: 10%; animation-delay: -5s; }
.hero__orb--3 { width: 250px; height: 250px; background: rgba(220, 20, 60, 0.04); bottom: 15%; left: 35%; animation-delay: -10s; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(20px, -15px) scale(1.05); } 66% { transform: translate(-15px, 10px) scale(0.95); } }
.hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero__particle { position: absolute; width: 3px; height: 3px; background: var(--red); border-radius: 50%; opacity: 0; animation: particleFloat 8s ease-in-out infinite; }
@keyframes particleFloat { 0% { opacity: 0; transform: translateY(100vh) scale(0); } 10% { opacity: 0.6; } 90% { opacity: 0.6; } 100% { opacity: 0; transform: translateY(-10vh) scale(1); } }
.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding-top: calc(var(--header-height) + var(--top-bar-height) + 4rem); padding-bottom: 4rem; }
.hero__badges { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.9rem; background: rgba(220, 20, 60, 0.08); border: 1px solid rgba(220, 20, 60, 0.2); border-radius: 999px; font-size: 0.7rem; font-weight: 500; color: var(--red); letter-spacing: 0.05em; text-transform: uppercase; }
.hero__badge-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero__title { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 300; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero__line { display: block; }
.hero__line--accent { color: var(--red); font-style: italic; font-weight: 500; }
.hero__desc { font-size: 1rem; color: var(--gray-400); max-width: 480px; margin-bottom: 2rem; line-height: 1.7; }
.hero__actions { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(220, 20, 60, 0.12); }
.hero__stat { text-align: left; }
.hero__stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--white); display: flex; align-items: baseline; gap: 0.1rem; }
.hero__stat-suffix { font-size: 1.2rem; color: var(--gold); font-weight: 400; }
.hero__stat-label { display: block; font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

/* Hero Card */
.hero__right { perspective: 1000px; }
.hero__card-wrapper { position: relative; }
.hero__card { width: 360px; height: 220px; background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%); border: 1px solid rgba(220, 20, 60, 0.25); border-radius: 16px; padding: 1.5rem; position: relative; overflow: hidden; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(220, 20, 60, 0.06); transform: rotateY(-5deg) rotateX(5deg); transition: transform 0.5s var(--ease); }
.hero__card:hover { transform: rotateY(0) rotateX(0); }
.hero__card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 180deg, transparent 0%, rgba(220, 20, 60, 0.06) 10%, transparent 20%); animation: shine 6s linear infinite; }
@keyframes shine { to { transform: rotate(360deg); } }
.hero__card-chip { width: 40px; height: 30px; background: var(--gold-gradient); border-radius: 5px; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.hero__card-chip::after { content: ''; position: absolute; inset: 3px; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 3px; }
.hero__card-nfc { font-size: 0.55rem; color: var(--gray-500); letter-spacing: 0.2em; margin-bottom: 0.8rem; position: relative; z-index: 1; }
.hero__card-number { font-size: 1.1rem; letter-spacing: 0.18em; color: var(--gray-300); margin-bottom: 1.2rem; font-family: monospace; position: relative; z-index: 1; }
.hero__card-bottom { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 1; }
.hero__card-label { font-size: 0.5rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.15rem; }
.hero__card-name { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.12em; font-weight: 500; }
.hero__card-logo { opacity: 0.7; border-radius: 6px; }
.hero__card-orb { position: absolute; border-radius: 50%; filter: blur(50px); pointer-events: none; z-index: 0; }
.hero__card-orb--1 { width: 180px; height: 180px; background: rgba(220, 20, 60, 0.1); top: -50px; right: -30px; }
.hero__card-orb--2 { width: 140px; height: 140px; background: rgba(212, 175, 55, 0.06); bottom: -30px; left: -20px; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; z-index: 2; }
.hero__scroll span { display: block; font-size: 0.65rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem; }
.hero__scroll-line { width: 1px; height: 35px; background: var(--red); margin: 0 auto; animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ═══ TICKER ═══ */
.ticker-section { background: var(--black-800); border-bottom: 1px solid rgba(220, 20, 60, 0.06); overflow: hidden; padding: 0.55rem 0; }
.ticker { overflow: hidden; white-space: nowrap; }
.ticker__track { display: inline-flex; gap: 2.5rem; animation: tickerScroll 40s linear infinite; }
.ticker__item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; }
.ticker__symbol { color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.ticker__price { color: var(--white); font-weight: 500; }
.ticker__change { font-weight: 600; font-size: 0.65rem; padding: 0.1rem 0.35rem; border-radius: 3px; }
.ticker__change--up { color: #22C55E; background: rgba(34, 197, 94, 0.1); }
.ticker__change--down { color: #EF4444; background: rgba(239, 68, 68, 0.1); }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ═══ TRUST BAR ═══ */
.trust-bar { padding: 1.5rem 0; background: var(--black-800); border-bottom: 1px solid rgba(220, 20, 60, 0.06); }
.trust-bar__inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.trust-bar__label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-600); }
.trust-bar__logos { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.trust-bar__item { text-align: center; }
.trust-bar__acronym { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; }
.trust-bar__full { display: block; font-size: 0.6rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.15rem; }
.trust-bar__divider { width: 1px; height: 35px; background: var(--gray-800); }

/* ═══ SECTIONS ═══ */
.section { padding: var(--section) 0; position: relative; }
.section--about { background: var(--black-900); }
.section--services { background: var(--black-800); }
.section--process { background: var(--black-900); }
.section--why { background: var(--black-800); }
.section--wealth { background: var(--black-900); }
.section--testimonials { background: var(--black-800); }
.section--network { background: var(--black-900); }
.section--team { background: var(--black-800); }
.section--faq { background: var(--black-900); }
.section--partners { background: var(--black-800); }
.section--cta { background: var(--black-900); position: relative; overflow: hidden; }
.section--disclaimer { background: var(--black-800); padding: 3rem 0; }
.section--products { background: var(--black-900); }
.section--insights { background: var(--black-800); }
.section--wealth { background: var(--black-900); }

.section__gold-line { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 1px; background: var(--gold-gradient); opacity: 0.4; }

.section__header { text-align: center; max-width: 650px; margin: 0 auto 3rem; }
.section__tag { display: inline-block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--red); margin-bottom: 1rem; font-weight: 600; padding: 0.35rem 0.9rem; border: 1px solid rgba(220, 20, 60, 0.2); border-radius: 999px; }
.section__title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; margin-bottom: 1rem; }
.section__title em { color: var(--red); font-style: italic; }
.section__title--left { text-align: left; }
.section__subtitle { font-size: 0.95rem; color: var(--gray-400); line-height: 1.7; }

/* ═══ ABOUT ═══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-content__text { font-size: 0.95rem; color: var(--gray-400); margin-bottom: 1rem; line-height: 1.7; }
.about-content__features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.about-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-feature__icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-feature strong { display: block; font-size: 0.85rem; color: var(--white); margin-bottom: 0.1rem; }
.about-feature span { font-size: 0.75rem; color: var(--gray-500); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stat-card { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); padding: 1.25rem; transition: all 0.25s var(--ease); }
.about-stat-card:hover { border-color: rgba(220, 20, 60, 0.2); }
.about-stat-card__icon { color: var(--red); margin-bottom: 0.5rem; opacity: 0.8; }
.about-stat-card__num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--white); margin-bottom: 0.15rem; }
.about-stat-card__label { font-size: 0.65rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.about-stat-card__bar { height: 3px; background: var(--gray-800); border-radius: 2px; overflow: hidden; }
.about-stat-card__bar-fill { height: 100%; background: var(--red-gradient); border-radius: 2px; width: 0; transition: width 1.5s var(--ease); }

/* ═══ SERVICES ═══ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); padding: 1.75rem; transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red-gradient); transform: scaleX(0); transition: transform 0.3s var(--ease); }
.service-card:hover { border-color: rgba(220, 20, 60, 0.2); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.service-card__num { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--gray-800); line-height: 1; }
.service-card__icon { color: var(--red); opacity: 0.6; }
.service-card__title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card__desc { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 1.25rem; }
.service-card__link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; }
.service-card__link .icon { display: flex; transition: transform 0.25s var(--ease); }
.service-card:hover .service-card__link .icon { transform: translateX(3px); }

/* ═══ PROCESS ═══ */
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; position: relative; }
.process-step { text-align: center; padding: 1.5rem; background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); transition: all 0.3s var(--ease); position: relative; }
.process-step:hover { border-color: rgba(220, 20, 60, 0.2); transform: translateY(-3px); }
.process-step__connector { position: absolute; top: 50%; right: -1.25rem; width: 1.25rem; height: 2px; background: linear-gradient(90deg, var(--red), var(--gold)); z-index: 1; }
.process-step:last-child .process-step__connector { display: none; }
.process-step__num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: rgba(220, 20, 60, 0.12); line-height: 1; margin-bottom: 0.5rem; }
.process-step__icon { width: 44px; height: 44px; background: var(--red-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; color: var(--white); }
.process-step__title { font-size: 1rem; margin-bottom: 0.4rem; }
.process-step__desc { font-size: 0.8rem; color: var(--gray-400); line-height: 1.6; }

/* ═══ WHY ═══ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.why-card { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); padding: 1.75rem; transition: all 0.3s var(--ease); position: relative; }
.why-card:hover { border-color: rgba(220, 20, 60, 0.2); }
.why-card--wide { grid-column: span 2; }
.why-card__num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: rgba(220, 20, 60, 0.08); position: absolute; top: 1rem; right: 1.25rem; }
.why-card__icon { color: var(--gold); margin-bottom: 0.75rem; opacity: 0.7; }
.why-card__title { font-size: 1.15rem; margin-bottom: 0.4rem; }
.why-card__desc { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; }

/* ═══ WEALTH ═══ */
.wealth-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.wealth-card { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); padding: 1.75rem; position: relative; overflow: hidden; transition: all 0.3s var(--ease); }
.wealth-card:hover { border-color: rgba(220, 20, 60, 0.2); transform: translateY(-3px); }
.wealth-card__num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: rgba(220, 20, 60, 0.08); line-height: 1; margin-bottom: 0.75rem; }
.wealth-card__icon { color: var(--gold); margin-bottom: 0.75rem; }
.wealth-card__title { font-size: 1.1rem; margin-bottom: 0.4rem; }
.wealth-card__desc { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; }

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial-card { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); padding: 1.75rem; transition: all 0.3s var(--ease); }
.testimonial-card:hover { border-color: rgba(220, 20, 60, 0.2); transform: translateY(-3px); }
.testimonial-card--featured { border-color: rgba(220, 20, 60, 0.15); background: linear-gradient(135deg, rgba(220, 20, 60, 0.04) 0%, rgba(212, 175, 55, 0.02) 100%); }
.testimonial-card__stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card__text { font-size: 0.9rem; color: var(--gray-300); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar { width: 42px; height: 42px; background: var(--red-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: 0.8rem; flex-shrink: 0; }
.testimonial-card__name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.testimonial-card__role { font-size: 0.65rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; }

/* ═══ NETWORK ═══ */
.network-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.network-card { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); overflow: hidden; transition: all 0.3s var(--ease); display: flex; flex-direction: column; }
.network-card:hover { border-color: rgba(220, 20, 60, 0.2); transform: translateY(-3px); }
.network-card__header { padding: 1.25rem 1.25rem 0; display: flex; align-items: center; gap: 0.5rem; }
.network-card__pin { color: var(--red); }
.network-card__city { font-size: 1rem; font-family: var(--font-display); color: var(--white); }
.network-card__body { padding: 0.75rem 1.25rem; flex: 1; }
.network-card__addr { font-size: 0.8rem; color: var(--gray-400); line-height: 1.5; margin-bottom: 0.75rem; }
.network-card__phone { display: flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; color: var(--gray-400); }
.network-card__phone a:hover { color: var(--red); }
.network-card__cta { display: block; padding: 0.75rem 1.25rem; background: rgba(220, 20, 60, 0.06); border-top: 1px solid var(--gray-800); font-size: 0.75rem; font-weight: 600; color: var(--red); text-align: center; transition: all 0.25s var(--ease); }
.network-card__cta:hover { background: rgba(220, 20, 60, 0.12); }

/* ═══ TEAM ═══ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.team-card { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.team-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-gradient); transform: scaleX(0); transition: transform 0.3s var(--ease); }
.team-card:hover { border-color: rgba(212, 175, 55, 0.2); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); }
.team-card:hover::before { transform: scaleX(1); }
.team-card__avatar { width: 108px; height: 108px; background: var(--gold-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--black-900); margin: 0 auto 1rem; position: relative; border: 2px solid rgba(212, 175, 55, 0.25); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35); overflow: hidden; }
.team-card__photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.4s var(--ease); }
.team-card:hover .team-card__photo { transform: scale(1.06); }
.team-card__exp { position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; background: var(--red-gradient); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--white); line-height: 1; border: 2px solid var(--black-700); box-shadow: 0 4px 16px rgba(220, 20, 60, 0.35); z-index: 2; }
.team-card__exp span { font-size: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; margin-top: 1px; }
.team-card__name { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-card__role { display: block; font-size: 0.65rem; color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.team-card__bio { font-size: 0.8rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 0.75rem; text-align: left; }
.team-card__expertise { display: flex; flex-wrap: wrap; gap: 0.3rem; justify-content: center; }
.team-card__tag { padding: 0.2rem 0.5rem; background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.15); border-radius: 999px; font-size: 0.6rem; color: var(--gold); letter-spacing: 0.03em; }

/* ═══ FAQ ═══ */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius-sm); margin-bottom: 0.5rem; overflow: hidden; transition: border-color 0.25s var(--ease); }
.faq-item:hover, .faq-item.active { border-color: rgba(220, 20, 60, 0.2); }
.faq-item__trigger { width: 100%; padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; font-weight: 500; color: var(--white); text-align: left; transition: color 0.25s var(--ease); }
.faq-item__trigger:hover { color: var(--red); }
.faq-item__icon { font-size: 1.3rem; color: var(--red); transition: transform 0.25s var(--ease); flex-shrink: 0; width: 20px; text-align: center; }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__content { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.active .faq-item__content { max-height: 300px; }
.faq-item__content p { padding: 0 1.25rem 1rem; font-size: 0.85rem; color: var(--gray-400); line-height: 1.7; }

/* ═══ PARTNERS ═══ */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.partner-logo { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius-sm); padding: 1.25rem; display: flex; align-items: center; justify-content: center; transition: all 0.25s var(--ease); min-height: 70px; }
.partner-logo:hover { border-color: rgba(220, 20, 60, 0.2); background: rgba(220, 20, 60, 0.03); }
.partner-logo__text { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--gray-500); letter-spacing: 0.04em; transition: color 0.25s var(--ease); }
.partner-logo:hover .partner-logo__text { color: var(--gray-300); }

/* ═══ CTA ═══ */
.cta__bg { position: absolute; inset: 0; overflow: hidden; }
.cta__pattern { position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%); }
.cta__orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta__orb--1 { width: 300px; height: 300px; background: rgba(220, 20, 60, 0.06); top: -100px; right: -50px; }
.cta__orb--2 { width: 250px; height: 250px; background: rgba(212, 175, 55, 0.04); bottom: -80px; left: -40px; }
.cta__content { text-align: center; position: relative; z-index: 2; }
.cta__title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.cta__desc { font-size: 1rem; color: var(--gray-400); max-width: 550px; margin: 0 auto 2rem; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══ DISCLAIMER ═══ */
.disclaimer { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); padding: 1.75rem; }
.disclaimer__title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 1rem; }
.disclaimer__text { font-size: 0.7rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 0.5rem; }
.disclaimer__text:last-child { margin-bottom: 0; }
.disclaimer__text a { color: var(--gold); }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--black-800); }
.site-footer__main { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--gray-800); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-grid__brand { min-width: 0; }
.footer-grid__col { min-width: 0; }
.footer-grid__desc { font-size: 0.82rem; color: var(--gray-500); margin-top: 1rem; line-height: 1.7; }
.footer-grid__social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer-grid__social-link { width: 34px; height: 34px; border-radius: 6px; border: 1px solid var(--gray-700); display: flex; align-items: center; justify-content: center; color: var(--gray-500); transition: all 0.25s var(--ease); }
.footer-grid__social-link:hover { border-color: var(--red); color: var(--red); }
.footer-grid__heading { font-family: var(--font-body); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.footer-grid__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-grid__links a { font-size: 0.82rem; color: var(--gray-400); transition: color 0.25s var(--ease); }
.footer-grid__links a:hover { color: var(--red); }
.footer-grid__links--contact li { display: flex; align-items: flex-start; gap: 0.4rem; font-size: 0.75rem; color: var(--gray-500); }
.footer-grid__links--contact .icon { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-grid__links--contact a { color: var(--gray-400); }
.site-footer__disclosures { padding: 1.25rem 0; border-bottom: 1px solid var(--gray-800); }
.site-footer__disclosures p { font-size: 0.65rem; color: var(--gray-600); line-height: 1.7; text-align: center; }
.site-footer__bottom { padding: 1.25rem 0; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.site-footer__copy { font-size: 0.7rem; color: var(--gray-600); }
.site-footer__legal { display: flex; gap: 0.5rem; font-size: 0.65rem; color: var(--gray-600); }
.site-footer__legal a:hover { color: var(--red); }
.site-footer__legal span { color: var(--gray-800); }

/* ═══ BACK TO TOP ═══ */
.back-to-top { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; background: var(--red-gradient); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.25s var(--ease); z-index: 100; box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4); }

/* ═══ NEWSLETTER (Footer) ═══ */
.section-newsletter { padding: 2.5rem 0; }
.newsletter-banner { background: var(--black-700); border: 1px solid rgba(220, 20, 60, 0.08); border-radius: var(--radius); padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.newsletter-banner__title { font-size: 1.5rem; margin-bottom: 0.4rem; }
.newsletter-banner__desc { font-size: 0.85rem; color: var(--gray-400); }
.newsletter-banner__field { display: flex; gap: 0.5rem; }
.newsletter-banner__input { flex: 1; padding: 0.7rem 0.9rem; background: var(--black-800); border: 1px solid var(--gray-700); border-radius: 6px; color: var(--white); font-size: 0.82rem; outline: none; transition: border-color 0.25s var(--ease); }
.newsletter-banner__input:focus { border-color: var(--red); }
.newsletter-banner__input::placeholder { color: var(--gray-600); }
.newsletter-banner__consent { font-size: 0.65rem; color: var(--gray-600); margin-top: 0.5rem; }

/* ═══ PAGE TEMPLATES ═══ */
.page-hero { position: relative; padding: calc(var(--header-height) + var(--top-bar-height) + 3.5rem) 0 3.5rem; overflow: hidden; }
.page-hero--short { padding-bottom: 2.5rem; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2) saturate(0.7); }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.7) 100%); }
.page-hero__content { position: relative; z-index: 2; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; color: var(--gray-500); margin-bottom: 1rem; }
.page-hero__breadcrumb a { color: var(--red); }
.page-hero__title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); margin-bottom: 1rem; }
.page-hero__title em { color: var(--red); font-style: italic; }
.page-hero__desc { font-size: 1rem; color: var(--gray-400); max-width: 550px; }

.contact-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: start; }
.contact-form { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); padding: 1.75rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 0.3rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.65rem 0.8rem; background: var(--black-800); border: 1px solid var(--gray-700); border-radius: 6px; color: var(--white); font-size: 0.82rem; font-family: var(--font-body); outline: none; transition: border-color 0.25s var(--ease); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-600); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { display: flex; align-items: center; gap: 0.4rem; margin-top: 1rem; padding: 0.75rem; background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); border-radius: 6px; color: #22C55E; font-size: 0.82rem; }
.contact-info-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius-sm); margin-bottom: 0.75rem; transition: border-color 0.25s var(--ease); }
.contact-info-card:hover { border-color: rgba(220, 20, 60, 0.2); }
.contact-info-card__icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-info-card__label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); margin-bottom: 0.15rem; font-weight: 600; }
.contact-info-card__value { font-size: 0.82rem; color: var(--gray-300); line-height: 1.5; }
.contact-info-card__value a { color: var(--gray-300); }
.contact-info-card__value a:hover { color: var(--red); }
.contact-form-wrap { max-width: 650px; margin: 0 auto; }
.container--narrow { max-width: 750px; }

/* ═══ 404 ═══ */
.error-404 { text-align: center; max-width: 520px; margin: 0 auto; }
.error-404__icon { color: var(--red); opacity: 0.5; margin-bottom: 1.5rem; }
.error-404 h2 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.error-404 p { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 2rem; }
.error-404__actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ═══ FORM MESSAGES ═══ */
.form-message { margin-top: 1rem; padding: 0.85rem 1rem; border-radius: 6px; font-size: 0.82rem; line-height: 1.5; display: none; align-items: flex-start; gap: 0.5rem; }
.form-message.show { display: flex; }
.form-message--success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.25); color: #4ADE80; }
.form-message--error { background: rgba(220, 20, 60, 0.1); border: 1px solid rgba(220, 20, 60, 0.3); color: var(--red-light); }

/* ═══ BLOG / ARCHIVE / RESOURCES ═══ */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.resource-card { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); overflow: hidden; transition: all 0.3s var(--ease); }
.resource-card:hover { border-color: rgba(220, 20, 60, 0.2); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); }
.resource-card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--black-800); }
.resource-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.resource-card:hover .resource-card__img img { transform: scale(1.05); }
.resource-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gold); background: linear-gradient(135deg, var(--black-800) 0%, var(--black-700) 100%); }
.resource-card__body { padding: 1.25rem 1.4rem 1.5rem; }
.resource-card__title { font-size: 1.05rem; line-height: 1.3; margin-bottom: 0.5rem; }
.resource-card__title a { transition: color 0.25s var(--ease); }
.resource-card__title a:hover { color: var(--red); }
.resource-card__excerpt { font-size: 0.82rem; color: var(--gray-400); line-height: 1.65; margin-bottom: 0.9rem; }
.resource-card__meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; }
.resource-card__dot { color: var(--red); }

/* ═══ SEARCH ═══ */
.search-results { }
.search-results__count { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-800); }
.search-results__count span { color: var(--gold); }
.search-result { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem; transition: border-color 0.25s var(--ease); }
.search-result:hover { border-color: rgba(220, 20, 60, 0.2); }
.search-result__title { font-size: 1.2rem; margin-bottom: 0.4rem; }
.search-result__title a:hover { color: var(--red); }
.search-result__meta { display: flex; gap: 0.5rem; font-size: 0.7rem; color: var(--gray-500); margin-bottom: 0.6rem; }
.search-result__excerpt { font-size: 0.85rem; color: var(--gray-400); line-height: 1.7; }

/* ═══ PAGINATION ═══ */
.pagination { margin: 2.5rem 0 0; }
.pagination .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.nav-links, .page-numbers { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
.pagination .page-numbers { }
.pagination .page-numbers li { list-style: none; }
.pagination .page-numbers a, .pagination .page-numbers .current, .page-numbers.prev, .page-numbers.next { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 0.75rem; background: var(--black-700); border: 1px solid var(--gray-800); border-radius: 6px; font-size: 0.8rem; font-weight: 600; color: var(--gray-300); transition: all 0.25s var(--ease); }
.pagination .page-numbers a:hover { border-color: var(--red); color: var(--red); }
.pagination .page-numbers .current { background: var(--red-gradient); border-color: var(--red); color: var(--white); }

/* ═══ NO RESULTS ═══ */
.no-results { text-align: center; padding: 3rem 0; }
.no-results h2 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.no-results p { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.no-results .search-form { display: flex; gap: 0.5rem; max-width: 420px; margin: 0 auto; }
.no-results .search-form input[type="search"] { flex: 1; padding: 0.7rem 0.9rem; background: var(--black-800); border: 1px solid var(--gray-700); border-radius: 6px; color: var(--white); font-size: 0.85rem; outline: none; }
.no-results .search-form input[type="search"]:focus { border-color: var(--red); }

/* ═══ SINGLE POST ═══ */
.page-hero__meta { display: flex; gap: 0.5rem; font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; }
.post-content, .page-content { color: var(--gray-300); font-size: 0.95rem; line-height: 1.8; }
.post-content > *, .page-content > * { margin-bottom: 1.25rem; }
.post-content h1, .post-content h2, .post-content h3, .page-content h1, .page-content h2, .page-content h3 { margin-top: 2rem; }
.post-content h2, .page-content h2 { font-size: 1.6rem; }
.post-content h3, .page-content h3 { font-size: 1.2rem; }
.post-content a, .page-content a { color: var(--red); }
.post-content a:hover, .page-content a:hover { text-decoration: underline; }
.post-content ul, .page-content ul, .post-content ol, .page-content ol { list-style: disc; padding-left: 1.5rem; }
.post-content img, .page-content img { border-radius: var(--radius); }
.post-content blockquote, .page-content blockquote { border-left: 3px solid var(--gold); padding-left: 1rem; font-style: italic; color: var(--gray-400); margin-left: 0; }

/* ═══ COMMENTS ═══ */
.comments-section { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray-800); }
.comments-area { }
.comments-title { font-size: 1.3rem; margin-bottom: 1.5rem; }
.comment-list { list-style: none; margin-bottom: 2rem; }
.comment-list .children { list-style: none; padding-left: 2rem; margin: 1rem 0; }
.comment { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius-sm); padding: 1.25rem; margin-bottom: 1rem; }
.comment-body { }
.comment .avatar { width: 42px; height: 42px; border-radius: 50%; display: block; margin-bottom: 0.5rem; border: 2px solid rgba(212, 175, 55, 0.25); }
.comment-author { font-size: 0.9rem; color: var(--white); font-weight: 600; }
.comment-author a { color: var(--white); }
.comment-metadata { font-size: 0.68rem; color: var(--gray-500); margin-bottom: 0.6rem; }
.comment-metadata a { color: var(--gray-500); }
.comment-content { font-size: 0.85rem; color: var(--gray-400); line-height: 1.7; }
.reply a { font-size: 0.7rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.05em; }
.no-comments { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.comment-respond { background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); padding: 1.5rem; }
.comment-form label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin: 0.85rem 0 0.3rem; font-weight: 500; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 0.65rem 0.8rem; background: var(--black-800); border: 1px solid var(--gray-700); border-radius: 6px; color: var(--white); font-size: 0.85rem; font-family: var(--font-body); outline: none; transition: border-color 0.25s var(--ease); }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--red); }
.comment-form textarea { resize: vertical; min-height: 120px; }
.comment-form .form-submit { margin-top: 1rem; }
.comment-form .comment-notes, .comment-form .logged-in-as { font-size: 0.75rem; color: var(--gray-500); }

/* ═══ POST NAV ═══ */
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--gray-800); }
.post-nav__prev, .post-nav__next { display: flex; flex-direction: column; max-width: 48%; gap: 0.2rem; }
.post-nav__next { text-align: right; align-items: flex-end; }
.post-nav__label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); font-weight: 600; }
.post-nav__title { font-size: 0.9rem; color: var(--gray-300); transition: color 0.25s var(--ease); }
.post-nav__title:hover { color: var(--red); }

/* ═══ ANIMATIONS ═══ */
.js [data-anim] { opacity: 0; }
html:not(.js) [data-anim] { opacity: 1; }
html:not(.js) .loader { display: none; }
[data-anim].animated { opacity: 1; }

/* ═══ MISSING / SHARED UTILITY STYLES ═══ */
.hero__left { min-width: 0; }
.hero__badge--live { border-color: rgba(34, 197, 94, 0.35); background: rgba(34, 197, 94, 0.08); color: #4ADE80; }
.hero__badge--live .hero__badge-dot { background: #22C55E; }
.about-visual { min-width: 0; }
.products-visual { min-width: 0; }
.team-card__initials { font-family: var(--font-display); font-weight: 700; color: var(--black-900); }
.form-success__icon { font-weight: 700; }
.newsletter-banner__content { min-width: 0; }
.newsletter-banner__form { min-width: 0; }
.newsletter-banner__btn { flex-shrink: 0; }
.resource-card__date, .resource-card__read { font-size: 0.68rem; color: var(--gray-500); }
.footer-widget { margin-bottom: 1.25rem; }
.footer-widget-title { font-family: var(--font-body); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.75rem; font-weight: 600; }

/* Auto-resize media across the whole theme */
img, video, iframe, embed, object, svg { max-width: 100%; }
img { height: auto; }
.hero__bg-video, .page-hero__bg-img, .section--media__bg img, .cta__bg-img { max-width: none; width: 100%; height: 100%; object-fit: cover; }

/* Forms — consistent alignment */
input, select, textarea, button { max-width: 100%; }
.form-group input, .form-group select, .form-group textarea,
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea,
.newsletter-banner__input { width: 100%; }
.contact-form .form-row { align-items: start; }
.contact-form, .comment-respond { width: 100%; }
.contact-info-card { width: 100%; }
.btn { max-width: 100%; }
.site-header__inner { gap: 1rem; }
.site-header__logo { flex-shrink: 0; }

/* Tables / directory overflow safety */
.directory { width: 100%; overflow-x: auto; }
.page-content, .post-content { overflow-wrap: break-word; word-break: break-word; }
.page-content img, .post-content img { width: 100%; height: auto; }

/* ═══════════════════════════════════════════════════════════════
   VISUAL RICHNESS — richer surfaces, imagery, and sections
   ═══════════════════════════════════════════════════════════════ */

/* Readable, premium card surfaces */
.service-card, .why-card, .team-card, .network-card, .wealth-card, .testimonial-card, .about-stat-card, .resource-card, .search-result, .comment, .comment-respond, .disclaimer, .newsletter-banner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.006) 100%), var(--black-700);
  border-color: rgba(255, 255, 255, 0.085);
}

/* Centered section headers get a gold hairline divider */
.section__header { position: relative; }
.section__header::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin: 1.25rem auto 0;
  background: var(--gold-gradient);
  border-radius: 2px;
  opacity: 0.65;
}

/* Sections with full-bleed backdrop imagery */
.section--media { position: relative; overflow: hidden; }
.section--media__bg { position: absolute; inset: 0; }
.section--media__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.26) saturate(0.78) contrast(1.05); }
.section--media__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.72) 28%, rgba(10, 10, 10, 0.78) 55%, rgba(10, 10, 10, 0.96) 100%);
}
.section--media > .container { position: relative; z-index: 2; }
.section--media .section__gold-line { z-index: 3; }
.section--media.section--partners .partners-grid { background: rgba(10, 10, 10, 0.22); padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, 0.05); }

/* Process steps with imagery */
.process-step { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.process-step__connector { top: 66px; }
.process-step__img { position: relative; height: 132px; flex-shrink: 0; overflow: hidden; }
.process-step__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62) saturate(0.85); transition: transform 0.5s var(--ease); }
.process-step:hover .process-step__img img { transform: scale(1.08); }
.process-step__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 10, 0.05) 0%, rgba(10, 10, 10, 0.55) 100%); }
.process-step__img--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 55%, var(--gold) 100%);
  display: flex; align-items: center; justify-content: center; color: #0A0A0A;
}
.process-step__img--gold .icon { width: auto; height: auto; }
.process-step__img--gold .icon svg { width: 30px; height: 30px; stroke-width: 2; }
.process-step__body { padding: 1.4rem 1.5rem 1.75rem; flex: 1; }

/* ═══ PRODUCTS SPLIT ═══ */
.products-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.products-visual__frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(212, 175, 55, 0.22); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.products-visual__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: brightness(0.78) saturate(1.05); display: block; }
.products-visual__frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.7) 100%); z-index: 1; }
.products-visual__badge {
  position: absolute; bottom: 1.1rem; left: 1.1rem; z-index: 2;
  background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3); padding: 0.7rem 1.1rem; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 0.75rem;
}
.products-visual__badge-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--gold); line-height: 1; }
.products-visual__badge-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-300); line-height: 1.45; }
.products-content .section__tag { margin-bottom: 1.1rem; }
.products-content__lede { font-size: 1rem; color: var(--gray-400); margin: 0.25rem 0 1.5rem; line-height: 1.75; }
.products-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.products-list { margin: 0 0 1.75rem; }
.products-list li {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  font-size: 0.95rem; color: var(--gray-200);
}
.products-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* CTA backdrop image */
.cta__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.22) saturate(0.8); }

/* Responsive for new blocks */
@media (max-width: 1024px) {
  .products-split { grid-template-columns: 1fr; gap: 2rem; }
  .products-visual__frame { max-width: 520px; }
}
@media (max-width: 768px) {
  .section--media.section--partners .partners-grid { padding: 1rem; }
}

/* ============================================================
   HOME PAGE ENHANCEMENTS — cinematic hero, market watch,
   insights grid, testimonial photos
   ============================================================ */

/* --- Hero cinematic video background --- */
.hero__bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.85) contrast(1.05);
  animation: heroZoom 36s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.09) translateY(-1.5%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg-video { animation: none; }
}

/* --- Hero floating market watch panel --- */
.hero__right { position: relative; }
.hero__market {
  position: absolute; left: -4rem; bottom: -1.75rem; z-index: 3;
  width: 250px; padding: 0.9rem 1rem;
  background: rgba(12, 12, 14, 0.82);
  border: 1px solid rgba(220, 20, 60, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(220, 20, 60, 0.05);
}
.hero__market-head {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gray-500); margin-bottom: 0.6rem; padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.hero__market-dot { width: 6px; height: 6px; background: #22C55E; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero__market-tag {
  margin-left: auto; font-size: 0.52rem; font-weight: 700; color: var(--red);
  background: rgba(220, 20, 60, 0.1); padding: 0.15rem 0.45rem; border-radius: 4px;
}
.hero__market-row {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; padding: 0.28rem 0;
}
.hero__market-sym { font-weight: 600; color: var(--gray-300); width: 42px; }
.hero__market-price { color: var(--white); font-weight: 500; margin-left: auto; font-variant-numeric: tabular-nums; }
.hero__market-chg { font-size: 0.62rem; font-weight: 700; width: 46px; text-align: right; }
.hero__market-chg--up   { color: #22C55E; }
.hero__market-chg--down { color: #EF4444; }
@media (max-width: 480px) {
  .hero__market { left: 0; bottom: -1.5rem; width: 220px; }
}

/* --- Testimonial photo avatars --- */
.testimonial-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(212, 175, 55, 0.35);
}
.testimonial-card__avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Market insights grid --- */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.insight-card {
  background: var(--black-700);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 20, 60, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.insight-card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.insight-card__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82) saturate(1.05); transition: transform 0.6s var(--ease); }
.insight-card:hover .insight-card__media img { transform: scale(1.06); }
.insight-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.55) 100%); }
.insight-card__tag {
  position: absolute; left: 0.9rem; bottom: 0.8rem; z-index: 1;
  font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  color: var(--gold); background: rgba(10, 10, 10, 0.65); backdrop-filter: blur(6px);
  padding: 0.28rem 0.6rem; border-radius: 999px; border: 1px solid rgba(212, 175, 55, 0.25);
}
.insight-card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.insight-card__date { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); margin-bottom: 0.6rem; }
.insight-card__title { font-size: 1.05rem; font-weight: 600; color: var(--white); line-height: 1.35; margin-bottom: 0.6rem; }
.insight-card__excerpt { font-size: 0.82rem; color: var(--gray-400); line-height: 1.65; margin-bottom: 1.1rem; flex-grow: 1; }
.insight-card__link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.06em;
  transition: gap 0.25s var(--ease);
}
.insight-card__link:hover { gap: 0.7rem; }
@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAVIGATION — dropdown menus (fallback + WP native sub-menus)
   ============================================================ */
.nav__menu li { position: relative; }
.nav__menu .nav__has-children > a,
.nav__menu li.menu-item-has-children > a {
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.nav__caret { display: inline-flex; align-items: center; transition: transform 0.25s var(--ease); }
.nav__caret .icon { display: flex; width: 14px; height: 14px; }
.nav__caret .icon svg { width: 14px; height: 14px; }
.nav__has-children:hover .nav__caret,
.nav__menu li.menu-item-has-children:hover .nav__caret { transform: rotate(180deg); }

.nav__menu .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 230px; z-index: 80;
  background: rgba(12, 12, 14, 0.97);
  border: 1px solid var(--gray-800); border-radius: 10px;
  padding: 0.5rem; margin-top: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
}
.nav__menu li:hover > .sub-menu,
.nav__menu li:focus-within > .sub-menu,
.nav__menu li.menu-item-has-children:hover > .sub-menu,
.nav__menu li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu .sub-menu li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0.85rem; font-size: 0.78rem; font-weight: 500;
  color: var(--gray-300); border-radius: 7px;
}
.nav__menu .sub-menu li a::after { display: none; }
.nav__menu .sub-menu li a:hover,
.nav__menu .sub-menu li.active a {
  background: rgba(220, 20, 60, 0.1); color: var(--red);
}
.nav__menu .sub-menu .sub-menu { top: -0.5rem; left: 100%; }
/* Touch: keep submenus available via focus/open class (not hover-only) */
.nav__menu li.submenu-open > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu li.submenu-open > a .nav__caret,
.nav__menu li.submenu-open .nav__caret { transform: rotate(180deg); }
@media (hover: none) {
  .nav__menu li:hover > .sub-menu { opacity: 0; visibility: hidden; }
  .nav__menu li.submenu-open > .sub-menu,
  .nav__menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}

/* ============================================================
   PAGE TEMPLATES — shared page-building components
   (about / wealth / qib / cards / transfer / resources /
    network / impact)
   ============================================================ */

/* Shared card surface used across content pages */
.card-chip {
  background: var(--black-700);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 20, 60, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

/* --- About page --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual__frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(212, 175, 55, 0.22); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.about-visual__frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: brightness(0.85) saturate(1.05); display: block; }
.about-visual__frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.72) 100%); z-index: 1; }
.about-visual__caption { position: absolute; left: 1.25rem; bottom: 1.25rem; z-index: 2; }
.about-visual__caption strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.about-visual__caption span { font-size: 0.72rem; color: var(--gray-300); text-transform: uppercase; letter-spacing: 0.06em; }

/* Pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card {
  position: relative; padding: 2rem; border-radius: var(--radius);
  background: var(--black-700); border: 1px solid var(--gray-800);
  transition: all 0.3s var(--ease);
}
.pillar-card:hover { transform: translateY(-5px); border-color: rgba(220, 20, 60, 0.25); box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45); }
.pillar-card__icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; color: var(--gold); background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 50%; margin-bottom: 1.25rem; }
.pillar-card__icon .icon, .pillar-card__icon .icon svg { width: 24px; height: 24px; }
.pillar-card__title { font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.pillar-card__desc { font-size: 0.85rem; color: var(--gray-400); line-height: 1.7; }

/* Split features */
.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split-feature__media img, .split-feature__img {
  width: 100%; border-radius: var(--radius); object-fit: cover; display: block;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.18);
}
.split-feature__text { font-size: 0.95rem; color: var(--gray-400); line-height: 1.75; margin: 0.25rem 0 1.5rem; }
.split-feature__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.mini-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.mini-feature { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.9rem; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--gray-800); border-radius: 10px; }
.mini-feature__icon { color: var(--gold); flex-shrink: 0; }
.mini-feature__icon .icon, .mini-feature__icon .icon svg { width: 18px; height: 18px; }
.mini-feature strong { display: block; font-size: 0.8rem; color: var(--white); margin-bottom: 0.1rem; }
.mini-feature span { font-size: 0.68rem; color: var(--gray-500); }

/* --- Wealth page --- */
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.client-card { position: relative; padding: 2rem 1.75rem; }
.client-card__num { position: absolute; top: 1.1rem; right: 1.25rem; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1px rgba(220, 20, 60, 0.28); line-height: 1; }
.client-card__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: var(--red); background: rgba(220, 20, 60, 0.08); border-radius: 12px; margin-bottom: 1.1rem; }
.client-card__icon .icon, .client-card__icon .icon svg { width: 22px; height: 22px; }
.client-card__title { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.55rem; }
.client-card__desc { font-size: 0.85rem; color: var(--gray-400); line-height: 1.65; }
.client-card--featured { background: linear-gradient(160deg, rgba(220, 20, 60, 0.07) 0%, rgba(212, 175, 55, 0.03) 100%); }

/* Wealth services chips */
.wealth-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.wealth-service { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1.5rem 1rem; text-align: center; }
.wealth-service__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--gold); background: rgba(212, 175, 55, 0.08); border-radius: 50%; }
.wealth-service__icon .icon, .wealth-service__icon .icon svg { width: 20px; height: 20px; }
.wealth-service__title { font-size: 0.82rem; font-weight: 600; color: var(--white); }

/* Pills list */
.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0 1.5rem; }
.pill-list--center { justify-content: center; margin: 0 auto 2rem; max-width: 720px; }
.pill {
  padding: 0.45rem 0.95rem; font-size: 0.72rem; font-weight: 500; color: var(--gray-300);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--gray-800); border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.pill:hover { border-color: rgba(220, 20, 60, 0.4); color: var(--red); }

/* --- QIB page --- */
.qib-intro { max-width: 820px; margin: 0 auto 3rem; text-align: center; }
.qib-intro p { font-size: 1rem; color: var(--gray-300); line-height: 1.8; }
.qib-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.qib-col { padding: 1.9rem 1.75rem; }
.qib-col--featured { background: linear-gradient(160deg, rgba(212, 175, 55, 0.06) 0%, rgba(220, 20, 60, 0.03) 100%); }
.qib-col__title { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.qib-col__desc { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 1rem; }
.qib-col__note { font-size: 0.78rem; color: var(--gray-500); font-style: italic; line-height: 1.6; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.accent-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; }
.accent-list li { position: relative; font-size: 0.82rem; color: var(--gray-300); padding-left: 1.1rem; line-height: 1.5; }
.accent-list li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* Strategies */
.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.strategy-card { position: relative; padding: 1.9rem 1.75rem; background: rgba(12, 12, 14, 0.85); border: 1px solid var(--gray-800); border-radius: var(--radius); transition: all 0.3s var(--ease); }
.strategy-card:hover { border-color: rgba(220, 20, 60, 0.25); transform: translateY(-4px); }
.strategy-card--wide { grid-column: 1 / -1; }
.strategy-card__num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1px rgba(212, 175, 55, 0.32); margin-bottom: 0.75rem; }
.strategy-card__title { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.65rem; }
.strategy-card__desc { font-size: 0.85rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 0.65rem; }

/* QIB notice + CTA */
.qib-notice { display: flex; gap: 1rem; align-items: flex-start; max-width: 760px; margin: 2.5rem auto 0; padding: 1.1rem 1.4rem; background: rgba(212, 175, 55, 0.05); border: 1px solid rgba(212, 175, 55, 0.18); border-radius: 12px; }
.qib-notice__icon { color: var(--gold); flex-shrink: 0; }
.qib-notice p { font-size: 0.75rem; color: var(--gray-400); line-height: 1.65; }
.qib-cta { text-align: center; max-width: 640px; margin: 0 auto; }
.qib-cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.qib-cta p { font-size: 0.95rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.qib-cta__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* --- Cards page --- */
.cards-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cards-showcase__text { font-size: 0.95rem; color: var(--gray-400); line-height: 1.75; margin-bottom: 1.5rem; }
.card-demo {
  position: relative; width: 100%; max-width: 420px; aspect-ratio: 8 / 5; margin: 0 auto;
  background: linear-gradient(135deg, #222 0%, #0d0d0d 55%, #1a1a1a 100%);
  border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 18px; padding: 1.6rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: perspective(1100px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s var(--ease);
  overflow: hidden;
}
.card-demo::before { content: ''; position: absolute; top: -50%; left: -40%; width: 130%; height: 160%; background: conic-gradient(from 120deg, transparent 0%, rgba(212, 175, 55, 0.08) 12%, transparent 24%); animation: shine 7s linear infinite; }
.card-demo:hover { transform: perspective(1100px) rotateY(0) rotateX(0); }
.card-demo__chip { width: 44px; height: 32px; background: var(--gold-gradient); border-radius: 6px; margin-bottom: 1rem; }
.card-demo__nfc { font-size: 0.6rem; color: var(--gray-500); letter-spacing: 0.22em; margin-bottom: 0.9rem; }
.card-demo__number { font-family: monospace; font-size: 1.05rem; letter-spacing: 0.2em; color: var(--gray-200); margin-bottom: 1.4rem; }
.card-demo__bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.card-demo__label { font-size: 0.5rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.14em; }
.card-demo__name { font-size: 0.85rem; color: var(--gold); letter-spacing: 0.14em; font-weight: 500; }
.card-demo__logo { opacity: 0.75; border-radius: 8px; }
.check-list { list-style: none; margin: 0 0 1.75rem; }
.check-list li { position: relative; padding: 0.55rem 0 0.55rem 1.9rem; font-size: 0.9rem; color: var(--gray-200); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.check-list li::before { content: ''; position: absolute; left: 0; top: 0.62rem; width: 18px; height: 18px; border-radius: 50%; background: rgba(220, 20, 60, 0.12); border: 1px solid rgba(220, 20, 60, 0.4); }
.check-list li::after { content: ''; position: absolute; left: 5px; top: 0.78rem; width: 8px; height: 4px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }
.cards-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.cards-feature { padding: 1.75rem 1.5rem; }
.cards-feature__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--red); background: rgba(220, 20, 60, 0.08); border-radius: 12px; margin-bottom: 1rem; }
.cards-feature__icon .icon, .cards-feature__icon .icon svg { width: 20px; height: 20px; }
.cards-feature h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.5rem; }
.cards-feature p { font-size: 0.8rem; color: var(--gray-400); line-height: 1.65; }

/* --- Transfer page --- */
.transfer-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.transfer-step { position: relative; padding: 2rem 1.75rem; text-align: center; background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); transition: all 0.3s var(--ease); }
.transfer-step:hover { transform: translateY(-5px); border-color: rgba(220, 20, 60, 0.25); }
.transfer-step::before { content: ''; position: absolute; top: 32%; left: -1.5rem; width: 1.5rem; border-top: 1px dashed rgba(212, 175, 55, 0.3); }
@media (min-width: 1025px) { .transfer-step:first-child::before { display: none; } }
.transfer-step__num { position: absolute; top: 1rem; right: 1.25rem; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1px rgba(220, 20, 60, 0.3); }
.transfer-step__icon { width: 52px; height: 52px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; color: var(--gold); background: rgba(212, 175, 55, 0.08); border-radius: 50%; }
.transfer-step__icon .icon, .transfer-step__icon .icon svg { width: 24px; height: 24px; }
.transfer-step__title { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.transfer-step__desc { font-size: 0.82rem; color: var(--gray-400); line-height: 1.65; margin-bottom: 1rem; }
.transfer-step__cta { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.05em; }
.transfer-step__cta .icon { display: flex; }
.transfer-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.transfer-feature { padding: 1.75rem 1.5rem; }
.transfer-feature__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--gold); background: rgba(212, 175, 55, 0.08); border-radius: 12px; margin-bottom: 1rem; }
.transfer-feature__icon .icon, .transfer-feature__icon .icon svg { width: 20px; height: 20px; }
.transfer-feature h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.5rem; }
.transfer-feature p { font-size: 0.8rem; color: var(--gray-400); line-height: 1.65; }

/* --- Resources page --- */
.resources-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.resource-cat { padding: 1.75rem 1.6rem; border: 1px solid var(--gray-800); background: var(--black-700); border-radius: var(--radius); transition: all 0.3s var(--ease); }
.resource-cat:hover { transform: translateY(-4px); border-color: rgba(220, 20, 60, 0.22); }
.resource-cat__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.1rem; padding-bottom: 0.85rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.resource-cat__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--red); background: rgba(220, 20, 60, 0.08); border-radius: 10px; flex-shrink: 0; }
.resource-cat__icon .icon, .resource-cat__icon .icon svg { width: 19px; height: 19px; }
.resource-cat__title { font-size: 0.98rem; font-weight: 600; color: var(--white); }
.resource-cat__list { list-style: none; }
.resource-cat__list li { border-bottom: 1px solid rgba(255, 255, 255, 0.045); }
.resource-cat__list li:last-child { border-bottom: 0; }
.resource-cat__list a { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.7rem 0.2rem; font-size: 0.82rem; color: var(--gray-300); transition: all 0.25s var(--ease); }
.resource-cat__list a:hover { color: var(--red); padding-left: 0.4rem; }
.resource-cat__list .icon { display: flex; width: 13px; opacity: 0; transition: opacity 0.25s var(--ease); }
.resource-cat__list a:hover .icon { opacity: 1; }

/* --- Network page --- */
.network-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.network-service { position: relative; padding: 2rem 1.75rem; background: var(--black-700); border: 1px solid var(--gray-800); border-radius: var(--radius); transition: all 0.3s var(--ease); }
.network-service:hover { transform: translateY(-4px); border-color: rgba(220, 20, 60, 0.25); }
.network-service__num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1px rgba(212, 175, 55, 0.3); line-height: 1; margin-bottom: 0.8rem; }
.network-service__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--gold); background: rgba(212, 175, 55, 0.08); border-radius: 10px; margin-bottom: 1rem; }
.network-service__icon .icon, .network-service__icon .icon svg { width: 19px; height: 19px; }
.network-service__title { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.55rem; }
.network-service__desc { font-size: 0.86rem; color: var(--gray-400); line-height: 1.7; }

/* Directory table */
.directory { max-width: 860px; margin: 0 auto 2.5rem; border: 1px solid var(--gray-800); border-radius: var(--radius); overflow: hidden; }
.directory__row { display: grid; grid-template-columns: 1.2fr 1.4fr 1.4fr; gap: 1rem; padding: 0.85rem 1.25rem; align-items: center; }
.directory__row:nth-child(even) { background: rgba(255, 255, 255, 0.015); }
.directory__row:not(:last-child) { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.directory__cell { font-size: 0.85rem; color: var(--gray-300); }
.directory__cell--head { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; }
.directory__cell a { color: var(--red); }
.directory__cell a:hover { text-decoration: underline; }

/* --- Impact page --- */
.impact-initiatives { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.impact-initiative { padding: 1.6rem 1.4rem; background: rgba(12, 12, 14, 0.85); border: 1px solid var(--gray-800); border-radius: var(--radius); transition: all 0.3s var(--ease); }
.impact-initiative:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.25); }
.impact-initiative__icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; color: var(--gold); background: rgba(212, 175, 55, 0.08); border-radius: 11px; margin-bottom: 1rem; }
.impact-initiative__icon .icon, .impact-initiative__icon .icon svg { width: 20px; height: 20px; }
.impact-initiative__title { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.impact-initiative__list { list-style: none; }
.impact-initiative__list li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.8rem; color: var(--gray-400); padding: 0.35rem 0; }
.impact-initiative__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ═══ RESPONSIVE — Large PC / small laptop (nav squeeze) ═══ */
@media (max-width: 1360px) {
  .nav__menu > li > a { padding: 0.45rem 0.4rem; font-size: 0.72rem; }
  .site-header__actions .btn--sm { padding: 0.35rem 0.55rem; font-size: 0.68rem; }
  .site-header__logo { max-width: 140px; }
  .site-header__logo-img { max-width: 120px !important; height: 36px !important; }
}
@media (max-width: 1180px) {
  .nav__menu > li > a { padding: 0.4rem 0.35rem; font-size: 0.68rem; }
  .site-header__actions .btn--sm { padding: 0.35rem 0.5rem; font-size: 0.66rem; }
  .top-bar__item { font-size: 0.65rem; }
  .top-bar__left, .top-bar__right { gap: 0.85rem; }
}
@media (max-width: 1080px) {
  .nav, .site-header__actions { display: none; }
  .site-header__burger { display: block; }
}

@media (max-width: 1024px) {
  :root { --section: 5rem; --gutter: 1.5rem; }
  .hero__content { grid-template-columns: 1fr; gap: 2rem; }
  .hero__right { display: none; }
  .hero { min-height: auto; padding-bottom: 3rem; }
  .hero__content { padding-top: calc(var(--header-height) + var(--top-bar-height) + 3rem); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid .about-visual { order: -1; max-width: 520px; }
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card--wide { grid-column: span 1; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-step__connector { display: none; }
  .network-grid, .team-grid, .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .products-split { grid-template-columns: 1fr; gap: 2rem; }
  .products-visual__frame { max-width: 520px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .wealth-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content__features { grid-template-columns: 1fr 1fr; }
  .newsletter-banner { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.75rem; }
  .cards-showcase, .split-feature, .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars-grid, .client-grid, .wealth-services-grid, .cards-features-grid, .transfer-features, .resources-cats { grid-template-columns: 1fr 1fr; }
  .qib-cols { grid-template-columns: 1fr; }
  .strategy-grid, .network-services { grid-template-columns: 1fr; }
  .impact-initiatives { grid-template-columns: 1fr 1fr; }
  .transfer-steps { grid-template-columns: 1fr; }
  .transfer-step::before { display: none; }
  .mini-features { grid-template-columns: 1fr; }
  .section--media.section--partners .partners-grid { padding: 1rem; }
}

/* Tablet landscape / small desktop: collapse full nav earlier */
@media (max-width: 960px) {
  .nav, .site-header__actions { display: none; }
  .site-header__burger { display: block; }
  .site-header { background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
  .site-header.scrolled { background: rgba(10, 10, 10, 0.97); }
  .hero__stats { gap: 1.25rem; }
  .hero__stat-num { font-size: 1.8rem; }
  .trust-bar__full { display: none; }
  .trust-bar__divider { height: 24px; }
}

/* ═══ RESPONSIVE — Tablet portrait ═══ */
@media (max-width: 768px) {
  :root { --section: 3.75rem; --gutter: 1.25rem; --header-height: 64px; }
  .top-bar { display: none; }
  .site-header { top: 0; }
  .page-hero { padding-top: calc(var(--header-height) + 2.5rem); }
  .hero__content { padding-top: calc(var(--header-height) + 2.5rem); }
  .top-bar__right { display: none; }
  .nav, .site-header__actions { display: none; }
  .site-header__burger { display: block; }
  .site-header__logo-img { height: 34px; }
  .hero__title { font-size: clamp(2.1rem, 7vw, 3rem); }
  .hero__stats { flex-direction: row; flex-wrap: wrap; gap: 1.25rem; }
  .hero__stat { flex: 1 1 30%; min-width: 90px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__desc { max-width: 100%; }
  .hero__scroll { display: none; }
  .services-grid, .why-grid, .wealth-grid, .testimonials-grid, .network-grid, .team-grid, .partners-grid, .resources-grid, .insights-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .process-step__connector { display: none; }
  .about-content__features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .newsletter-banner { grid-template-columns: 1fr; padding: 1.5rem; }
  .newsletter-banner__field { flex-direction: column; }
  .newsletter-banner__btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .site-footer__bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .site-footer__legal { flex-wrap: wrap; justify-content: center; }
  .cta__actions { flex-direction: column; align-items: stretch; }
  .cta__actions .btn { width: 100%; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.25rem; }
  .section__header { margin-bottom: 2rem; }
  .section__title { font-size: clamp(1.55rem, 5vw, 2.2rem); }
  .page-hero__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .page-hero { padding-top: calc(var(--header-height) + 2.25rem); padding-bottom: 2.5rem; }
  .directory__row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1rem 1rem; }
  .directory__cell--head { display: none; }
  .pillars-grid, .client-grid, .wealth-services-grid, .cards-features-grid, .transfer-features, .resources-cats, .impact-initiatives { grid-template-columns: 1fr; }
  .strategy-grid, .network-services, .qib-cols, .transfer-steps, .mini-features { grid-template-columns: 1fr; }
  .cards-showcase, .split-feature, .about-grid, .products-split { grid-template-columns: 1fr; gap: 1.75rem; }
  .accent-list { grid-template-columns: 1fr; }
  .testimonials-grid { max-width: 100%; }
  .post-nav { flex-direction: column; }
  .post-nav__prev, .post-nav__next { max-width: 100%; }
  .post-nav__next { text-align: left; align-items: flex-start; }
  .trust-bar__logos { gap: 0.85rem; }
  .trust-bar__divider { display: none; }
  .ticker__track { gap: 1.5rem; }
  .section--media.section--partners .partners-grid { padding: 1rem; }
  .hero__market { left: 0; bottom: -1rem; }
  .products-visual__frame, .about-visual__frame { max-width: 100%; }
  .faq-item__trigger { font-size: 0.85rem; padding: 0.9rem 1rem; }
  .btn--lg { padding: 0.85rem 1.4rem; font-size: 0.88rem; }
}

/* ═══ RESPONSIVE — Mobile ═══ */
@media (max-width: 480px) {
  :root { --section: 3rem; --gutter: 1rem; }
  .container { padding: 0 1rem; }
  .hero__badges { flex-direction: column; align-items: flex-start; }
  .hero__stats { flex-direction: column; gap: 0.85rem; }
  .hero__stat { flex: none; width: 100%; display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; text-align: right; }
  .hero__stat-label { margin-top: 0; text-align: left; flex: 1; }
  .hero__stat-num { font-size: 1.55rem; justify-content: flex-end; }
  .about-stats { grid-template-columns: 1fr; }
  .newsletter-banner__field { flex-direction: column; }
  .trust-bar__logos { gap: 0.75rem; }
  .trust-bar__divider { display: none; }
  .trust-bar__acronym { font-size: 1.05rem; }
  .footer-grid__links--contact li { align-items: flex-start; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; /* prevent iOS zoom */ }
  .newsletter-banner__input { font-size: 16px; }
  .mobile-nav__panel { width: 100vw; max-width: 100vw; }
  .section__gold-line { width: 40px; }
  .disclaimer { padding: 1.25rem; }
  .insight-card__body { padding: 1.1rem 1.1rem 1.25rem; }
  .service-card, .why-card, .wealth-card, .testimonial-card, .team-card { padding: 1.25rem; }
  .back-to-top { width: 36px; height: 36px; bottom: 1rem; right: 1rem; }
}

/* Ultra-wide safety */
@media (min-width: 1600px) {
  :root { --container: 1320px; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .ticker__track { animation: none; }
  .js [data-anim] { opacity: 1; }
  .hero__bg-video { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════
   CROSS-BROWSER FINAL TOUCHES
   Chrome · Firefox · Safari · Edge — consistent homepage render
   ═══════════════════════════════════════════════════════════════ */

/* Never leave content invisible if animations/JS partially fail */
.js [data-anim].is-visible,
.js [data-anim].animated { opacity: 1 !important; transform: none; }
html.force-reveal [data-anim] { opacity: 1 !important; transform: none !important; }
html.force-reveal .service-card,
html.force-reveal .why-card,
html.force-reveal .team-card,
html.force-reveal .network-card,
html.force-reveal .about-stat-card,
html.force-reveal .wealth-card,
html.force-reveal .testimonial-card,
html.force-reveal .process-step,
html.force-reveal .partner-logo,
html.force-reveal .faq-item,
html.force-reveal .insight-card,
html.force-reveal .resource-card { opacity: 1 !important; transform: none !important; }

/* Loader: never trap the page if load event is slow/blocked */
.loader { animation: loaderFailsafe 0.01s linear 4s forwards; }
@keyframes loaderFailsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }
html:not(.js) .loader { display: none !important; }

/* Hero video/poster layering — poster always visible until video plays */
.hero__bg-img { z-index: 0; }
.hero__bg-video { z-index: 1; opacity: 0; transition: opacity 0.7s ease; }
.hero__bg-video.is-ready,
.hero__bg-video[data-playing="1"] { opacity: 1; }
.hero__gradient, .hero__grid-pattern, .hero__grain, .hero__orbs, .hero__particles { z-index: 2; }
.hero__content, .hero__scroll { z-index: 3; }

/* Mobile viewport (iOS Safari address bar) */
.hero { min-height: 100vh; }
@supports (min-height: 100dvh) {
  .hero { min-height: 100dvh; }
}
.mobile-nav { min-height: 100vh; }
@supports (min-height: 100dvh) {
  .mobile-nav { min-height: 100dvh; }
}

/* Webkit blur / mask prefixes (Safari) */
.mobile-nav,
.hero__market,
.insight-card__tag,
.nav__menu .sub-menu,
.products-visual__badge {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.hero__grid-lines {
  -webkit-mask-image: radial-gradient(circle at 70% 30%, black, transparent 75%);
  mask-image: radial-gradient(circle at 70% 30%, black, transparent 75%);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .mobile-nav { background: rgba(6, 6, 6, 0.97); }
  .hero__market { background: rgba(12, 12, 14, 0.95); }
  .nav__menu .sub-menu { background: rgba(12, 12, 14, 0.99); }
}

/* Form controls — normalize across browsers */
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 6px;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A3A3A3' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem !important;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }
::-webkit-input-placeholder { color: var(--gray-600); opacity: 1; }
::-moz-placeholder { color: var(--gray-600); opacity: 1; }
:-ms-input-placeholder { color: var(--gray-600); }
::placeholder { color: var(--gray-600); opacity: 1; }
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(220, 20, 60, 0.55);
  outline-offset: 2px;
}
.btn:focus-visible { outline-offset: 3px; }

/* Aspect-ratio fallback (older browsers) */
@supports not (aspect-ratio: 16 / 9) {
  .insight-card__media { height: 0; padding-bottom: 56.25%; }
  .insight-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
  .products-visual__img { min-height: 240px; }
  .about-visual__frame img { min-height: 320px; }
  .resource-card__img { height: 0; padding-bottom: 62.5%; position: relative; }
  .resource-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; }
}

/* Ensure full-bleed media doesn’t overflow horizontally in any browser */
body { max-width: 100vw; overflow-x: hidden; }
html { overflow-x: hidden; }
.section, .page-hero, .hero { max-width: 100%; }

/* Flex/grid text wrapping safety */
.section__title, .hero__title, .page-hero__title, .cta__title { overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }
.nav__menu > li > a { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }

/* Safari: sticky header backdrop without jank */
.site-header {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.site-header.scrolled {
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
}

/* Back-to-top safe area (iOS notch) */
.back-to-top {
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
}

/* Print: show all content, hide chrome */
@media print {
  .loader, .cursor-glow, .scroll-progress, .top-bar, .site-header, .mobile-nav,
  .back-to-top, .hero__particles, .ticker-section, .section-newsletter, .site-footer { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
  .js [data-anim], [data-anim] { opacity: 1 !important; }
  h1, h2, h3, h4 { color: #000 !important; }
}

/* High contrast / forced colors */
@media (forced-colors: active) {
  .btn, .service-card, .insight-card, .network-card { border: 1px solid CanvasText; }
  .hero__badge, .pill { border: 1px solid CanvasText; }
}

/* ═══ MEMBERSHIP PRODUCT CARDS (/get-membership/) ═══ */
.section--membership { background: var(--black-900); }
.section--membership .service-products-grid { opacity: 1 !important; visibility: visible !important; }
.section--membership .service-product { opacity: 1 !important; visibility: visible !important; transform: none; }
.section--services-products { background: var(--black-900); }
.service-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.service-product {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.008) 100%), var(--black-700);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  min-height: 100%;
}
.service-product::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-product:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 20, 60, 0.28);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}
.service-product:hover::before { transform: scaleX(1); }
.service-product--featured {
  border-color: rgba(212, 175, 55, 0.35);
  background: linear-gradient(160deg, rgba(220, 20, 60, 0.07) 0%, rgba(212, 175, 55, 0.04) 100%), var(--black-700);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.service-product--featured::before { background: var(--gold-gradient); transform: scaleX(1); }
.service-product__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.service-product__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(220, 20, 60, 0.18);
  line-height: 1;
}
.service-product--featured .service-product__num { color: rgba(212, 175, 55, 0.28); }
.service-product__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 12px;
}
.service-product__icon .icon,
.service-product__icon .icon svg { width: 22px; height: 22px; }
.service-product__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.service-product__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.service-product__amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.service-product--featured .service-product__amount { color: var(--gold); }
.service-product__period {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}
.service-product__desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-product__cta { align-self: flex-start; }
.service-products-note {
  max-width: 720px;
  margin: 2.5rem auto 0;
  text-align: center;
}
.service-products-note p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.service-products-note a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-products-note a:hover { color: var(--red-light); }

@media (max-width: 1024px) {
  .service-products-grid { grid-template-columns: 1fr 1fr; }
  .service-product--featured { grid-column: span 1; }
}
@media (max-width: 768px) {
  .service-products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .service-product { padding: 1.5rem 1.35rem; }
  .service-product__cta { width: 100%; }
}

/* ═══ WOOCOMMERCE / CHECKOUT (Paybito) ═══ */
.section--wc { background: var(--black-900); min-height: 50vh; padding-top: calc(var(--section) * 0.55); }
.container--wc { max-width: 1100px; width: 100%; }
.section--wc .woocommerce,
.section--wc .woocommerce-checkout,
.section--wc form.checkout { width: 100% !important; max-width: 100% !important; float: none !important; }

/* page.php fallback if woocommerce.php is missed — widen WC content */
body.woocommerce-checkout .container--narrow,
body.woocommerce-cart .container--narrow,
body.woocommerce-account .container--narrow,
body.woocommerce .container--narrow { max-width: 1100px; }
body.woocommerce-checkout .page-content,
body.woocommerce-cart .page-content { width: 100%; max-width: 100%; }

/* Kill WC clearfix pseudo-elements — they become grid children and wreck #customer_details */
.woocommerce .col2-set::before,
.woocommerce .col2-set::after,
.woocommerce-page .col2-set::before,
.woocommerce-page .col2-set::after,
#customer_details::before,
#customer_details::after {
  content: none !important;
  display: none !important;
}

/* Reset theme form-row grid for WooCommerce */
.woocommerce form .form-row,
.woocommerce-checkout form .form-row,
#wc-checkout-form .form-row,
form.checkout .form-row {
  display: block !important;
  width: 100% !important;
  float: none !important;
  margin: 0 0 1rem !important;
  padding: 0 !important;
  grid-template-columns: none !important;
  clear: none;
}
.woocommerce form .form-row::after { content: none; display: none; }
.woocommerce form .form-row.form-row-first,
.woocommerce form .form-row-first { float: none; width: 100%; }
.woocommerce form .form-row label,
.woocommerce form .form-row .label { display: block !important; width: 100% !important; float: none !important; color: var(--gray-300) !important; font-size: 0.78rem !important; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.35rem; line-height: 1.4 !important; white-space: normal !important; overflow: visible !important; }

/* Billing | Additional — clean 2-col (no clearfix pseudo items) */
.woocommerce .col2-set { display: block; width: 100%; }
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  display: block;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout .col2-set {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr !important;
    gap: 1.75rem !important;
    align-items: start;
  }
  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2 {
    width: auto !important;
    grid-column: auto;
    grid-row: auto;
  }
  /* First/Last name side-by-side inside billing column */
  .woocommerce-checkout form.checkout .form-row-first,
  .woocommerce-checkout form.checkout .form-row-last {
    display: inline-block;
    width: calc(50% - 0.4rem) !important;
    vertical-align: top;
    margin-right: 0.7rem !important;
  }
  .woocommerce-checkout form.checkout .form-row-last { margin-right: 0 !important; }
  .woocommerce-checkout form.checkout .form-row-wide,
  .woocommerce-checkout form.checkout .form-row {
    display: block;
    width: 100% !important;
    margin-right: 0 !important;
  }
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .quantity .qty,
.wc-block-components-text-input input,
.wc-block-components-combobox select {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  padding: 0.85rem 1rem !important;
  min-height: 48px;
  box-shadow: none !important;
  float: none !important;
  margin: 0 !important;
  position: static !important;
  opacity: 1 !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.wc-block-components-text-input input:focus {
  outline: none !important;
  border-color: rgba(212, 175, 55, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12) !important;
}
.woocommerce form select,
.woocommerce select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.04) !important;
  background-image: linear-gradient(45deg, transparent 50%, #D4AF37 50%), linear-gradient(135deg, #D4AF37 50%, transparent 50%) !important;
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px) !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
  padding-right: 2rem !important;
  color: var(--white) !important;
}
.woocommerce .select2-container--default .select2-selection--single,
.woocommerce .select2-container--default .select2-selection--multiple {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  height: 48px !important;
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--white) !important;
  line-height: 46px !important;
  padding-left: 1rem !important;
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
}
.woocommerce-breadcrumb, .woocommerce-breadcrumb a { font-size: 0.75rem; color: var(--gray-500); }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit,
.woocommerce .button, a.checkout-button, #place_order, .wc-block-components-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #DC143C 0%, #B01030 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 1.5rem !important;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
  text-decoration: none !important;
  min-height: 48px;
  width: auto !important;
  float: none !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
#place_order:hover, a.checkout-button:hover, .wc-block-components-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(220, 20, 60, 0.35);
  color: #fff !important;
}
/* Order table: keep price column on one line (was crushing to ~35px) */
.woocommerce table.shop_table, .woocommerce .shop_table td, .woocommerce .shop_table th,
.woocommerce-cart table.cart, .woocommerce-checkout .shop_table {
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--gray-200) !important;
  width: 100%;
  table-layout: auto !important;
}
.woocommerce .shop_table { border-collapse: collapse !important; }
.woocommerce .shop_table th { color: var(--gold) !important; text-align: left; }
.woocommerce .shop_table th.product-total,
.woocommerce .shop_table td.product-total,
.woocommerce .shop_table th:last-child,
.woocommerce .shop_table td:last-child {
  width: 1% !important;
  min-width: 5.5rem;
  white-space: nowrap !important;
  text-align: right !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}
.woocommerce .shop_table th.product-name,
.woocommerce .shop_table td.product-name,
.woocommerce .shop_table th:first-child,
.woocommerce .shop_table td:first-child {
  width: 99% !important;
  white-space: normal;
  word-break: break-word;
}
.woocommerce .shop_table .woocommerce-Price-amount,
.woocommerce .shop_table .product-total,
.woocommerce .shop_table tfoot th {
  white-space: nowrap !important;
  word-break: keep-all !important;
}
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-review-order,
.wc-block-cart, .wc-block-checkout {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--radius) !important;
  padding: 1.5rem !important;
  color: var(--gray-200) !important;
  width: 100% !important;
  float: none !important;
  box-sizing: border-box;
}
.woocommerce-checkout #payment, .woocommerce-checkout #payment .payment_box {
  background: rgba(0, 0, 0, 0.35) !important;
  color: var(--gray-300) !important;
  border-radius: 8px !important;
}
.woocommerce-checkout #payment ul.payment_methods { border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; }
.woocommerce-checkout #payment ul.payment_methods li { color: var(--gray-200) !important; line-height: 1.6 !important; }
/* Paybito / gateway icons — never stretch */
.woocommerce #payment ul.payment_methods li img,
.woocommerce #payment img,
.payment_box img,
.woocommerce .payment_methods li img {
  width: auto !important;
  max-width: 32px !important;
  height: auto !important;
  max-height: 32px !important;
  display: inline-block !important;
  float: none !important;
  vertical-align: middle;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error, .wc-block-components-notice-banner {
  background: rgba(212, 175, 55, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.28) !important;
  color: var(--gray-100) !important;
  border-radius: var(--radius) !important;
}
.woocommerce-error { background: rgba(220, 20, 60, 0.1) !important; border-color: rgba(220, 20, 60, 0.35) !important; }
.woocommerce ul.products li.product { background: var(--black-700); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1rem; }
.woocommerce ul.products li.product .price { color: var(--gold) !important; font-weight: 700; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--gold) !important; }
.woocommerce nav.woocommerce-pagination ul.page-numbers li a { color: var(--gray-300); }
.woocommerce nav.woocommerce-pagination ul.page-numbers li span.current { background: var(--red); color: #fff; }
#place_order { width: 100% !important; margin-top: 1rem; font-size: 0.95rem !important; padding: 1.1rem 1.5rem !important; float: none !important; }
.woocommerce-checkout .payment-method-name, .woocommerce-checkout label { color: var(--gray-200) !important; }
.cart_totals .shop_table td, .cart_totals .shop_table th { color: var(--gray-200) !important; white-space: normal; }
.woocommerce a.remove { color: var(--red) !important; }
.quantity .qty { text-align: center; }
.woocommerce-checkout h3, .woocommerce-checkout h2 { color: var(--white); margin-bottom: 1rem; }
#customer_details { width: 100%; }
.woocommerce-checkout .checkout #order_review { float: none; width: 100%; }
.woocommerce form.checkout { width: 100%; }
#order_review_heading { margin-top: 0.5rem; }
.woocommerce-checkout .woocommerce-form-coupon-toggle { margin-bottom: 1.25rem; }
.woocommerce-checkout #payment .place-order { clear: both; }
.header-cart-count { display: inline-flex; align-items: center; justify-content: center; min-width: 1.15rem; height: 1.15rem; padding: 0 0.3rem; margin-left: 0.25rem; background: var(--red); color: #fff; border-radius: 999px; font-size: 0.65rem; font-weight: 700; line-height: 1; }

/* WooCommerce mobile (must stay after theme responsive block) */
@media (max-width: 768px) {
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout .col2-set {
    display: block !important;
    grid-template-columns: none !important;
  }
  .woocommerce table.shop_table td,
  .woocommerce table.shop_table th,
  .woocommerce-cart table.cart td,
  .woocommerce-cart table.cart th { padding: 0.75rem 0.5rem; font-size: 0.85rem; }
  .woocommerce-cart table.cart .product-thumbnail { display: none; }
  .woocommerce-checkout #order_review,
  .woocommerce-checkout .woocommerce-checkout-review-order,
  .woocommerce-cart .cart-collaterals .cart_totals { padding: 1.15rem !important; }
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea,
  .woocommerce form .form-row select { font-size: 16px !important; }
  #place_order { font-size: 0.9rem !important; padding: 1rem 1.1rem !important; }
  .woocommerce .shop_table th.product-total,
  .woocommerce .shop_table td.product-total { min-width: 4.5rem; }
}
@media (max-width: 480px) {
  .woocommerce ul.products { display: flex; flex-direction: column; gap: 1rem; }
  .woocommerce ul.products li.product { width: 100%; float: none; margin: 0; }
  .woocommerce .quantity .qty { width: auto; min-width: 4.5rem; }
  .woocommerce .shop_table th,
  .woocommerce .shop_table td { font-size: 0.78rem; padding: 0.6rem 0.4rem; }
}
