/* ==========================================================================
   RISORA DIGITAL — UI COMPONENTS & RESPONSIVE LAYOUTS (ENHANCED V3)
   Fixes Mobile Header Collisions & Social Icon Vector Rendering
   ========================================================================== */

/* --- 1. HEADER & NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-color var(--transition-normal), padding var(--transition-normal);
  padding: 1.15rem 0;
  background: rgba(6, 8, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(6, 8, 20, 0.96);
  border-bottom-color: rgba(217, 70, 239, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  z-index: 1001;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(217, 70, 239, 0.3));
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-name span {
  color: var(--color-secondary);
}

.brand-tagline-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

/* Desktop Nav Menu */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  color: #CBD5E1;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--text-accent);
}

.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(11, 14, 38, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 70, 239, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  min-width: 320px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(121, 40, 202, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-normal);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.dropdown-link:hover, .dropdown-link.active {
  background: rgba(217, 70, 239, 0.12);
  color: #FFFFFF;
  transform: translateX(4px);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.dropdown-link:hover .dropdown-icon {
  background: var(--grad-brand);
  color: #FFFFFF;
  border-color: transparent;
}

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

.dropdown-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: #F8FAFC;
}

.dropdown-desc {
  font-size: 0.725rem;
  color: var(--text-muted);
}

.dropdown-footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-accent);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile Toggle Trigger */
.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
  color: #FFFFFF;
  flex-shrink: 0;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  display: block;
  height: 2px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--color-secondary);
}
.mobile-toggle-btn.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-toggle-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--color-secondary);
}

/* Mobile Drawer (Clean, Uncluttered Top Bar) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #080B1A;
  border-left: 1px solid rgba(217, 70, 239, 0.3);
  padding: 5.5rem 1.75rem 2rem;
  overflow-y: auto;
  z-index: 999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.85);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-drawer.open { right: 0; }

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.active { opacity: 1; visibility: visible; }

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #F8FAFC;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  background: rgba(217, 70, 239, 0.12);
  color: var(--text-accent);
}

.mobile-submenu {
  display: none;
  padding: 0.4rem 0 0.4rem 1.25rem;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-submenu.show { display: flex; }

.mobile-sub-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-sub-link.active { color: var(--text-accent); font-weight: 600; }

.mobile-drawer-footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* --- 2. BUTTON SYSTEM --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.65rem;
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform var(--transition-fast);
}

.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--grad-brand);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(217, 70, 239, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(217, 70, 239, 0.55);
  color: #FFFFFF;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(217, 70, 239, 0.5);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #FFFFFF;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-email {
  background: rgba(59, 130, 246, 0.15);
  color: #FFFFFF;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.btn-email:hover {
  background: #3B82F6;
  color: #FFFFFF;
  border-color: #3B82F6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.btn-outline-glow {
  background: transparent;
  color: var(--text-accent);
  border: 1px solid rgba(217, 70, 239, 0.4);
}

.btn-outline-glow:hover {
  background: rgba(217, 70, 239, 0.1);
  border-color: var(--color-secondary);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(217, 70, 239, 0.25);
}

.btn-sm { padding: 0.5rem 1.15rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2.15rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* --- 3. CARDS & SURFACES --- */
.card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  position: relative;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card:hover {
  background: var(--bg-surface-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(217, 70, 239, 0.12);
}

.card-glass {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.card-elevated {
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- 4. HERO SYSTEM --- */
.hero {
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.95rem;
  background: rgba(121, 40, 202, 0.15);
  border: 1px solid rgba(217, 70, 239, 0.35);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 600;
  color: #F5D0FE;
  margin-bottom: 1.25rem;
}

.badge-pulse-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulseGlow 2s infinite;
}

.hero-title { margin-bottom: 1.25rem; }

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.62;
  color: #CBD5E1;
  margin-bottom: 1.85rem;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94A3B8;
}

.highlight-icon { color: var(--color-secondary); display: flex; }

.hero-visual-card {
  position: relative;
  background: linear-gradient(145deg, rgba(23, 29, 74, 0.75), rgba(11, 14, 38, 0.92));
  border: 1px solid rgba(217, 70, 239, 0.3);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(121, 40, 202, 0.2);
  backdrop-filter: blur(20px);
}

.hero-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.15rem;
}

