/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --brand-blue: #1ca5f5;
  --brand-blue-glow: rgba(28, 165, 245, 0.15);
  --brand-blue-hover: #0d8fe0;
  
  --bg-dark-deep: #060a12;
  --bg-dark-main: #0a0f1d;
  --bg-dark-card: rgba(15, 23, 42, 0.55);
  --bg-dark-card-hover: rgba(22, 32, 58, 0.75);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-inverse: #0f172a;
  
  --border-light: rgba(255, 255, 255, 0.07);
  --border-active: rgba(28, 165, 245, 0.35);
  --border-active-solid: #1ca5f5;
  
  /* Status Colors */
  --status-green: #10b981;
  --status-yellow: #f59e0b;
  --status-red: #ef4444;
  --status-orange: #f97316;
  
  /* Fonts */
  --font-title: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-in-out;
}

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

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

body {
  background-color: var(--bg-dark-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

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

/* ==========================================================================
   BACKGROUND GLOW DECORATIONS
   ========================================================================== */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-blue-glow) 0%, rgba(28, 165, 245, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

.bg-glow-1 {
  top: 5%;
  right: -10%;
}

.bg-glow-2 {
  top: 35%;
  left: -15%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0) 70%);
}

.bg-glow-3 {
  bottom: 10%;
  right: -5%;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

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

.section-header {
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-title span {
  color: var(--brand-blue);
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--brand-blue);
  color: var(--text-main);
  box-shadow: 0 4px 20px rgba(28, 165, 245, 0.3);
}

.btn-primary:hover {
  background-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(28, 165, 245, 0.45);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(6, 10, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Recreated Brand Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  font-family: var(--font-title);
  font-weight: 900;
  letter-spacing: -1.2px;
}

.logo-top {
  font-size: 1.45rem;
  color: var(--text-main);
}

.logo-bottom {
  font-size: 1.45rem;
  color: var(--text-main);
}

.logo-dot {
  color: var(--brand-blue);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-item:hover {
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-btn-primary {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: rgba(28, 165, 245, 0.15);
  border: 1px solid var(--brand-blue);
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.nav-btn-primary:hover {
  background-color: var(--brand-blue);
  box-shadow: 0 4px 15px rgba(28, 165, 245, 0.25);
}

/* Hamburger Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 105;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Responsive Menu Helpers */
.mobile-only {
  display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 10rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-blue);
  background-color: rgba(28, 165, 245, 0.08);
  border: 1px solid rgba(28, 165, 245, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--brand-blue);
  background: linear-gradient(135deg, #ffffff 40%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 38rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.hero-stats-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1.2;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ==========================================================================
   INTERACTIVE DASHBOARD MOCKUP
   ========================================================================== */
.hero-visual {
  position: relative;
  width: 100%;
}

.dashboard-mockup {
  background-color: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.dashboard-mockup:hover {
  border-color: var(--border-active);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
              0 0 30px var(--brand-blue-glow);
}

/* Mockup Header */
.mockup-header {
  background-color: rgba(6, 10, 18, 0.4);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.mockup-dots {
  display: flex;
  gap: 0.35rem;
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background-color: var(--status-red); }
.dot-yellow { background-color: var(--status-yellow); }
.dot-green { background-color: var(--status-green); }

.mockup-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.mockup-tabs {
  display: flex;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  padding: 0.2rem;
  border: 1px solid var(--border-light);
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active {
  background-color: var(--brand-blue);
  color: var(--text-main);
}

/* Mockup Body */
.mockup-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.mockup-card {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  transition: var(--transition-smooth);
}

.card-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-value {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0.4rem 0;
  transition: var(--transition-smooth);
}

.card-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.trend-icon {
  width: 14px;
  height: 14px;
}

.trend-up {
  color: var(--status-green);
}

.trend-down {
  color: var(--status-red);
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.6rem;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--brand-blue);
  border-radius: 10px;
  transition: width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Card Ads */
.card-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

.ads-chart-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  height: 50px;
  align-items: flex-end;
}

.chart-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.chart-bar-wrap span {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.chart-bar {
  width: 100%;
  background-color: rgba(28, 165, 245, 0.3);
  border-radius: 3px 3px 0 0;
  transition: height 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s;
}

.tab-despues-active .chart-bar {
  background-color: var(--brand-blue);
  box-shadow: 0 0 10px rgba(28, 165, 245, 0.4);
}

/* Card Reputation */
.rep-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
  margin: 0.4rem 0;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.status-yellow {
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--status-yellow);
}

.status-green-platinum {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--status-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.rep-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.thermometer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
  height: 6px;
  width: 100%;
}

.thermo-block {
  height: 100%;
  border-radius: 2px;
  opacity: 0.25;
  transition: var(--transition-smooth);
}

.thermo-block.active {
  opacity: 1;
  box-shadow: 0 0 8px currentColor;
}

.thermo-red { background-color: var(--status-red); color: var(--status-red); }
.thermo-orange { background-color: var(--status-orange); color: var(--status-orange); }
.thermo-yellow { background-color: var(--status-yellow); color: var(--status-yellow); }
.thermo-lightgreen { background-color: #84cc16; color: #84cc16; }
.thermo-green { background-color: var(--status-green); color: var(--status-green); }

/* Graph Card Highlight */
.mockup-graph-card {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem;
}

.graph-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.graph-info {
  display: flex;
  flex-direction: column;
}

.graph-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
}

.graph-sub {
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.1rem;
  transition: var(--transition-smooth);
}

.graph-status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.status-alert {
  background-color: rgba(239, 68, 68, 0.15);
  color: var(--status-red);
}

.status-optimal {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--status-green);
}

.graph-visual-area {
  position: relative;
  height: 70px;
  width: 100%;
}

.graph-svg {
  width: 100%;
  height: 100%;
}

.graph-line {
  transition: d 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.graph-area {
  transition: d 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   WHY ACTIVE MANAGEMENT / COMPARISON SECTION
   ========================================================================== */
.why-active-section {
  padding: 6rem 0;
  background-color: rgba(6, 10, 18, 0.4);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.comparison-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.comparison-card.active {
  border-color: var(--border-active);
  box-shadow: 0 10px 30px rgba(28, 165, 245, 0.08);
}

.comparison-card.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--brand-blue);
  border-radius: 16px 16px 0 0;
}

.popular-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: var(--brand-blue);
  color: var(--text-main);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comp-card-header {
  margin-bottom: 2rem;
}

.comp-card-header h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.comp-card-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comp-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.comp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.icon-x {
  color: var(--status-red);
}

.icon-check {
  color: var(--status-green);
}

.comp-list li span {
  color: var(--text-muted);
}

.comparison-card.active .comp-list li span {
  color: var(--text-main);
}

/* ==========================================================================
   SERVICES PILLARS SECTION (6 PILLARS)
   ========================================================================== */
.services-section {
  padding: 8rem 0;
}

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

.service-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--x, 0) var(--y, 0), rgba(28, 165, 245, 0.05), transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 
              0 0 20px rgba(28, 165, 245, 0.05);
  background-color: var(--bg-dark-card-hover);
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(28, 165, 245, 0.08);
  border: 1px solid rgba(28, 165, 245, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--brand-blue);
  color: var(--text-main);
  box-shadow: 0 0 15px rgba(28, 165, 245, 0.35);
}

.service-icon {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   METHODOLOGY SECTION (TIMELINE)
   ========================================================================== */
.methodology-section {
  padding: 8rem 0;
  background-color: rgba(6, 10, 18, 0.3);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2.25rem;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-blue) 0%, rgba(28, 165, 245, 0.1) 100%);
}

.timeline-item {
  position: relative;
  padding-left: 6rem;
  margin-bottom: 3.5rem;
}

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

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--bg-dark-deep);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--brand-blue);
  z-index: 2;
  box-shadow: 0 0 0 8px var(--bg-dark-deep);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-number {
  border-color: var(--brand-blue);
  box-shadow: 0 0 15px rgba(28, 165, 245, 0.25), 0 0 0 8px var(--bg-dark-deep);
}

.timeline-content {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
  border-color: var(--border-active);
  transform: translateX(5px);
}

.timeline-content h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */
.contact-section {
  padding: 8rem 0;
}

.contact-card-wrapper {
  position: relative;
  margin-top: 2rem;
}

.contact-card-wrapper::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;
  background: radial-gradient(circle, rgba(28, 165, 245, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.contact-card {
  background-color: var(--bg-dark-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
  transition: var(--transition-smooth);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input, 
.form-group textarea {
  background-color: rgba(6, 10, 18, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
  color: #475569;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(28, 165, 245, 0.15);
  background-color: rgba(6, 10, 18, 0.8);
}

.form-footer {
  margin-top: 2rem;
}

/* Spinner for button */
.btn-spinner {
  width: 20px;
  height: 20px;
  margin-left: 0.75rem;
  animation: rotate 1s linear infinite;
}

.opacity-25 { opacity: 0.25; }
.opacity-75 { opacity: 0.75; }

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.hidden {
  display: none !important;
}

/* Success Message Area */
.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--status-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--status-green);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.success-icon {
  width: 36px;
  height: 36px;
}

.success-message h3 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.85rem;
  color: var(--text-main);
}

.success-message p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-section {
  background-color: var(--bg-dark-deep);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 3rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-desc {
  color: var(--text-muted);
  max-width: 20rem;
}

.footer-links-group h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-contact-info {
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.copyright {
  color: var(--text-muted);
  font-weight: 500;
}

.disclaimer {
  font-size: 0.75rem;
  color: #475569;
  max-width: 54rem;
  line-height: 1.5;
}

/* ==========================================================================
   WAREHOUSE & LOGISTICS SECTION
   ========================================================================== */
.warehouse-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-light);
  background: radial-gradient(circle at 85% 50%, var(--brand-blue-glow) 0%, transparent 60%);
  position: relative;
}

.warehouse-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.warehouse-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.text-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 2.5rem;
}

.warehouse-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(28, 165, 245, 0.08);
  border: 1px solid rgba(28, 165, 245, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Warehouse Card & Map Mockup */
.warehouse-visual {
  width: 100%;
}

.warehouse-card {
  background-color: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.warehouse-card:hover {
  border-color: var(--border-active);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--brand-blue-glow);
}

.card-visual-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-blue);
  background-color: rgba(28, 165, 245, 0.08);
  border: 1px solid rgba(28, 165, 245, 0.2);
  border-radius: 30px;
}

.warehouse-map-mock {
  position: relative;
  height: 190px;
  background-color: rgba(6, 10, 18, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.map-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(28, 165, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 165, 245, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radar-point {
  width: 10px;
  height: 10px;
  background-color: var(--brand-blue);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--brand-blue);
  z-index: 2;
}

.radar-ring {
  border: 1.5px solid var(--brand-blue);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: radar-pulse 3s infinite linear;
}

.radar-ring.r1 {
  width: 30px;
  height: 30px;
  animation-delay: 0s;
}

.radar-ring.r2 {
  width: 60px;
  height: 60px;
  animation-delay: 1.5s;
}

@keyframes radar-pulse {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0.8;
  }
  100% {
    width: 130px;
    height: 130px;
    opacity: 0;
  }
}

.map-info-box {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background-color: rgba(6, 10, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.info-value {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 0.1rem;
}

.info-sub {
  font-size: 0.7rem;
  color: var(--brand-blue);
  font-weight: 500;
}

.warehouse-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding-top: 0.5rem;
}

.w-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.w-stat-val {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1.2;
}

.w-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

.w-stat-divider {
  width: 1px;
  height: 24px;
  background-color: var(--border-light);
}

/* ==========================================================================
   ABOUT US / TEAM SECTION
   ========================================================================== */
.about-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-light);
  background: radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.team-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 1025px) {
  .team-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .team-grid .team-card:nth-child(1),
  .team-grid .team-card:nth-child(2),
  .team-grid .team-card:nth-child(3) {
    grid-column: span 2;
  }
  .team-grid .team-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .team-grid .team-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.team-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px var(--brand-blue-glow);
  background-color: var(--bg-dark-card-hover);
}

.team-avatar-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
}

.team-avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-main);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.team-avatar-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-card:hover .team-avatar-placeholder {
  border-color: var(--brand-blue);
  box-shadow: 0 8px 20px var(--brand-blue-glow);
  transform: scale(1.05);
}

/* Custom Gradients for Team Placeholders */
.gradient-1 { background: linear-gradient(135deg, #2563eb, #1d4ed8); } /* Blue */
.gradient-2 { background: linear-gradient(135deg, #059669, #047857); } /* Emerald */
.gradient-3 { background: linear-gradient(135deg, #7c3aed, #6d28d9); } /* Purple */
.gradient-4 { background: linear-gradient(135deg, #db2777, #be185d); } /* Pink */
.gradient-5 { background: linear-gradient(135deg, #d97706, #b45309); } /* Amber */

.team-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .warehouse-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding-top: 8rem;
  }
  
  /* Navigation Mobile */
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(6, 10, 18, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    z-index: 100;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .mobile-only {
    display: inline-flex;
  }
  
  .desktop-only {
    display: none;
  }
  
  /* Content Grids */
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-card {
    padding: 2rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .timeline::before {
    left: 1.5rem;
  }
  
  .timeline-item {
    padding-left: 4rem;
  }
  
  .timeline-number {
    width: 3rem;
    height: 3rem;
    font-size: 0.95rem;
    left: 0;
    box-shadow: 0 0 0 5px var(--bg-dark-deep);
  }
}
