/* ==========================================================================
   BENET CONSULTORIA EMPRESARIAL (BCE) - DESIGN SYSTEM & STYLESHEET
   Paleta: Deep Navy (#081225), Royal Cobalt (#0052CC), Electric Cyan (#00D2FF), 
           Gold/Champagne (#E5A93C), Slate/Gray (#F4F7FB, #64748B)
   Tipografia: Outfit (Headings) & Plus Jakarta Sans (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-dark: #070d19;
  --bg-navy: #0c182e;
  --bg-card: rgba(16, 30, 58, 0.75);
  --bg-card-hover: rgba(22, 42, 80, 0.9);
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  --primary: #0052cc;
  --primary-glow: rgba(0, 82, 204, 0.45);
  --primary-light: #2684ff;
  
  --accent-cyan: #00d2ff;
  --accent-cyan-glow: rgba(0, 210, 255, 0.35);
  
  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-dark: #0f172a;
  --text-dark-muted: #475569;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-bright: rgba(0, 210, 255, 0.28);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px rgba(0, 82, 204, 0.35);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

section, [id] {
  scroll-margin-top: 100px;
}

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

/* Background Gradients */
.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.25) 0%, rgba(0,0,0,0) 70%);
}

.orb-2 {
  top: 40%;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
}

.orb-3 {
  bottom: 10%;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(0,0,0,0) 70%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 60%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-gold {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold-light) 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 880px;
}

.section-padding {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid var(--border-glass-bright);
  border-radius: 999px;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--accent-gold-light);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 13, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.25rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}

.logo-link:hover {
  transform: translateY(-1px);
}

.logo-badge {
  background: linear-gradient(135deg, #0052cc 0%, #00d2ff 100%);
  color: #050b17;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  letter-spacing: 0.08em;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.logo-sub {
  font-size: 0.62rem;
  color: var(--accent-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  padding: 0.4rem 0.15rem;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-cyan-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0066f5 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 82, 204, 0.6);
  background: linear-gradient(135deg, #0047b3 0%, var(--primary-light) 100%);
}

.btn-cyan {
  background: linear-gradient(135deg, #00b4d8 0%, var(--accent-cyan) 100%);
  color: #070d19;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--accent-cyan-glow);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 210, 255, 0.6);
  background: linear-gradient(135deg, #0096c7 0%, #48cae4 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: var(--border-glass);
  backdrop-filter: blur(8px);
}

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

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-pulse {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(0, 210, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 2.2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

/* Hero Sections */
.hero-section {
  padding-top: 140px;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

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

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

.hero-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #cbd5e1;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
}

.metric-item .metric-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.metric-item .metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Visual Hero Mockups / Feature Box */
.hero-visual-card {
  background: linear-gradient(145deg, rgba(16, 30, 58, 0.9) 0%, rgba(8, 18, 37, 0.95) 100%);
  border: 1px solid var(--border-glass-bright);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 82, 204, 0.25);
  position: relative;
}

.hero-image-display {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-glass);
}

.hero-image-display img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-display:hover img {
  transform: scale(1.03);
}

.feature-pill-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  transition: var(--transition);
}

.feature-pill:hover {
  background: rgba(0, 210, 255, 0.06);
  border-color: var(--border-glass-bright);
  transform: translateX(6px);
}

.pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 82, 204, 0.25);
  color: var(--accent-cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Grid System */
.grid-2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.grid-4-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Card Components */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card-service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  border: 1px solid var(--border-glass-bright);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 0.95rem;
}

.feature-list-cross li::before {
  content: '✕';
  color: #ef4444;
}

.profile-card {
  background: linear-gradient(145deg, rgba(16, 30, 58, 0.9) 0%, rgba(8, 18, 37, 0.95) 100%);
  border: 1px solid var(--border-glass-bright);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 82, 204, 0.25);
  transition: var(--transition);
}

.profile-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 210, 255, 0.35);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  color: #ffffff;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.3) 0%, rgba(0, 210, 255, 0.15) 100%);
  border: 1px solid var(--border-glass-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.9rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-bullets {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-bullets li {
  font-size: 0.92rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-bullets li svg, .service-bullets li span {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* Process Timeline */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 0 15px var(--primary-glow);
}

.process-step-card h4 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

/* Authority / About Alex Section */
.authority-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.authority-profile-box {
  background: linear-gradient(145deg, rgba(16, 30, 58, 0.9) 0%, rgba(8, 18, 37, 0.95) 100%);
  border: 1px solid var(--border-glass-bright);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.profile-avatar-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  padding: 5px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
  box-shadow: 0 0 30px var(--primary-glow);
  overflow: hidden;
}

.profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  text-align: left;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glass-bright);
  box-shadow: var(--shadow-glow);
}

.blog-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background-color: var(--bg-navy);
}

.blog-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-tag {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.blog-body p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Legal Pages Styling */
.legal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem 0 4rem 0;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  color: var(--accent-cyan);
}

.legal-content p, .legal-content li {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.8rem;
}

.faq-item.active {
  border-color: var(--border-glass-bright);
  background: var(--bg-card-hover);
}

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

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.35) 0%, rgba(0, 210, 255, 0.15) 100%);
  border: 1px solid var(--border-glass-bright);
  border-radius: 24px;
  padding: 4.5rem 3rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 82, 204, 0.3);
  position: relative;
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: #040913;
  border-top: 1px solid var(--border-glass);
  padding: 4.5rem 0 2rem 0;
}

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

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  color: #ffffff;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Floating WhatsApp Button */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: var(--transition);
  animation: waPulse 2s infinite;
}

.whatsapp-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

@keyframes waPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive Styles & Mobile UX System */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 8, 16, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1140px) {
  .nav-wrap {
    height: 75px;
  }

  .nav-links {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(6, 12, 23, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 2rem 1.75rem;
    gap: 0.9rem;
    border-bottom: 1px solid var(--border-glass-bright);
    box-shadow: 0 25px 50px rgba(0,0,0,0.85);
    display: none;
    z-index: 999;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }
  
  .nav-links.show {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

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

  .nav-links .nav-link {
    font-size: 1.05rem;
    padding: 0.75rem 0.5rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
  }

  .mobile-toggle:hover {
    background: rgba(0, 210, 255, 0.15);
    border-color: var(--accent-cyan);
  }
}

@media (max-width: 1024px) {
  .hero-grid, .authority-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-padding {
    padding: 4.5rem 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 105px;
    padding-bottom: 3.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }
  
  .section-padding {
    padding: 3.5rem 0;
  }

  .glass-card, .card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .services-grid, .blog-grid, .grid-2-cols, .grid-3-cols, .grid-4-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trust-metrics {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  
  .cta-banner {
    padding: 2.5rem 1.25rem;
    border-radius: 18px;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
  }
  
  .legal-content {
    padding: 1.4rem;
    border-radius: 14px;
  }

  .faq-question {
    padding: 1.1rem 1.2rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.2rem;
  }

  .whatsapp-floating-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .logo-badge {
    font-size: 0.95rem;
    padding: 0.25rem 0.55rem;
  }

  .logo-sub {
    font-size: 0.6rem;
  }
}

@media (max-width: 650px) {
  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-visual-card {
    padding: 1.2rem;
    border-radius: 18px;
  }

  .metric-item .metric-num {
    font-size: 1.8rem;
  }
}