.mockup-dots { display: flex; gap: 6px; }
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.mockup-badge {
  font-size: 0.725rem;
  font-weight: 700;
  color: #38BDF8;
  background: rgba(56, 189, 248, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.85rem;
  border-radius: var(--radius-md);
}

.stat-label {
  font-size: 0.725rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
}

.stat-change {
  font-size: 0.725rem;
  color: #10B981;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.2rem;
}

.hero-chart-preview {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.65rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  gap: 6px;
}

.chart-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  transition: all 0.5s ease;
}

.chart-bar.active {
  background: var(--grad-brand);
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.4);
}

.floating-badge {
  position: absolute;
  background: rgba(11, 14, 38, 0.95);
  border: 1px solid rgba(217, 70, 239, 0.4);
  backdrop-filter: blur(12px);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
}

.badge-float-1 { top: -18px; right: -18px; animation: floatSlow 5s ease-in-out infinite; }
.badge-float-2 { bottom: -20px; left: -20px; animation: floatSlow 6s ease-in-out infinite 1s; }

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-roas { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.icon-global { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }

.float-text-title { font-size: 0.775rem; font-weight: 700; color: #FFFFFF; }
.float-text-sub { font-size: 0.675rem; color: var(--text-muted); }

/* --- 5. TRUST STRIP --- */
.trust-strip {
  background: rgba(11, 14, 38, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.85rem 0;
}

.trust-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.trust-platforms-title {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.platforms-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.platform-item svg { width: 20px; height: 20px; fill: currentColor; }
.platform-item:hover { color: #FFFFFF; }

/* --- 6. STRATEGY ROADMAP DIAGRAM (BRAND MATCHING & NO SCROLLBAR) --- */
.roadmap-diagram-container {
  width: 100%;
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden; /* Zero horizontal scrollbar */
}

.roadmap-diagram-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.roadmap-diagram-step {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.roadmap-circle-card {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  background: rgba(11, 14, 38, 0.92);
  border: 2px solid rgba(217, 70, 239, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(217, 70, 239, 0.08);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0.75rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.roadmap-circle-card.border-top-dashed {
  border-top-style: dashed;
  border-top-color: #D946EF;
}

.roadmap-circle-card.border-bottom-dashed {
  border-bottom-style: dashed;
  border-bottom-color: #D946EF;
}

.roadmap-circle-card:hover {
  border-color: #D946EF;
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 15px 35px rgba(217, 70, 239, 0.35), inset 0 0 25px rgba(217, 70, 239, 0.2);
}

.roadmap-circle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(217, 70, 239, 0.12);
  border: 1px solid rgba(217, 70, 239, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D946EF;
  margin-bottom: 0.35rem;
  transition: all var(--transition-fast);
}

.roadmap-circle-card:hover .roadmap-circle-icon {
  background: var(--grad-brand);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.5);
}

.roadmap-circle-title {
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  line-height: 1.15;
}

.roadmap-circle-divider {
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D946EF, transparent);
  margin: 0.25rem 0;
}

.roadmap-circle-desc {
  font-size: 0.7rem;
  color: var(--text-secondary);
  line-height: 1.4;
  max-width: 155px;
}

.roadmap-step-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(217, 70, 239, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.badge-top { top: -15px; }
.badge-bottom { bottom: -15px; }

/* Connecting Arrow between steps */
.roadmap-connecting-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(217, 70, 239, 0.15);
  border: 1px solid rgba(217, 70, 239, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D946EF;
  z-index: 4;
}

.roadmap-connecting-arrow svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

/* Big Checkmark Badge at Goal (Circle 05) matching brand gradient */
.roadmap-goal-checkmark {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(217, 70, 239, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotate(12deg);
  z-index: 3;
}

.roadmap-goal-checkmark svg {
  width: 24px;
  height: 24px;
}

/* Responsive Grid without scrollbars */
@media (max-width: 1100px) {
  .roadmap-diagram-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
  .roadmap-connecting-arrow { display: none; }
}

@media (max-width: 768px) {
  .roadmap-diagram-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0.5rem;
  }
  .roadmap-circle-card {
    width: 168px;
    height: 168px;
    padding: 1rem 0.5rem;
  }
  .roadmap-circle-desc { font-size: 0.65rem; max-width: 135px; }
  .roadmap-circle-title { font-size: 0.725rem; }
}

@media (max-width: 480px) {
  .roadmap-diagram-flow {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .roadmap-circle-card {
    width: 200px;
    height: 200px;
  }
  .roadmap-circle-desc { font-size: 0.725rem; max-width: 160px; }
  .roadmap-circle-title { font-size: 0.8rem; }
}

/* --- 7. SYNERGY GRID --- */
.synergy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.synergy-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  transition: all var(--transition-normal);
}

.synergy-card:hover {
  border-color: rgba(217, 70, 239, 0.35);
  transform: translateY(-4px);
}

.synergy-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(217, 70, 239, 0.12);
  border: 1px solid rgba(217, 70, 239, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  margin-bottom: 1.15rem;
}

.synergy-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

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

/* --- 8. SERVICES CARDS --- */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 70, 239, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 22px rgba(217, 70, 239, 0.15);
}

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

.service-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(217, 70, 239, 0.1);
  border: 1px solid rgba(217, 70, 239, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--grad-brand);
  color: #FFFFFF;
  transform: scale(1.06);
}

.service-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.15);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: #FFFFFF;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: #CBD5E1;
}

.service-feature-item svg {
  width: 13px;
  height: 13px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-accent);
  transition: all var(--transition-fast);
}

.service-card-btn:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* --- 9. STORYTELLING CASE STUDIES --- */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--grad-brand);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(217, 70, 239, 0.35);
}

