/* ==========================================================================
   ARMAQ - VIBRADORES DE CONCRETO
   Portal especializado de Vibradores para Concreto a Gasolina y Eléctricos
   Página principal de la empresa: https://www.armaqmaquinaria.com
   ========================================================================== */

:root {
  --primary: #0f2648;
  --primary-dark: #09172c;
  --primary-light: #1b3d6d;
  --primary-rgb: 15, 38, 72;
  
  --accent: #f5b301;
  --accent-hover: #dfa200;
  --accent-light: #fff8e5;
  --accent-rgb: 245, 179, 1;

  --secondary: #1e3a8a;
  --success: #16a34a;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --bg-dark: #0a1729;

  --border: #e2e8f0;
  --border-dark: #1e293b;
  --border-focus: #f5b301;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 10px 25px -5px rgba(245, 179, 1, 0.3);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s ease;

  --container-max: 1240px;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TOP BAR & OFFICIAL PORTAL BANNER
   ========================================================================== */
.portal-announcement {
  background: #091526;
  color: #cbd5e1;
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
}

.portal-announcement .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portal-notice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f1f5f9;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.portal-notice-link strong {
  color: var(--accent);
}

.portal-notice-link:hover {
  color: var(--accent);
}

.portal-contacts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.portal-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #cbd5e1;
  font-size: 0.825rem;
  transition: color var(--transition-fast);
}

.portal-contact-item i {
  color: var(--accent);
  font-size: 0.85rem;
}

.portal-contact-item:hover {
  color: #ffffff;
}

/* Main Site Badge */
.main-site-badge {
  background: rgba(245, 179, 1, 0.15);
  border: 1px solid rgba(245, 179, 1, 0.4);
  color: var(--accent);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: background-color var(--transition-normal);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-card {
  background: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast);
}

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

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-card {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast);
}

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

.brand-badge {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--accent);
  padding-left: 0.75rem;
}

.brand-badge-title {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand-badge-sub {
  color: #94a3b8;
  font-size: 0.7rem;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.925rem;
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition-normal);
}

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

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

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

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.btn-header-call:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-header-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(245, 179, 1, 0.35);
  transition: all var(--transition-fast);
}

.btn-header-quote:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #09172c 0%, #0f2648 60%, #163663 100%);
  color: #ffffff;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero-pattern-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(245, 179, 1, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
  opacity: 0.8;
}

.hero-glow-1 {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.15) 0%, rgba(245, 179, 1, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 179, 1, 0.15);
  border: 1px solid rgba(245, 179, 1, 0.4);
  color: var(--accent);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 600px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(245, 179, 1, 0.4);
}

.btn-primary:hover {
  background: #ffc425;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 179, 1, 0.5);
  color: var(--primary-dark);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20ba59;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.75rem;
}

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

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.3;
}

/* Hero Media / Graphic Card */
.hero-media-wrapper {
  position: relative;
}

.hero-card-featured {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-card-tag {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.hero-brand-logos {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
}

.hero-showcase-img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-normal);
}

.hero-card-featured:hover .hero-showcase-img {
  transform: scale(1.03);
}

