/* ====================================================
   XCELWHIZ DIGITAL — LUXURY GREEN & GOLD STYLESHEET
   Premium AI Automation Agency — South Africa
   ==================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Brand Colors */
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --emerald-300: #6ee7b7;
  --emerald-light: #d1fae5;

  --gold-900: #78350f;
  --gold-800: #92400e;
  --gold-700: #b45309;
  --gold-600: #d97706;
  --gold-500: #f59e0b;
  --gold-400: #fbbf24;
  --gold-300: #fcd34d;
  --gold-200: #fde68a;
  --gold-100: #fef3c7;
  --gold-metallic: #c9a227;
  --gold-bright: #f0c040;
  --gold-light: #ffe680;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-off-white: #f8faf9;
  --bg-light: #f0f9f4;
  --bg-dark: #022c22;
  --bg-section: #f6faf7;

  /* Text */
  --text-dark: #0a1628;
  --text-medium: #1e3a2f;
  --text-light: #4a7c6f;
  --text-muted: #6b7280;
  --text-white: #ffffff;

  /* Effects */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(201, 162, 39, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --gold-glow: 0 0 30px rgba(201, 162, 39, 0.4);
  --emerald-glow: 0 0 30px rgba(16, 185, 129, 0.3);
  --card-shadow: 0 4px 24px rgba(6, 95, 70, 0.12);
  --hover-shadow: 0 16px 48px rgba(6, 95, 70, 0.2);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-max: 1200px;
  --container-pad: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-bright), var(--gold-300), var(--gold-metallic));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-text { color: var(--gold-metallic); }
.emerald-text { color: var(--emerald-600); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--emerald-900); }
::-webkit-scrollbar-thumb { background: var(--gold-metallic); border-radius: 4px; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.97); }
}

@keyframes metric-fill-anim {
  from { width: 0; }
  to { width: var(--fill); }
}

@keyframes chat-appear {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(6, 78, 59, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-accent {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(201, 162, 39, 0.8);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-links a:hover {
  color: var(--gold-300);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-metallic)) !important;
  color: var(--bg-dark) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast) !important;
  -webkit-text-fill-color: unset !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--gold-glow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-metallic) 50%, var(--gold-600) 100%);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.5);
}

.btn-primary:hover::before { left: 100%; }
.btn-primary.large { padding: 18px 36px; font-size: 1rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 162, 39, 0.6);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp.large { padding: 18px 36px; font-size: 1rem; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(201, 162, 39, 0.1));
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold-metallic);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-label.light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 162, 39, 0.4);
  color: var(--gold-300);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title.light { color: var(--text-white); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.section-subtitle.light { color: rgba(255, 255, 255, 0.75); }

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--emerald-900) 0%,
    #044030 20%,
    #053d30 40%,
    #064a38 60%,
    #03302a 80%,
    var(--emerald-900) 100%
  );
  padding: 120px 24px 80px;
  gap: 0;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(4, 120, 87, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  animation: orb-float 10s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  top: -100px; right: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  bottom: 10%; left: 5%;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(240, 192, 64, 0.1) 0%, transparent 70%);
  top: 30%; left: 40%;
  animation-delay: -6s;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold-metallic);
  border-radius: 50%;
  opacity: 0.4;
  animation: float var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 620px;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.trust-item i { color: var(--gold-400); font-size: 0.9rem; }

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

/* ===== HERO DASHBOARD ===== */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 540px;
  margin-left: auto;
  padding-left: 40px;
}

.hero-dashboard-wrapper {
  position: relative;
}

.dashboard-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.hero-dashboard {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: float 7s ease-in-out infinite;
}

.dashboard-header {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-dots { display: flex; gap: 6px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.dashboard-title {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.dashboard-live {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--emerald-400);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dashboard-live i {
  font-size: 0.5rem;
  animation: pulse-ring 1.5s ease-in-out infinite;
  color: var(--emerald-400);
}

.dashboard-body { padding: 20px; }

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: border-color var(--transition-fast);
}

.dash-stat:hover { border-color: rgba(201, 162, 39, 0.3); }

.dash-stat-icon {
  width: 32px; height: 32px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--emerald-400);
  flex-shrink: 0;
}

.dash-stat-icon.gold {
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold-400);
}

.dash-stat-icon.green {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
}

