/* ==========================================================================
   SPEEDVOX ENTERPRISE DESIGN SYSTEM
   Palette: Brazilian Emerald & Gold (Verde Esmeralda #0B4627, Verde Vibrante #00A859, Amarelo Ouro #FFCC00)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-dark: #031E12;
  --bg-dark-card: #082E1C;
  --bg-card: #FFFFFF;
  
  --green-primary: #00A859;
  --green-dark: #0B4627;
  --green-deep: #032B18;
  --green-light: #E6F7EF;
  --green-glow: rgba(0, 168, 89, 0.25);
  
  --yellow-primary: #FFCC00;
  --yellow-dark: #D4A000;
  --yellow-light: #FFFBE6;
  --yellow-glow: rgba(255, 204, 0, 0.35);

  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --border-light: #E2E8F0;
  --border-dark: #144A2D;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  --shadow-green: 0 10px 30px rgba(0, 168, 89, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Bar Notice (WordPress Live Switcher) */
.wp-top-bar {
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--green-dark) 50%, #053D21 100%);
  color: #E2E8F0;
  font-size: 13px;
  padding: 8px 24px;
  border-bottom: 1px solid var(--border-dark);
}
.wp-top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wp-badge {
  background: var(--yellow-primary);
  color: #000;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-right: 8px;
}
.wp-links a {
  color: var(--yellow-primary);
  font-weight: 600;
  margin-left: 16px;
}
.wp-links a:hover {
  text-decoration: underline;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.logo-text {
  font-size: 26px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  color: var(--green-dark);
}
.logo-text span {
  color: var(--green-primary);
}
.logo-tag {
  background: linear-gradient(135deg, var(--yellow-primary), #FFB800);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 4px;
}

/* Main Nav Links & Submenus */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
  padding: 30px 0;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-link:hover, .nav-item:hover > .nav-link {
  color: var(--green-primary);
}
.chevron-down {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}
.nav-item:hover .chevron-down {
  transform: rotate(180deg);
}

/* Dropdown Submenu (Megamenu Style) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--bg-primary);
  min-width: 320px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1100;
}

.dropdown-menu.wide {
  min-width: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--green-light);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dropdown-item:hover .dropdown-icon {
  background: var(--green-primary);
  color: #FFF;
}
.dropdown-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 2px;
}
.dropdown-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* Action Buttons Header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), #008847);
  color: #FFFFFF;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 168, 89, 0.4);
}

.btn-secondary {
  background: var(--yellow-primary);
  color: #000000;
}
.btn-secondary:hover {
  background: #E6B800;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-primary);
  color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-light);
}

/* Side Drawer Toggle Button */
.side-drawer-btn {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(0,168,89,0.3);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.side-drawer-btn:hover {
  background: var(--green-primary);
  color: #FFF;
}
.drawer-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.drawer-icon span {
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Off-Canvas Side Drawer Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg-dark);
  color: var(--text-white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}
.drawer-overlay.active .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
}
.drawer-close {
  background: rgba(255,255,255,0.1);
  color: #FFF;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}
.drawer-close:hover {
  background: var(--yellow-primary);
  color: #000;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer-nav-link {
  font-size: 18px;
  font-weight: 700;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-nav-link:hover {
  color: var(--yellow-primary);
  padding-left: 6px;
}
.drawer-nav-badge {
  font-size: 11px;
  background: var(--green-primary);
  color: #FFF;
  padding: 2px 8px;
  border-radius: 12px;
}

/* Page Section Container Engine */
.page-view {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}
.page-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--green-deep) 0%, #063A20 50%, var(--green-dark) 100%);
  color: var(--text-white);
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 204, 0, 0.15);
  border: 1px solid var(--yellow-primary);
  color: var(--yellow-primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-title span.highlight-green {
  color: var(--green-primary);
}
.hero-title span.highlight-yellow {
  color: var(--yellow-primary);
}

.hero-subtitle {
  font-size: 18px;
  color: #CBD5E1;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.stat-item h4 {
  font-size: 28px;
  color: var(--yellow-primary);
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 13px;
  color: #94A3B8;
}

/* Hero Media / Mockup */
.hero-media {
  position: relative;
}
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border: 2px solid rgba(0, 168, 89, 0.4);
}
.hero-img-wrapper img {
  width: 100%;
  display: block;
}
.floating-card-ai {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: rgba(8, 46, 28, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--green-primary);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}
.ai-wave-dot {
  width: 12px;
  height: 12px;
  background: var(--yellow-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--yellow-primary);
  animation: pulseWave 1.5s infinite;
}

@keyframes pulseWave {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Partners Banner */
.partners-section {
  background: var(--bg-secondary);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}
.partners-title {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.6;
  transition: var(--transition);
}
.partner-logo:hover {
  opacity: 1;
  color: var(--green-dark);
}

/* Feature Grid Section */
.section {
  padding: 90px 0;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-tag {
  color: var(--green-primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: 38px;
  color: var(--text-main);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.card-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--green-primary);
  transition: var(--transition);
}
.card-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 168, 89, 0.3);
}
.card-feature:hover::before {
  height: 100%;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  color: var(--green-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.card-feature:hover .card-icon {
  background: var(--green-primary);
  color: #FFF;
}
.card-title {
  font-size: 20px;
  margin-bottom: 12px;
}
.card-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.card-link {
  font-weight: 700;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover {
  color: var(--green-dark);
}

/* Live SpeedVox Call & AI Simulator Widget */
.simulator-box {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #FFF;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.sim-call-window {
  background: var(--bg-dark-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--green-primary);
}
.sim-call-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 12px;
}
.sim-caller-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sim-avatar {
  width: 44px;
  height: 44px;
  background: var(--yellow-primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.sim-transcript-feed {
  background: rgba(0,0,0,0.4);
  padding: 16px;
  border-radius: 8px;
  min-height: 140px;
  font-size: 14px;
  color: #E2E8F0;
  line-height: 1.5;
  margin-bottom: 20px;
}
.sim-ai-highlight {
  background: rgba(255, 204, 0, 0.15);
  border-left: 3px solid var(--yellow-primary);
  padding: 8px 12px;
  margin-top: 10px;
  border-radius: 4px;
  font-size: 13px;
}

/* Pricing Calculator */
.pricing-calculator {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}
.calc-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.calc-slider-box {
  flex: 1;
  min-width: 280px;
}
.range-slider {
  width: 100%;
  accent-color: var(--green-primary);
  height: 8px;
  border-radius: 4px;
}
.calc-result-box {
  background: var(--green-light);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(0,168,89,0.3);
}
.calc-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--green-dark);
}
.calc-price span {
  font-size: 16px;
  color: var(--text-muted);
}

/* Interactive Floating Chatbot Widget */
.chatbot-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 168, 89, 0.5);
  cursor: pointer;
  z-index: 1500;
  border: 2px solid var(--yellow-primary);
  transition: var(--transition);
}
.chatbot-trigger:hover {
  transform: scale(1.1);
}
.chatbot-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: var(--yellow-primary);
  border-radius: 50%;
  border: 2px solid #FFF;
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 380px;
  height: 520px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  z-index: 1501;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  background: var(--bg-dark);
  color: #FFF;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-bot-icon {
  width: 32px;
  height: 32px;
  background: var(--yellow-primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.chat-status {
  font-size: 11px;
  color: #10B981;
}

.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-secondary);
}
.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}
.chat-msg.bot {
  background: #FFF;
  color: var(--text-main);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green-primary);
}
.chat-msg.user {
  background: var(--green-dark);
  color: #FFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-input-box {
  padding: 12px;
  background: #FFF;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
}
.chat-send-btn {
  background: var(--green-primary);
  color: #FFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 48px;
  height: 48px;
  background: var(--bg-dark);
  color: var(--yellow-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 1499;
  border: 1px solid var(--green-primary);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top-btn:hover {
  background: var(--green-primary);
  color: #FFF;
  transform: translateY(-4px);
}

/* Footer Enterprise */
.footer {
  background: var(--bg-dark);
  color: #94A3B8;
  padding: 80px 0 30px;
  border-top: 4px solid var(--yellow-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin: 16px 0 24px;
  font-size: 14px;
  max-width: 300px;
}

.footer-col h5 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: #94A3B8;
  font-size: 14px;
}
.footer-col a:hover {
  color: var(--yellow-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid, .grid-3, .simulator-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .dropdown-menu.wide {
    min-width: 100%;
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   WORLD-CLASS HEADER & TOPBAR REDESIGN (PIXEL PERFECT & PROPORTIONAL)
   ========================================================================== */

.wp-top-bar {
  background: linear-gradient(90deg, #051A10 0%, #0B4627 50%, #051A10 100%);
  color: #E2E8F0;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 204, 0, 0.25);
}
.wp-top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wp-badge {
  background: var(--yellow-primary);
  color: #0B4627;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.topbar-text {
  font-size: 12px;
  color: #CBD5E1;
}
.topbar-status-online {
  color: #00FF87;
  font-weight: 700;
}
.wp-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-link {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.topbar-link-portal {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
.topbar-link-apk {
  background: var(--yellow-primary);
  color: #0B4627;
  font-weight: 700;
}
.topbar-link-wp {
  background: rgba(0, 168, 89, 0.2);
  color: #00FF87;
  border: 1px solid rgba(0, 255, 135, 0.3);
}
.topbar-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.logo-text span {
  color: var(--green-primary);
}
.logo-tag {
  background: linear-gradient(135deg, var(--yellow-primary), #FFB800);
  color: #0B4627;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 4px;
  display: inline-block;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-header {
  height: 40px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.side-drawer-btn.btn-header {
  background: #F1F5F9;
  color: var(--text-main);
  border: 1px solid #CBD5E1;
}
.side-drawer-btn.btn-header:hover {
  background: var(--green-primary);
  color: #FFF;
  border-color: var(--green-primary);
}


/* ==========================================================================
   EDGE-TO-EDGE ULTRA-REALISTIC HERO SLIDER & MOBILE RESPONSIVENESS
   ========================================================================== */

.hero-slider-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: #051A10;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,29,18,0.4) 0%, rgba(5,26,16,0.85) 100%);
  display: flex;
  align-items: center;
}

.slide-content {
  color: #FFFFFF;
  max-width: 820px;
}

.slide-badge {
  background: var(--yellow-primary);
  color: #0B4627;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255,204,0,0.3);
}

.slide-title {
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.slide-desc {
  font-size: 18px;
  color: #E2E8F0;
  line-height: 1.6;
  margin-bottom: 28px;
}

.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 30px;
}

.btn-outline-light {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: #FFFFFF;
  color: #0B4627;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(7,29,18,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.slider-btn:hover {
  background: var(--green-primary);
  color: #FFF;
  border-color: var(--green-primary);
}
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active, .dot:hover {
  width: 32px;
  border-radius: 10px;
  background: var(--yellow-primary);
}

@media (max-width: 768px) {
  .slider-container { height: 500px; }
  .slide-title { font-size: 28px; }
  .slide-desc { font-size: 14px; margin-bottom: 20px; }
  .slider-btn { width: 40px; height: 40px; font-size: 16px; }
  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
}


.hero-slider-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: #051A10;
  margin-bottom: 20px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