.hero-card-footer {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-featured-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.hero-featured-sub {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Floating Guarantee Pill */
.hero-guarantee-pill {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #ffffff;
  color: var(--primary-dark);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-xl);
  font-weight: 700;
  font-size: 0.85rem;
  border-left: 4px solid var(--accent);
}

.hero-guarantee-pill i {
  color: var(--success);
  font-size: 1.1rem;
}

/* ==========================================================================
   AUTHORITATIVE BACKLINK CALLOUT BANNER
   ========================================================================== */
.armaq-parent-notice-bar {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.notice-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.notice-bar-text {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #1e293b;
}

.notice-bar-text i {
  color: #0f2648;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.notice-bar-text a {
  color: #0f2648;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-bar-text a:hover {
  color: #f5b301;
}

.notice-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  background: #0f2648;
  color: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.notice-bar-btn:hover {
  background: #f5b301;
  color: #0f2648;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: var(--bg-light);
}

.section-bg-dark {
  background-color: var(--bg-dark);
  color: #ffffff;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f2648;
  background: rgba(245, 179, 1, 0.25);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-bg-dark .section-eyebrow {
  color: var(--accent);
  background: rgba(245, 179, 1, 0.15);
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-bg-dark .section-title {
  color: #ffffff;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-bg-dark .section-description {
  color: #94a3b8;
}

/* ==========================================================================
   PRODUCT CATALOG & FILTERS
   ========================================================================== */
.catalog-filters-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: #ffffff;
  border: 1.5px solid var(--border);
  color: var(--text-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 38, 72, 0.2);
}

.filter-btn .count-tag {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.08);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
}

.filter-btn.active .count-tag {
  background: var(--accent);
  color: var(--primary-dark);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(245, 179, 1, 0.6);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.badge-gasolina {
  background: #f59e0b;
  color: #ffffff;
}

.badge-electrico {
  background: #2563eb;
  color: #ffffff;
}

.badge-alta-frecuencia {
  background: #7c3aed;
  color: #ffffff;
}

.badge-neumatico {
  background: #0284c7;
  color: #ffffff;
}

.product-card-image-wrap {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2.25rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image {
  max-height: 220px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  margin: 0 auto;
  transition: transform var(--transition-normal);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

.product-card:hover .product-card-image {
  transform: scale(1.06);
}

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

.product-brand-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.product-brand-name {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.product-availability {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.product-availability::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--success);
  border-radius: 50%;
  display: inline-block;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

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

/* Feature tags / specs pills */
.product-specs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.spec-chip {
  background: var(--bg-subtle);
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.spec-chip i {
  color: var(--primary);
  font-size: 0.75rem;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.btn-card-quote {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.btn-card-quote:hover {
  background: var(--accent-hover);
  color: var(--primary-dark);
}

.btn-card-spec {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-card-spec:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ==========================================================================
   TECHNICAL COMPARISON MATRIX TABLE
   ========================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: #ffffff;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 900px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.25rem;
  font-size: 0.925rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table thead th {
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--bg-light);
}

.comparison-table tbody tr:hover {
  background-color: rgba(245, 179, 1, 0.06);
}

.comparison-table .model-col {
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1rem;
}

.comparison-table .highlight-spec {
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================================================
   INTERACTIVE WIZARD / SELECTOR (ASESOR VIRTUAL)
   ========================================================================== */
.wizard-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 2.5rem;
  max-width: 950px;
  margin: 0 auto;
}

.wizard-steps-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.wizard-steps-header::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--border);
  z-index: 1;
}

.wizard-step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.wizard-step-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.wizard-step-node.active .wizard-step-bubble {
  background: var(--accent);
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: var(--shadow-accent);
}

.wizard-step-node.completed .wizard-step-bubble {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.wizard-step-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
}

.wizard-step-node.active .wizard-step-text {
  color: var(--primary);
}

.wizard-question-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-dark);
}

.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.wizard-option-item {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.wizard-option-item:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
}

.wizard-option-item.selected {
  border-color: var(--primary);
  background: rgba(15, 38, 72, 0.04);
  box-shadow: 0 0 0 2px var(--primary);
}

.wizard-option-icon {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.wizard-option-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
}

.wizard-option-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.wizard-nav-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* Wizard Recommendation Output Box */
.wizard-result-box {
  display: none;
  background: linear-gradient(135deg, #09172c 0%, #0f2648 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  margin-top: 1.5rem;
}

.wizard-result-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: center;
}

.wizard-result-img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.wizard-result-copy h4 {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.wizard-result-copy h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.wizard-result-copy p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   TECHNICAL GUIDE SECTION (SEO CONTENT CLUSTER)
   ========================================================================== */
.guide-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.guide-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.guide-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(245, 179, 1, 0.18);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.guide-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.guide-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.guide-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #334155;
}

.guide-list-item i {
  color: var(--success);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ==========================================================================
   TRUST / ARMAQ BACKING SECTION
   ========================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.trust-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.trust-copy p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.trust-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.trust-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-feature-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.trust-feature-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.trust-boxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.trust-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.trust-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.trust-box-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-box-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.trust-box-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   QUOTATION & CONTACT SECTION
   ========================================================================== */
.contact-section {
  background: #f8fafc;
  position: relative;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.quote-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.quote-form-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.quote-form-subtitle {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

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

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

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 38, 72, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* Advisor Contact Side Cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advisor-cards-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.advisor-sidebar-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.advisor-sidebar-title i {
  color: var(--accent);
}

.advisors-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.advisor-item-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.advisor-item-card:hover {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.advisor-info-col {
  display: flex;
  flex-direction: column;
}

.advisor-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.advisor-phone-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.advisor-btn-wa {
  background: var(--whatsapp);
  color: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background var(--transition-fast);
}

.advisor-btn-wa:hover {
  background: #1eb954;
  color: #ffffff;
}

/* Branch info card */
.branch-info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.branch-info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.branch-info-card h4 i {
  color: var(--primary);
}

.branch-address {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.branch-hours {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.branch-hours i {
  color: var(--accent);
  margin-top: 0.2rem;
}

.branch-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.875rem;
}

.branch-map-link:hover {
  color: var(--accent-hover);
}

/* Map Embed Container */
.map-embed-wrapper {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 280px;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.faq-item {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-icon {
  font-size: 1rem;
  color: var(--primary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  background: var(--bg-light);
}

.faq-item.open .faq-body {
  max-height: 400px;
}

.faq-content {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   SITE FOOTER (IDENTICAL AUTHORITATIVE STRUCTURE AS ARMAQ)
   ========================================================================== */
.site-footer {
  background: #09172c;
  color: #cbd5e1;
  padding: 4.5rem 0 2rem;
  border-top: 4px solid var(--accent);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 1.25rem 0;
}

.footer-badges-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-badge-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

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

.footer-link-item a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link-item a:hover {
  color: var(--accent);
}

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

.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-contact-link i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-link strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-contact-link small {
  color: #94a3b8;
  font-size: 0.75rem;
}

.footer-contact-link:hover {
  color: var(--accent);
}

.footer-parent-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 179, 1, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.footer-parent-box h5 {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.footer-parent-box p {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.footer-parent-box a {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-parent-box a:hover {
  color: var(--accent);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: #64748b;
}

.footer-bottom-bar a {
  color: #94a3b8;
}

.footer-bottom-bar a:hover {
  color: var(--accent);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON & WIDGET
   ========================================================================== */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.floating-whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  position: relative;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  background: #20ba59;
}

.floating-whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0.7;
  animation: pulse-ring 2s infinite cubic-bezier(0.25, 0, 0, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-popup-card {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  display: none;
  z-index: 1000;
}

.whatsapp-popup-card.show {
  display: block;
}

.whatsapp-popup-header {
  background: #0f2648;
  color: #ffffff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-popup-header i {
  color: var(--whatsapp);
  font-size: 1.5rem;
}

.whatsapp-popup-header h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.whatsapp-popup-header p {
  color: #94a3b8;
  font-size: 0.75rem;
}

.whatsapp-popup-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wa-advisor-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.wa-advisor-option:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: var(--whatsapp);
}

.wa-advisor-left {
  display: flex;
  flex-direction: column;
}

.wa-advisor-name {
  font-weight: 700;
  font-size: 0.85rem;
}

.wa-advisor-number {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.wa-advisor-badge {
  background: var(--whatsapp);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   MODALS (SPEC SHEETS & QUICK QUOTE)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 23, 44, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 840px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: #0f2648;
  color: #ffffff;
}

.modal-header {
  padding: 2rem 2.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.modal-eyebrow {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
}

.modal-body {
  padding: 1.5rem 2.5rem 2.5rem;
}

.modal-grid-2 {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}

.modal-prod-img {
  max-height: 250px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.modal-specs-table th,
.modal-specs-table td {
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.modal-specs-table th {
  background: var(--bg-light);
  color: var(--text-dark);
  font-weight: 700;
  width: 40%;
}

.modal-specs-table td {
  color: var(--text-body);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats-row {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .portal-announcement {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 70px);
    background: #09172c;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-xl);
    transition: left var(--transition-normal);
  }

  .nav-menu.open {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .header-actions .btn-header-call {
    display: none;
  }

  .hero-section {
    padding: 3rem 0 4rem;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .modal-grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wizard-result-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-boxes-grid {
    grid-template-columns: 1fr;
  }
}