.dash-stat-info { min-width: 0; }
.dash-stat-value {
  display: inline;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  font-family: var(--font-display);
}

.dash-stat-unit { font-size: 0.75rem; color: var(--gold-400); font-weight: 600; }
.dash-stat-label { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.5); margin-top: 2px; letter-spacing: 0.02em; }

.dash-chat-preview {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 16px;
}

.chat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #25D366;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-messages { display: flex; flex-direction: column; gap: 8px; }

.chat-msg {
  font-size: 0.72rem;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 90%;
  animation: chat-appear 0.5s ease forwards;
}

.chat-msg.incoming {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  border-radius: 4px 10px 10px 10px;
}

.chat-msg.outgoing {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: rgba(255,255,255,0.9);
  align-self: flex-end;
  border-radius: 10px 4px 10px 10px;
}

.ai-tag {
  display: inline-block;
  background: var(--gold-metallic);
  color: var(--bg-dark);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 5px;
  border-radius: 4px;
  margin-right: 6px;
}

.dash-metrics-row { display: flex; flex-direction: column; gap: 10px; }

.dash-metric {
  display: flex;
  align-items: center;
  gap: 10px;
}

.metric-label { font-size: 0.65rem; color: rgba(255,255,255,0.55); width: 120px; flex-shrink: 0; }

.metric-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--emerald-500), var(--emerald-400));
  border-radius: 3px;
  transition: width 1.5s ease 0.5s;
}

.metric-fill.gold-fill {
  background: linear-gradient(90deg, var(--gold-metallic), var(--gold-300));
}

.metric-val { font-size: 0.7rem; font-weight: 700; color: var(--emerald-400); }
.metric-val.gold-text { color: var(--gold-400); }

/* WhatsApp FAB inside Hero */
.whatsapp-fab {
  display: none; /* Show only on desktop top corner or within section */
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(201,162,39,0.6), transparent);
  animation: shimmer 2s ease infinite;
}

/* ===== RESULTS SECTION ===== */
.results-section {
  padding: var(--section-pad);
  background: var(--bg-white);
  position: relative;
}

.results-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-700), var(--gold-metallic), var(--emerald-600));
}

.results-section .section-label,
.results-section .section-title,
.results-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.results-section .section-label {
  display: inline-flex;
  width: auto;
  margin: 0 auto 20px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-smooth);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-500), var(--gold-metallic));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(201, 162, 39, 0.3);
}

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

.result-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(201, 162, 39, 0.08));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--emerald-600);
  margin: 0 auto 20px;
  transition: var(--transition-smooth);
}

.result-card:hover .result-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(201, 162, 39, 0.15));
  color: var(--gold-metallic);
}

.result-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--emerald-700);
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
}

.result-currency {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: var(--gold-metallic);
  font-weight: 700;
}

.result-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.result-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  position: relative;
  padding: var(--section-pad);
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--emerald-900) 0%,
    #033226 30%,
    #042d22 60%,
    var(--emerald-900) 100%
  );
}

.services-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.services-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 50%, rgba(16, 185, 129, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
}

.services-section .container { position: relative; z-index: 1; }

.services-section .section-label,
.services-section .section-title,
.services-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.services-section .section-label {
  display: inline-flex;
  width: auto;
  margin: 0 auto 20px;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.3);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 162, 39, 0.2);
}

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

.service-icon-wrap { margin-bottom: 20px; }

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(4, 120, 87, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--emerald-400);
  transition: var(--transition-smooth);
}

.service-icon.gold-icon {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(245, 158, 11, 0.1));
  border-color: rgba(201, 162, 39, 0.25);
  color: var(--gold-400);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(16, 185, 129, 0.15));
  border-color: rgba(201, 162, 39, 0.4);
  color: var(--gold-300);
  box-shadow: var(--gold-glow);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-feature-list span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-feature-list i {
  color: var(--gold-metallic);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ===== SYSTEMS SECTION ===== */
.systems-section {
  padding: var(--section-pad);
  background: var(--bg-off-white);
  position: relative;
}

.systems-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(201, 162, 39, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.systems-section .section-label,
.systems-section .section-title,
.systems-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.systems-section .section-label {
  display: inline-flex;
  width: auto;
  margin: 0 auto 20px;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.system-card {
  background: var(--bg-white);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
}

.system-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(6, 95, 70, 0.18);
  border-color: rgba(16, 185, 129, 0.3);
}

.system-card.popular {
  background: linear-gradient(160deg, var(--emerald-900), #033020);
  border: 2px solid rgba(201, 162, 39, 0.5);
  transform: scale(1.04);
  box-shadow: 0 32px 80px rgba(6, 78, 59, 0.35), 0 0 0 1px rgba(201, 162, 39, 0.3);
}

.system-card.popular:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 40px 100px rgba(6, 78, 59, 0.45), var(--gold-glow);
}

.system-card.elite {
  border-color: rgba(201, 162, 39, 0.25);
}

.system-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-metallic));
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

