/* ==========================================================================
   NEXO OFFICIAL — ALL-IN-ONE MASTER DESIGN SYSTEM & COMPONENTS
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --nexo-lime: #00FF66;
  --nexo-lime-hover: #10E560;
  --nexo-lime-bright: #39FF88;
  --nexo-lime-muted: #00CC4E;
  --nexo-lime-glow: rgba(0, 255, 102, 0.28);
  --nexo-lime-subtle: rgba(0, 255, 102, 0.08);
  --nexo-lime-border: rgba(0, 255, 102, 0.2);
  --nexo-lime-border-hover: rgba(0, 255, 102, 0.6);

  /* Dark Theme Surfaces */
  --bg-deep: #070907;
  --bg-canvas: #0B0E0B;
  --bg-surface: #111712;
  --bg-surface-elevated: #161F17;
  --bg-card: rgba(18, 25, 19, 0.85);
  --bg-card-hover: rgba(22, 33, 24, 0.95);
  --bg-glass: rgba(13, 18, 14, 0.8);

  /* Text & Accents */
  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --text-dark: #050805;

  /* Borders & Dividers */
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(0, 255, 102, 0.15);
  --border-glass-strong: rgba(0, 255, 102, 0.35);

  /* Status Colors */
  --status-success: #00FF66;
  --status-warning: #F59E0B;
  --status-danger: #EF4444;
  --status-info: #3B82F6;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
  --shadow-lime-sm: 0 0 15px rgba(0, 255, 102, 0.2);
  --shadow-lime-md: 0 0 30px rgba(0, 255, 102, 0.3);
  --shadow-lime-lg: 0 0 50px rgba(0, 255, 102, 0.45);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(0, 255, 102, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 102, 0.02) 1px, transparent 1px);
  background-size: 45px 45px;
  pointer-events: none;
  z-index: -2;
}

.ambient-glow-top {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  max-width: 100vw;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.13) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

.ambient-glow-bottom {
  position: fixed;
  bottom: -200px;
  right: 0;
  width: 600px;
  max-width: 100vw;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box;
}

/* Containers & Grids */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.container-sm {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-spacing {
  padding: 5.5rem 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.section-spacing-lg {
  padding: 7.5rem 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.section-spacing-sm {
  padding: 3.5rem 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  width: 100%;
  box-sizing: border-box;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

/* Headings & Badges */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.text-lime {
  color: var(--nexo-lime) !important;
}

.badge-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--nexo-lime-border);
  color: var(--nexo-lime);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.08);
  max-width: 100%;
  white-space: normal;
}

.badge-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--nexo-lime);
  box-shadow: 0 0 8px var(--nexo-lime);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin: 0.75rem 0 1rem 0;
  text-transform: uppercase;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-lime {
  background-color: var(--nexo-lime);
  color: var(--text-dark);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.35);
}

.btn-lime:hover {
  background-color: var(--nexo-lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
  color: var(--text-dark);
}

.btn-outline-lime {
  background-color: transparent;
  border: 1px solid var(--nexo-lime);
  color: var(--nexo-lime);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.1);
}

.btn-outline-lime:hover {
  background-color: var(--nexo-lime);
  color: var(--text-dark);
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.45);
  transform: translateY(-2px);
}

.btn-glass {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-dark);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  border-color: var(--nexo-lime-border);
  color: var(--nexo-lime);
  background-color: var(--bg-surface-elevated);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lime-sm);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 9, 7, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.site-header.scrolled {
  background: rgba(7, 9, 7, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid var(--nexo-lime-border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  width: 100%;
  box-sizing: border-box;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--nexo-lime) 0%, #051A0B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-weight: 900;
  font-size: 1.3rem;
  border: 1px solid var(--nexo-lime);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
  flex-shrink: 0;
}

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

.logo-text .title {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.logo-text .subtitle {
  color: var(--nexo-lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--nexo-lime);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--nexo-lime);
  box-shadow: 0 0 8px var(--nexo-lime);
  transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.cart-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.cart-icon-btn:hover {
  border-color: var(--nexo-lime);
  color: var(--nexo-lime);
  box-shadow: var(--shadow-lime-sm);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--nexo-lime);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.6);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-shrink: 0;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background-color: var(--nexo-lime); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background-color: var(--nexo-lime); }

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: rgba(11, 15, 12, 0.98);
  backdrop-filter: blur(25px);
  border-left: 1px solid var(--border-glass-strong);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 5.5rem 2rem 2rem 2rem;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  box-sizing: border-box;
}

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

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav-backdrop.show { opacity: 1; pointer-events: auto; }

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links .nav-link { font-size: 1.1rem; }

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