.case-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 70, 239, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.case-thumb-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0d122b;
}

.case-metric-tag {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  background: rgba(11, 14, 38, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  color: #38BDF8;
}

.case-card-body {
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-category {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.case-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
}

.case-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.58;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* --- 10. TESTIMONIALS SLIDER --- */
.testimonials-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-slide-card {
  background: linear-gradient(145deg, rgba(23, 29, 74, 0.55), rgba(11, 14, 38, 0.85));
  border: 1px solid rgba(217, 70, 239, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  color: #FBBF24;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: #F1F5F9;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.client-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.client-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #FFFFFF;
  font-size: 1.05rem;
}

.client-details { text-align: left; }
.client-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: #FFFFFF; }
.client-role { font-size: 0.825rem; color: var(--text-muted); }

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-secondary);
  width: 28px;
  border-radius: 5px;
}

/* --- 11. LIVE CLIENT METRICS & SATISFACTION STATS --- */
.stats-banner-card {
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.25), rgba(11, 14, 38, 0.85), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(217, 70, 239, 0.35);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

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

.stat-counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
}

.stat-counter-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.stat-counter-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* --- 12. FAQ ACCORDION --- */
.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-card:hover { border-color: rgba(217, 70, 239, 0.3); }

.faq-header-btn {
  width: 100%;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #F8FAFC;
  transition: color var(--transition-fast);
}

.faq-header-btn:hover { color: var(--text-accent); }

.faq-icon-cross {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  color: var(--color-secondary);
}

.faq-card.active .faq-icon-cross { transform: rotate(45deg); }

.faq-body-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-card.active .faq-body-content { padding-bottom: 1.35rem; }

.faq-answer-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- 13. CONTACT FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-top: 1.75rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(217, 70, 239, 0.1);
  border: 1px solid rgba(217, 70, 239, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.775rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-info-value { font-size: 0.95rem; color: #FFFFFF; font-weight: 500; }
.contact-info-value a:hover { color: var(--text-accent); }

.form-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
}

.form-group { margin-bottom: 1.35rem; }

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 0.45rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 0.925rem;
  transition: all var(--transition-fast);
}

.form-select option { background: #0B0E23; color: #FFFFFF; }

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.25);
}

.form-textarea { min-height: 110px; resize: vertical; }
.form-pills-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.service-pill-checkbox { display: none; }