.system-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 8px;
}

.system-tier.gold { color: var(--gold-400); }
.system-tier.elite-tier { color: var(--gold-metallic); }

.system-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.system-card.popular .system-name { color: var(--text-white); }
.system-card.popular .system-desc { color: rgba(255, 255, 255, 0.7); }

.system-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.system-card.popular .system-desc {
  border-bottom-color: rgba(201, 162, 39, 0.2);
}

.system-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.system-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.system-card.popular .system-features li { color: rgba(255, 255, 255, 0.85); }

.system-features li i {
  color: var(--emerald-500);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.system-card.popular .system-features li i { color: var(--gold-400); }

.system-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  background: rgba(16, 185, 129, 0.1);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-700);
  transition: var(--transition-smooth);
}

.system-cta:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--emerald-500);
  transform: translateY(-2px);
}

.system-cta.gold-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-metallic));
  border: none;
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.system-cta.gold-cta:hover {
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.5);
}

.system-cta.elite-cta {
  border-color: rgba(201, 162, 39, 0.4);
  color: var(--gold-metallic);
}

.system-cta.elite-cta:hover {
  background: rgba(201, 162, 39, 0.1);
  border-color: var(--gold-metallic);
}

.systems-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin-top: 48px;
}

.systems-note i { color: var(--emerald-600); margin-top: 2px; font-size: 1rem; }
.systems-note p { font-size: 0.9rem; color: var(--text-light); }
.systems-note a { color: var(--emerald-600); font-weight: 600; }
.systems-note a:hover { color: var(--gold-metallic); }

/* ===== WHY SECTION ===== */
.why-section {
  position: relative;
  padding: var(--section-pad);
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    #022c22 0%,
    #033a28 40%,
    #022c22 100%
  );
}

.why-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.why-section .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 14px;
}

.why-feature-icon {
  width: 42px; height: 42px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-400);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.why-feature:hover .why-feature-icon {
  background: rgba(201, 162, 39, 0.2);
  box-shadow: var(--gold-glow);
}

.why-feature-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.why-feature-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Why Visual */
.why-card-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-metric-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-smooth);
  animation: float var(--dur, 6s) ease-in-out infinite;
}

.card-1 { --dur: 6s; animation-delay: 0s; }
.card-2 { --dur: 7s; animation-delay: -1s; margin-left: 30px; }
.card-3 { --dur: 5.5s; animation-delay: -2s; }
.card-4 { --dur: 6.5s; animation-delay: -3s; margin-left: 20px; }

.why-metric-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.wmc-icon {
  width: 48px; height: 48px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--emerald-400);
  flex-shrink: 0;
}

.wmc-icon.gold {
  background: rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.2);
  color: var(--gold-400);
}

.wmc-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; letter-spacing: 0.04em; }

.wmc-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
  line-height: 1;
}

.wmc-sub { font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.star-gold { color: var(--gold-400); font-size: 0.9rem; }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--bg-section);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 90% 50%, rgba(201, 162, 39, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.testimonials-section .section-label,
.testimonials-section .section-title,
.testimonials-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.testimonials-section .section-label {
  display: inline-flex;
  width: auto;
  margin: 0 auto 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(201, 162, 39, 0.25);
}

.testimonial-card.featured {
  background: linear-gradient(160deg, var(--emerald-900), #033020);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 24px 64px rgba(6, 78, 59, 0.3), 0 0 0 1px rgba(201, 162, 39, 0.2);
}

.testimonial-card.featured:hover {
  transform: translateY(-6px) scale(1.01);
}

.testimonial-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-metallic));
  color: var(--bg-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating i { color: var(--gold-400); font-size: 0.85rem; }

blockquote {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -8px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(16, 185, 129, 0.15);
  line-height: 1;
}

.testimonial-card.featured blockquote { color: rgba(255, 255, 255, 0.8); }
.testimonial-card.featured blockquote::before { color: rgba(201, 162, 39, 0.15); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(201, 162, 39, 0.2);
}

.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(4, 120, 87, 0.1));
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--emerald-500);
  flex-shrink: 0;
}