/* Hero */
.hero-section {
  position: relative;
  padding: 7.5rem 0 5.5rem 0;
  text-align: center;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

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

.hero-title-main {
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.hero-title-sub {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--nexo-lime);
  text-shadow: 0 0 35px rgba(0, 255, 102, 0.45);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.hero-description {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
  padding: 0 0.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  width: 100%;
}

.hero-trust-bar {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  width: 100%;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.hero-trust-item i { color: var(--nexo-lime); }

/* The 3 Main Centerpiece Boxes */
.three-boxes-section {
  position: relative;
  padding: 5rem 0 6rem 0;
  width: 100%;
  box-sizing: border-box;
}

.boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

.main-service-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--nexo-lime-border);
  border-radius: var(--radius-xl);
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-spring);
  overflow: hidden;
  text-decoration: none;
  min-height: 440px;
  width: 100%;
  box-sizing: border-box;
}

.main-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 255, 102, 0.12) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.6;
}

.main-service-card:hover {
  transform: translateY(-10px);
  border-color: var(--nexo-lime);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 255, 102, 0.35);
}

.card-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.card-index-label {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--nexo-lime);
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--nexo-lime-border);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
}

.card-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(0, 255, 102, 0.07);
  border: 1px solid var(--nexo-lime-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nexo-lime);
  font-size: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.main-service-card:hover .card-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--nexo-lime);
  color: var(--text-dark);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
}

.card-content { margin-bottom: 2rem; }
.card-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.card-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.card-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.4rem;
  background: rgba(0, 255, 102, 0.06);
  border: 1px solid var(--nexo-lime-border);
  border-radius: var(--radius-md);
  color: var(--nexo-lime);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.card-cta-btn i { transition: transform var(--transition-normal); }
.main-service-card:hover .card-cta-btn {
  background: var(--nexo-lime);
  color: var(--text-dark);
  border-color: var(--nexo-lime);
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.45);
}
.main-service-card:hover .card-cta-btn i { transform: translateX(6px); }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.stat-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.stat-box:hover {
  border-color: var(--nexo-lime-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lime-sm);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--nexo-lime);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Why choose cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  width: 100%;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.why-card:hover {
  border-color: var(--nexo-lime-border);
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 255, 102, 0.15);
}

.why-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--nexo-lime-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nexo-lime);
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}

.why-card h4 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.why-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.process-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.process-card:hover {
  border-color: var(--nexo-lime);
  box-shadow: var(--shadow-lime-sm);
  transform: translateY(-5px);
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--nexo-lime);
  margin-bottom: 1.2rem;
}

.process-card h4 { font-size: 1.25rem; margin-bottom: 0.6rem; text-transform: uppercase; }
.process-card p { color: var(--text-secondary); font-size: 0.92rem; }

/* Product cards */
.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.product-card:hover {
  border-color: var(--nexo-lime-border);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 255, 102, 0.2);
}

.product-thumb-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  background: #0C120D;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
  cursor: pointer;
  width: 100%;
}

.product-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-thumb-wrapper img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--nexo-lime);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-sizing: border-box;
}

.product-category-tag {
  color: var(--nexo-lime);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dark);
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-current {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--nexo-lime);
  font-family: var(--font-mono);
}

.price-old {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-actions { display: flex; gap: 0.5rem; }

/* Filter Tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  width: 100%;
}

.filter-btn {
  padding: 0.55rem 1.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(0, 255, 102, 0.1);
  border-color: var(--nexo-lime);
  color: var(--nexo-lime);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}

.store-search-bar {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  display: flex;
  gap: 0.5rem;
  box-sizing: border-box;
}

/* Portfolio cards */
.portfolio-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.portfolio-card:hover {
  border-color: var(--nexo-lime-border);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), var(--shadow-lime-sm);
}

.portfolio-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #090E0A;
  cursor: pointer;
  width: 100%;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.portfolio-card:hover .portfolio-thumb img { transform: scale(1.06); }
