/* ========================================
   VEDE Global Empire - Main Stylesheet
   Converted from Tailwind CSS v4 to Vanilla CSS
   ======================================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --color-bg-primary: #0B0B0C;
  --color-bg-secondary: #121214;
  --color-bg-surface: #1A1A1D;
  --color-gold-primary: #D4AF37;
  --color-gold-highlight: #E6C769;
  --color-text-primary: #F2F2F2;
  --color-text-secondary: #A0A0A6;
  --color-border-subtle: #2A2A2F;
  --color-success: #1DB954;
  --max-width: 1320px;
}

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

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

::selection {
  background-color: var(--color-gold-primary);
  color: var(--color-bg-primary);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-grow {
  flex-grow: 1;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.gap-12 {
  gap: 48px;
}

.gap-16 {
  gap: 64px;
}

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

.w-full {
  width: 100%;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.min-h-screen {
  min-height: 100vh;
}

/* --- Grid --- */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* --- Typography --- */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.uppercase {
  text-transform: uppercase;
}

.leading-tight {
  line-height: 1.2;
}

.leading-relaxed {
  line-height: 1.7;
}

.italic {
  font-style: italic;
}

.font-mono {
  font-family: ui-monospace, monospace;
}

/* Color utilities */
.text-gold {
  color: var(--color-gold-primary);
}

.text-secondary {
  color: var(--color-text-secondary);
}

.text-primary {
  color: var(--color-text-primary);
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-primary);
  font-weight: 700;
  font-size: 14px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  transition: color 0.3s;
}

.logo:hover .logo-text {
  color: var(--color-gold-highlight);
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.3s, transform 0.3s;
  position: relative;
  padding: 8px 0;
}

/* Hover effect: gold underline slide-in from left */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold-primary);
  border-radius: 2px 2px 0 0;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-gold-primary);
}

.nav-link.active::after {
  width: 100%;
}

/* Header CTA */
.header-right {
  display: none;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  background: var(--color-gold-primary);
  color: var(--color-bg-primary);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--color-gold-highlight);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Mobile menu toggle */
.mobile-toggle {
  color: var(--color-text-primary);
  padding: 8px;
  display: block;
  background: none;
  border: none;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 40;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(42, 42, 47, 0.5);
  color: var(--color-text-primary);
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--color-gold-primary);
}

.mobile-nav-link.active {
  color: var(--color-gold-primary);
}

.mobile-nav .btn-primary {
  margin-top: 16px;
  text-align: center;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-brand p {
  color: var(--color-text-secondary);
  max-width: 28rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.footer-global {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

.footer-global svg {
  color: var(--color-gold-primary);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-links a:hover {
  color: var(--color-gold-primary);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.footer-contact a {
  color: inherit;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--color-gold-primary);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px 0;
  border-top: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  color: var(--color-text-secondary);
  font-size: 0.75rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  font-size: 0.75rem;
}

.footer-bottom-links a {
  color: var(--color-text-secondary);
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--color-gold-primary);
}

/* --- Buttons --- */
.btn-outline {
  background: transparent;
  border: 1px solid var(--color-gold-primary);
  color: var(--color-gold-primary);
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 6px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}

.btn-outline-subtle {
  background: transparent;
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-primary);
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 6px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline-subtle:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-cta {
  background: var(--color-bg-primary);
  color: var(--color-gold-primary);
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 6px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta:hover {
  background: var(--color-bg-secondary);
}

/* --- Sections --- */
.section {
  padding: 24px 0;
}

.section-sm {
  padding: 24px 0;
}

.bg-primary {
  background: var(--color-bg-primary);
}

.bg-secondary {
  background: var(--color-bg-secondary);
}

.border-t {
  border-top: 1px solid var(--color-border-subtle);
}

.border-b {
  border-bottom: 1px solid var(--color-border-subtle);
}

.border-y {
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.section-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  mix-blend-mode: luminosity;
  filter: brightness(0.225);
}

.hero-bg .slide.active {
  opacity: 1;
}

.hero-bg .overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-bg-primary), rgba(11, 11, 12, 0.9), transparent);
}

.hero-bg .glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  filter: blur(120px);
  transform: translate(33%, -50%);
}

.hero-bg .glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: rgba(212, 175, 55, 0.075);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-33%, 33%);
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Badge pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid var(--color-border-subtle);
  background: rgba(26, 26, 29, 0.5);
  backdrop-filter: blur(4px);
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold-primary);
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.gradient-text {
  background: linear-gradient(to right, var(--color-gold-primary), var(--color-gold-highlight));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 40rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

/* Hero side card */
.hero-card {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  background: var(--color-bg-surface);
  padding: 32px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(11, 11, 12, 0.9));
  z-index: 1;
}

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}