.pill-label {
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.service-pill-checkbox:checked + .pill-label {
  background: rgba(217, 70, 239, 0.2);
  border-color: var(--color-secondary);
  color: #FFFFFF;
}

.form-toast {
  display: none;
  padding: 0.85rem 1.15rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  border-radius: var(--radius-md);
  color: #6EE7B7;
  font-size: 0.9rem;
  margin-top: 1.25rem;
}

.form-toast.error {
  background: rgba(239, 68, 68, 0.15);
  border-color: #EF4444;
  color: #FCA5A5;
}

/* --- 14. GLOBAL CTA BANNER --- */
.global-cta-section { position: relative; overflow: hidden; }

.cta-banner-box {
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.4), rgba(217, 70, 239, 0.25), rgba(11, 14, 38, 0.92));
  border: 1px solid rgba(217, 70, 239, 0.4);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(217, 70, 239, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-banner-content { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.cta-banner-title { font-size: clamp(1.85rem, 3.2vw, 2.75rem); font-weight: 800; color: #FFFFFF; margin-bottom: 1.15rem; }
.cta-banner-desc { font-size: 1.08rem; color: #E2E8F0; margin-bottom: 1.85rem; line-height: 1.62; }

.cta-btns-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

/* --- 15. FOOTER & SOCIAL ICONS (CRISTAL CLEAR VECTOR FIX) --- */
.site-footer {
  background: #04050E;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 4.5rem;
  padding-bottom: 2.25rem;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.62;
  margin-top: 1.15rem;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links-list { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-link-item a {
  font-size: 0.885rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-link-item a:hover {
  color: var(--text-accent);
  transform: translateX(4px);
}

.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-contact-row svg {
  width: 16px;
  height: 16px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links-row { display: flex; align-items: center; gap: 0.65rem; margin-top: 1.25rem; }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E2E8F0;
  transition: all var(--transition-fast);
}

/* Explicit SVG rendering for line and fill icons */
.social-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.social-btn:hover {
  background: var(--grad-brand);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 18px rgba(217, 70, 239, 0.45);
}

.social-btn:hover svg {
  transform: scale(1.1);
}

.remote-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.725rem;
  font-weight: 700;
  color: #34D399;
  margin-top: 0.85rem;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 1.25rem;
}

.copyright-text { font-size: 0.825rem; color: var(--text-muted); }
.footer-legal-links { display: flex; align-items: center; gap: 1.25rem; }
.footer-legal-links a { font-size: 0.825rem; color: var(--text-muted); }
.footer-legal-links a:hover { color: #FFFFFF; }

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-normal);
}

.back-to-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(217, 70, 239, 0.6); }

/* --- 16. RESPONSIVE BREAKPOINTS & MOBILE FIXES --- */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual-card { max-width: 600px; margin: 0 auto; }
  .strategy-roadmap { grid-template-columns: repeat(3, 1fr); }
  .synergy-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-top-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .mobile-toggle-btn { display: block; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .strategy-roadmap { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Header Clean Fix: Eliminates Header Overlap Shown in User Screenshot */
@media (max-width: 768px) {
  .brand-tagline-sub { display: none; } /* Hide secondary tagline on mobile header */
  .brand-name { font-size: 1.05rem; }
  .brand-logo-img { height: 34px; }
  
  /* Hide top header CTA button on mobile bar so ONLY Logo + Hamburger are displayed */
  .nav-actions .btn { display: none; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .strategy-roadmap { grid-template-columns: 1fr; }
  .synergy-grid { grid-template-columns: 1fr; }
  .stats-counter-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner-box { padding: 2.25rem 1.25rem; }
  .hero { padding-top: 6.5rem; padding-bottom: 3rem; }
  .hero-highlights { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .testimonial-slide-card { padding: 1.85rem 1.15rem; }
  .badge-float-1, .badge-float-2 { display: none; }
  .footer-bottom-row { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .hero-cta-group { flex-direction: column; width: 100%; gap: 0.75rem; }
  .trust-wrapper { flex-direction: column; text-align: center; gap: 1rem; }
  .platforms-list { justify-content: center; gap: 0.85rem; flex-wrap: wrap; }
  .section { padding-top: 3rem; padding-bottom: 3rem; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 1.8rem; }
  .card { padding: 1.35rem 1rem; }
  .social-links-row { justify-content: center; gap: 0.75rem; }
  .footer-contact-row { word-break: break-word; }
}