.portfolio-info { padding: 1.5rem; box-sizing: border-box; }
.portfolio-category {
  color: var(--nexo-lime);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.portfolio-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.portfolio-desc { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.pricing-card.featured {
  border-color: var(--nexo-lime);
  background: rgba(18, 26, 19, 0.9);
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.25);
  transform: scale(1.03);
}

.pricing-card:hover {
  border-color: var(--nexo-lime);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), var(--shadow-lime-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nexo-lime);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card-title { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.5rem; }
.pricing-card-subtitle { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 1.5rem; min-height: 42px; }
.pricing-price-box { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-dark); }
.pricing-price { font-size: 2.5rem; font-weight: 900; color: var(--nexo-lime); font-family: var(--font-mono); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.2rem; flex-grow: 1; }
.pricing-feature-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; color: var(--text-secondary); }
.pricing-feature-item i { color: var(--nexo-lime); font-size: 0.85rem; flex-shrink: 0; }

/* Testimonials */
.testimonials-wrapper { position: relative; max-width: 900px; margin: 0 auto; width: 100%; box-sizing: border-box; }
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--nexo-lime-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), var(--shadow-lime-sm);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.testimonial-stars { color: var(--nexo-lime); font-size: 1.2rem; margin-bottom: 1.5rem; display: flex; justify-content: center; gap: 0.3rem; }
.testimonial-quote { font-size: 1.25rem; line-height: 1.6; color: var(--text-primary); margin-bottom: 2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-avatar { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--nexo-lime); object-fit: cover; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 1.1rem; }
.testimonial-role { color: var(--text-secondary); font-size: 0.85rem; }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.carousel-btn:hover { border-color: var(--nexo-lime); color: var(--nexo-lime); box-shadow: var(--shadow-lime-sm); }

/* FAQ */
.faq-container { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; width: 100%; box-sizing: border-box; }
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
  width: 100%;
  box-sizing: border-box;
}
.faq-item.active { border-color: var(--nexo-lime-border); box-shadow: 0 0 20px rgba(0, 255, 102, 0.1); }
.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: border-box;
}
.faq-question i { color: var(--nexo-lime); transition: transform var(--transition-normal); flex-shrink: 0; margin-left: 0.5rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-normal), padding var(--transition-normal); padding: 0 1.6rem; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 1.6rem 1.3rem 1.6rem; }

/* Forms */
.form-group { margin-bottom: 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; text-align: left; width: 100%; box-sizing: border-box; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); }
.form-control {
  width: 100%;
  max-width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(13, 18, 14, 0.9);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}
.form-control:focus { border-color: var(--nexo-lime); box-shadow: 0 0 15px rgba(0, 255, 102, 0.25); background: rgba(18, 25, 19, 0.95); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--nexo-lime-border);
  border-radius: var(--radius-xl);
  padding: 2.8rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), var(--shadow-lime-sm);
  width: 100%;
  box-sizing: border-box;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0A140C 0%, #112215 100%);
  border: 1px solid var(--nexo-lime-border);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 255, 102, 0.15);
  width: 100%;
  box-sizing: border-box;
}

/* Footer */
.site-footer {
  background: #050705;
  border-top: 1px solid var(--border-dark);
  padding: 5rem 0 2.5rem 0;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
  box-sizing: border-box;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.92rem; margin-top: 1rem; max-width: 320px; }
.footer-heading { font-size: 1rem; font-weight: 700; color: var(--text-primary); text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.9rem; }
.footer-links a:hover { color: var(--nexo-lime); transform: translateX(3px); display: inline-block; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.2rem; flex-wrap: wrap; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.social-btn:hover { border-color: var(--nexo-lime); color: var(--nexo-lime); box-shadow: var(--shadow-lime-sm); transform: translateY(-2px); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   ALL-IN-ONE MODALS & DRAWERS
   ========================================================================== */

.nexo-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
}

.nexo-modal-backdrop.show { display: flex; }

.nexo-modal {
  background: #0E140F;
  border: 1px solid var(--nexo-lime-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 750px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), var(--shadow-lime-md);
  position: relative;
  animation: modalScaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-sizing: border-box;
}

@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  border-color: var(--nexo-lime);
  color: var(--nexo-lime);
}

/* Slide-in Cart Drawer */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.cart-drawer-backdrop.show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #0C100D;
  border-left: 1px solid var(--nexo-lime-border);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.9);
  transition: right var(--transition-normal);
  box-sizing: border-box;
}

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

.cart-drawer-header {
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-body {
  padding: 1.5rem 1.8rem;
  overflow-y: auto;
  flex-grow: 1;
}

.cart-drawer-footer {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid var(--border-dark);
  background: #080B08;
}

/* Floating Quick Dock */
.quick-dock {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 20, 15, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--nexo-lime-border);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--shadow-lime-sm);
  max-width: calc(100vw - 20px);
  box-sizing: border-box;
}