.hero-card-top,
.hero-card-bottom {
  position: relative;
  z-index: 2;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.globe-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-icon-circle svg {
  color: var(--color-gold-primary);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 11, 12, 0.8);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid var(--color-border-subtle);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.status-text {
  font-size: 0.75rem;
  font-family: ui-monospace, monospace;
  color: var(--color-text-secondary);
}

.hero-card-bottom {
  margin-top: auto;
}

.hero-card-bottom h3 {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-card-bottom p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: rgba(11, 11, 12, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
  padding: 16px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.25rem;
  font-family: ui-monospace, monospace;
  color: var(--color-gold-primary);
}

/* --- Card Styles --- */
.card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.675);
}

.card-dark {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s;
}

.card-dark:hover {
  border-color: rgba(212, 175, 55, 0.675);
}

/* --- Commodity Cards --- */
.commodity-card {
  display: block;
  text-decoration: none;
}

.commodity-card-inner {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.commodity-card:hover .commodity-card-inner {
  border-color: rgba(212, 175, 55, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.225);
}

.commodity-card-img {
  height: 192px;
  position: relative;
  overflow: hidden;
}

.commodity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s;
}

.commodity-card:hover .commodity-card-img img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.commodity-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.commodity-card-body h4 {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.commodity-card:hover .commodity-card-body h4 {
  color: var(--color-gold-primary);
}

.commodity-card-body p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.commodity-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* --- Trust Metrics --- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-item svg {
  color: var(--color-gold-primary);
  opacity: 0.8;
}

.metric-value {
  font-size: 1.875rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-text-primary);
}

.metric-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Subtle BG Section --- */
.section-with-bg {
  position: relative;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: luminosity;
}

.section-bg .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg-primary), transparent, var(--color-bg-primary));
}

/* --- Feature check list --- */
.feature-item {
  display: flex;
  gap: 16px;
}

.feature-check {
  margin-top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-check svg {
  color: var(--color-gold-primary);
  width: 14px;
  height: 14px;
}

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

.feature-item p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* --- Process Steps (vertical timeline) --- */
.timeline {
  position: relative;
  border-left: 1px solid var(--color-border-subtle);
  margin-left: 12px;
}

.timeline-item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-step {
  position: absolute;
  left: -17px;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-family: ui-monospace, monospace;
  color: var(--color-gold-primary);
}

.timeline-item h5 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* --- Process Steps (horizontal, Services page) --- */
.process-grid {
  position: relative;
}

.process-line {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border-subtle);
  transform: translateY(-50%);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.process-step {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.15);
}

.process-step:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-family: ui-monospace, monospace;
  color: var(--color-gold-primary);
  margin: 0 auto 24px;
  transition: all 0.3s;
}

.process-step:hover .step-number {
  background: var(--color-gold-primary);
  color: var(--color-bg-primary);
}

.process-step h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--color-border-subtle);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.faq-question h4 {
  font-size: 1.125rem;
  font-weight: 500;
  padding-right: 32px;
  transition: color 0.3s;
  color: var(--color-text-primary);
}

.faq-question:hover h4 {
  color: var(--color-gold-primary);
}

.faq-item.active .faq-question h4 {
  color: var(--color-gold-primary);
}

.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-question:hover .faq-chevron {
  background: var(--color-bg-surface);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.45);
}

.faq-item.active .faq-chevron svg {
  color: var(--color-gold-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer-inner {
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* FAQ card variant (Compliance page) */
.faq-card-item {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
  margin-bottom: 5px;
}

.faq-card-item:last-child {
  margin-bottom: 0;
}

.faq-card-item.active {
  border-color: rgba(212, 175, 55, 0.5);
}

.faq-card-item .faq-question {
  padding: 15px 32px;
}

.faq-card-item .faq-answer-inner {
  padding: 0 32px 24px;
  border-top: 1px solid rgba(42, 42, 47, 0.3);
  margin-top: 8px;
  padding-top: 16px;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-subtle);
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--color-text-primary);
  font-size: 0.875rem;
  transition: all 0.3s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
}

.form-textarea {
  resize: none;
}

.form-select {
  appearance: none;
}

.form-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.form-card .corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 0 0 0 100%;
}

/* Success state */
.form-success {
  display: none;
  background: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(29, 185, 84, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--color-text-secondary);
}

.form-success button {
  margin-top: 32px;
  color: var(--color-gold-primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  cursor: pointer;
}

.form-success button:hover {
  color: var(--color-gold-highlight);
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 24px 0;
  background: var(--color-gold-primary);
  position: relative;
  overflow: hidden;
}

.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
}

.cta-banner .cta-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  mix-blend-mode: overlay;
}

.cta-banner .cta-bg .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(212, 175, 55, 0.8), transparent);
}

.cta-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-bg-primary);
  margin-bottom: 24px;
}

.cta-content p {
  color: var(--color-bg-secondary);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto 40px;
  font-weight: 500;
}