.author-avatar.gold-avatar {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(245, 158, 11, 0.1));
  border-color: rgba(201, 162, 39, 0.4);
  color: var(--gold-400);
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-card.featured .author-name { color: var(--text-white); }

.author-role {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.testimonial-card.featured .author-role { color: rgba(255, 255, 255, 0.6); }

.author-location {
  font-size: 0.72rem;
  color: var(--gold-metallic);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--emerald-900) 0%,
    #033726 40%,
    #042f20 70%,
    var(--emerald-900) 100%
  );
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-float 12s ease-in-out infinite;
}

.cta-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  top: -80px; right: 10%;
}

.cta-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  bottom: -60px; left: 10%;
  animation-delay: -5s;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.cta-section .section-label {
  display: inline-flex;
  margin: 0 auto 24px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-subheadline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.cta-contact-item i { color: var(--gold-400); }

.cta-contact-item:hover { color: var(--gold-300); }

.cta-contact-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--section-pad);
  background: var(--bg-white);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(201, 162, 39, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--emerald-600);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-text a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--emerald-700);
  transition: color var(--transition-fast);
}

.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--text-medium);
}

.contact-detail-text a:hover { color: var(--gold-metallic); }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px; height: 44px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  color: var(--text-white);
  transform: translateY(-3px);
}

.social-link.whatsapp-social:hover {
  background: #25D366;
  border-color: #25D366;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-off-white);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-white);
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  resize: vertical;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23047857' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 32px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-disclaimer i { color: var(--emerald-500); }

.form-success {
  text-align: center;
  padding: 60px 40px;
}

.form-success i {
  font-size: 3.5rem;
  color: var(--emerald-500);
  margin-bottom: 20px;
  display: block;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

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

/* ===== FOOTER ===== */
.footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #011a14 0%,
    #021f18 50%,
    #011a14 100%
  );
}

.footer-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin: 16px 0 24px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--gold-metallic);
  border-color: var(--gold-metallic);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-metallic);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

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

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.footer-contact-item i {
  color: var(--gold-metallic);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-item:hover { color: var(--gold-300); }

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.footer-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

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

.footer-bottom-links span { color: rgba(255, 255, 255, 0.2); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(37, 211, 102, 0.5);
  border-radius: 50%;
  animation: pulse-ring 2s ease infinite;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 999;
  width: 44px; height: 44px;
  background: rgba(6, 78, 59, 0.9);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-metallic);
  border-color: var(--gold-metallic);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    padding: 130px 24px 80px;
    gap: 60px;
  }

  .hero-content { max-width: 100%; }
  .hero-visual { max-width: 100%; padding-left: 0; }
  .hero-dashboard { max-width: 500px; margin: 0 auto; }

  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .systems-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .system-card.popular { transform: none; }
  .system-card.popular:hover { transform: translateY(-8px); }

  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-visual { order: -1; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  :root {
    --section-pad: 72px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(6, 78, 59, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 24px;
    z-index: 999;
    align-items: flex-start;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  }

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

  .nav-links a { font-size: 1.1rem; color: white; }
  .nav-cta {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-metallic)) !important;
    color: var(--bg-dark) !important;
    padding: 12px 24px !important;
  }

  .nav-toggle { display: flex; z-index: 1000; }

  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-headline { font-size: 2.2rem; }
  .hero-subheadline { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

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

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

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

  .systems-grid { grid-template-columns: 1fr; }
  .system-card.popular { transform: none; }

  .why-features { grid-template-columns: 1fr; }

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

  .cta-actions { flex-direction: column; }
  .btn-whatsapp.large, .btn-primary.large { width: 100%; justify-content: center; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-bottom-content { flex-direction: column; align-items: flex-start; }

  .whatsapp-float { bottom: 24px; right: 24px; }
  .back-to-top { bottom: 92px; right: 24px; }

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

@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-divider { display: none; }
  .contact-form-wrap { padding: 24px 20px; }
  .dash-stats-row { grid-template-columns: 1fr; }
}