.dock-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.dock-btn:hover, .dock-btn.active {
  background: var(--nexo-lime);
  color: var(--text-dark);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
}

/* Toast */
#toast-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: calc(100vw - 40px);
}

.nexo-toast {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--nexo-lime-border);
  color: #FFFFFF;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--shadow-lime-sm);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  animation: slideInToast 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nexo-toast.toast-success i { color: var(--nexo-lime); }
.nexo-toast.toast-error i { color: var(--status-danger); }
.nexo-toast.toast-info i { color: var(--status-info); }

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   WHATSAPP FLOATING WIDGET & DIRECT NUMBER BOX
   ========================================================================== */

.whatsapp-float-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  z-index: 1500;
  cursor: pointer;
  transition: all var(--transition-spring);
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7);
  color: #FFFFFF;
}

.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseWa 2s infinite;
  pointer-events: none;
}

@keyframes pulseWa {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-box-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.whatsapp-box-badge:hover {
  background: #25D366;
  color: #050805;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-direct-card {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(13, 18, 14, 0.9) 100%);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET, MOBILE & ULTRA-COMPACT)
   ========================================================================== */

@media (max-width: 1100px) {
  .boxes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .boxes-grid .main-service-card:last-child { grid-column: span 2; }
  .grid-4, .pricing-grid, .stats-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  /* Layout & Viewport Reset */
  html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    padding: 0 1.1rem;
    width: 100%;
    max-width: 100%;
  }

  .container-sm {
    padding: 0 0.5rem;
    width: 100%;
  }

  .section-spacing { padding: 3.5rem 0; }
  .section-spacing-lg { padding: 4.5rem 0; }

  /* Header */
  .nav-menu { display: none; }
  .header-actions .btn { display: none; }
  .mobile-toggle { display: flex; }
  .header-container { height: 70px; }

  /* Ambient Glow Reduction */
  .ambient-glow-top {
    width: 250px;
    height: 250px;
    top: -100px;
  }
  .ambient-glow-bottom {
    display: none;
  }

  /* Typography */
  .hero-section { padding: 4.5rem 0 3.5rem 0; }
  .hero-description { font-size: 1.05rem; }
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-trust-bar {
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    flex-direction: column;
  }

  /* All Grids Collapse to 1 Column */
  .grid-4, .grid-3, .grid-2, .boxes-grid, .pricing-grid, .stats-grid, .why-grid, .process-grid, .contact-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 1.4rem !important;
    width: 100% !important;
  }

  .boxes-grid .main-service-card:last-child {
    grid-column: span 1;
  }

  .main-service-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .pricing-card.featured {
    transform: none;
  }
  .pricing-card:hover {
    transform: none;
  }

  .testimonial-card { padding: 2rem 1.4rem; }
  .form-card { padding: 1.8rem 1.2rem; }

  /* Store & Search */
  .store-search-bar {
    flex-direction: column;
    gap: 0.6rem;
  }
  .store-search-bar .btn {
    width: 100%;
  }

  .filter-tabs {
    gap: 0.4rem;
  }
  .filter-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
  }

  /* WhatsApp Direct Card */
  .whatsapp-direct-card {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
    gap: 1rem;
  }
  .whatsapp-direct-card .btn {
    width: 100%;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }

  /* Floating Dock */
  .quick-dock {
    width: calc(100% - 20px);
    justify-content: space-around;
    padding: 0.35rem 0.4rem;
  }
  .dock-btn span { display: none; }

  /* WhatsApp Float */
  .whatsapp-float-btn {
    bottom: 75px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  /* Modals */
  .nexo-modal {
    padding: 2rem 1.2rem;
    width: 95%;
  }
}

@media (max-width: 390px) {
  .container {
    padding: 0 0.85rem;
  }
  .brand-logo .logo-text .title {
    font-size: 1.1rem;
  }
  .brand-logo .logo-text .subtitle {
    font-size: 0.6rem;
  }
  .whatsapp-box-badge span {
    display: none;
  }
  .whatsapp-box-badge {
    padding: 0.45rem;
    border-radius: 50%;
  }
}

@media (max-width: 330px) {
  .container {
    padding: 0 0.65rem;
  }
  .hero-title-main {
    font-size: 1.9rem;
  }
  .hero-title-sub {
    font-size: 1.5rem;
  }
}