/* --- Global Markets --- */
.market-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.3s;
}

.market-card:hover {
  border-color: rgba(212, 175, 55, 0.675);
}

.market-card svg {
  color: var(--color-gold-primary);
  margin: 0 auto 16px;
}

.market-card h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.market-card p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* --- Commodity Expandable Cards (Commodities page) --- */
.expandable-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 32px;
}

.expandable-card:last-child {
  margin-bottom: 0;
}

.expandable-card.active {
  border-color: rgba(212, 175, 55, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
}

.expandable-header {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.expandable-header:hover .card-title {
  color: var(--color-gold-primary);
}

.expandable-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.expandable-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  flex-shrink: 0;
}

.expandable-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s;
}

.expandable-header:hover .expandable-thumb img {
  filter: grayscale(0);
}

.card-title {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.3s;
}

.supply-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.supply-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
}

.expand-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.expandable-card.active .expand-btn-icon {
  transform: rotate(180deg);
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.45);
}

.expandable-card.active .expand-btn-icon svg {
  color: var(--color-gold-primary);
}

.expandable-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.expandable-card.active .expandable-body {
  max-height: 1200px;
}

.expandable-body-inner {
  padding: 0 32px 32px;
  border-top: 1px solid rgba(42, 42, 47, 0.5);
  margin-top: 8px;
}

.expandable-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 32px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.spec-box {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
  padding: 16px;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.spec-value {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Info heading with icon */
.info-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.info-heading svg {
  color: var(--color-gold-primary);
  width: 18px;
  height: 18px;
}

/* --- Contact Info Cards --- */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.contact-item:hover .contact-icon {
  border-color: rgba(212, 175, 55, 0.5);
}

.contact-icon svg {
  color: var(--color-gold-primary);
  width: 20px;
  height: 20px;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 1.125rem;
  transition: color 0.3s;
}

.contact-value:hover {
  color: var(--color-gold-primary);
}

/* --- Page Header --- */
.page-header {
  padding-top: 128px;
  padding-bottom: 80px;
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-subtle);
  position: relative;
  overflow: hidden;
}

.page-header .glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 800px;
  height: 800px;
  background: rgba(212, 175, 55, 0.04);
  border-radius: 50%;
  filter: blur(120px);
  transform: translateX(-50%) translateY(-50%);
}

/* Animation: fade-in-up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.animate-delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.animate-delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

/* --- Core values / services cards with hover accent line --- */
.accent-card {
  position: relative;
  overflow: hidden;
}

.accent-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: rgba(212, 175, 55, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s;
}

.accent-card:hover::after {
  transform: translateX(0);
}

.accent-card svg {
  transition: color 0.3s;
}

.accent-card:hover svg {
  color: var(--color-gold-primary) !important;
}

/* Service card with corner glow */
.service-card-large {
  position: relative;
  overflow: hidden;
}

.service-card-large .corner-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: linear-gradient(to bottom left, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 0 0 0 100%;
  transition: background 0.3s;
}

.service-card-large:hover .corner-glow {
  background: linear-gradient(to bottom left, rgba(212, 175, 55, 0.2), transparent);
}

/* --- Misc --- */
.border-l-gold {
  border-left: 2px solid var(--color-gold-primary);
  padding-left: 16px;
}

.gold-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold-primary);
  flex-shrink: 0;
  margin-top: 10px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-circle {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bullet-circle-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold-primary);
}

/* Image with glow bg */
.img-glow {
  position: relative;
}

.img-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 16px;
  filter: blur(16px);
  z-index: -1;
}

.img-glow img {
  border-radius: 16px;
  border: 1px solid var(--color-border-subtle);
  width: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* Image card with offset bg */
.img-offset {
  position: relative;
}

.img-offset::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 16px;
  transform: translate(16px, 16px);
  z-index: -1;
}

.img-offset img {
  border-radius: 16px;
  border: 1px solid var(--color-border-subtle);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  opacity: 0.8;
}

/* Registration info card */
.reg-card {
  padding: 24px;
}

.reg-item {
  padding-top: 16px;
  border-top: 1px solid rgba(42, 42, 47, 0.5);
}

.reg-item:first-child {
  padding-top: 0;
  border-top: none;
}

.reg-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.reg-value {
  font-size: 1rem;
  font-weight: 500;
}

.reg-value-gold {
  font-size: 1.125rem;
  font-family: ui-monospace, monospace;
  color: var(--color-gold-primary);
}

/* Other commodities note */
.note-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.note-card h4 {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 8px;
}

.note-card p {
  color: var(--color-text-secondary);
}

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .header-inner {
    padding: 0 40px;
  }

  .desktop-nav {
    display: flex;
  }

  .header-right {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0 40px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px 40px 0;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-desc {
    font-size: 1.25rem;
  }

  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .metric-value {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .section {
    padding: 64px 0;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .process-line {
    display: block;
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-card {
    padding: 48px;
  }

  .cta-content h2 {
    font-size: 3rem;
  }

  .note-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 2fr 1fr;
  }

  .hero-card {
    display: flex;
  }

  .lg-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .lg-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .lg-grid-12-5-7 {
    grid-template-columns: 5fr 7fr;
  }

  .expandable-grid {
    grid-template-columns: 2fr 1fr;
  }

  .page-header h2 {
    font-size: 3.75rem;
  }
}

    /* ===== WHATSAPP FLOATING WIDGET ===== */

    #wa-widget-container {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 14px;
      font-family: 'Segoe UI', Arial, sans-serif;
    }

    /* ---- Chat Box ---- */
    #wa-chat-box {
      width: 320px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
      display: none;
      flex-direction: column;
      background: #f0f2f5;
      animation: waPop 0.25s ease;
    }

    #wa-chat-box.open {
      display: flex;
    }

    @keyframes waPop {
      from { opacity: 0; transform: scale(0.85) translateY(20px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    /* Header */
    #wa-header {
      background: #1a1a1a;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
    }

    #wa-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #3a3a3a;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

    #wa-avatar svg {
      width: 28px;
      height: 28px;
      fill: #aaa;
    }

    #wa-header-info {
      flex: 1;
    }

    #wa-header-name {
      color: #ffffff;
      font-weight: 700;
      font-size: 14.5px;
      margin-bottom: 3px;
    }

    #wa-header-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #b0b0b0;
    }

    #wa-status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #25D366;
      display: inline-block;
      box-shadow: 0 0 0 2px rgba(37,211,102,0.25);
    }

    #wa-close-btn {
      background: none;
      border: none;
      color: #aaa;
      font-size: 20px;
      cursor: pointer;
      padding: 4px 6px;
      line-height: 1;
      border-radius: 50%;
      transition: background 0.2s, color 0.2s;
    }

    #wa-close-btn:hover {
      background: rgba(255,255,255,0.1);
      color: #fff;
    }

    /* Body */
    #wa-body {
      padding: 20px 14px 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: #e5ddd5;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8bfb5' fill-opacity='0.25'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    /* Timestamp */
    #wa-timestamp {
      text-align: center;
      font-size: 11px;
      color: #888;
      background: rgba(255,255,255,0.55);
      border-radius: 8px;
      padding: 3px 10px;
      width: fit-content;
      align-self: center;
    }

    /* Message Bubble */
    #wa-message-bubble {
      background: #ffffff;
      border-radius: 0 12px 12px 12px;
      padding: 12px 14px;
      font-size: 13.5px;
      color: #111;
      line-height: 1.55;
      max-width: 90%;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      position: relative;
    }

    #wa-message-bubble::before {
      content: '';
      position: absolute;
      top: 0;
      left: -8px;
      width: 0;
      height: 0;
      border-top: 0px solid transparent;
      border-right: 9px solid #ffffff;
      border-bottom: 9px solid transparent;
    }

    #wa-message-bubble .wa-greeting {
      font-weight: 700;
      font-size: 14.5px;
      margin-bottom: 6px;
    }

    /* Footer Buttons */
    #wa-footer {
      background: #f0f2f5;
      padding: 12px 14px 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .wa-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 16px;
      border-radius: 50px;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.1s;
    }

    .wa-btn:active {
      transform: scale(0.97);
    }

    .wa-btn-primary {
      background: #25D366;
      color: #fff;
    }

    .wa-btn-primary:hover {
      opacity: 0.88;
    }

    .wa-btn-secondary {
      background: #1a1a1a;
      color: #fff;
    }

    .wa-btn-secondary:hover {
      opacity: 0.82;
    }

    .wa-btn svg {
      flex-shrink: 0;
    }

    /* ---- Floating Trigger Button ---- */
    #wa-trigger-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #1a1a1a;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.28);
      transition: transform 0.2s, background 0.2s;
      position: relative;
    }

    #wa-trigger-btn:hover {
      background: #333;
      transform: scale(1.08);
    }

    #wa-trigger-btn svg {
      width: 30px;
      height: 30px;
      fill: #25D366;
    }

    /* Pulse ring */
    #wa-trigger-btn::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2.5px solid #25D366;
      animation: waPulse 2s infinite;
      opacity: 0;
    }

    @keyframes waPulse {
      0%   { transform: scale(1);   opacity: 0.7; }
      100% { transform: scale(1.55); opacity: 0; }
    }

    /* Notification badge */
    #wa-badge {
      position: absolute;
      top: -3px;
      right: -3px;
      width: 18px;
      height: 18px;
      background: #ff3b3b;
      border-radius: 50%;
      font-size: 10px;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff;
    }
