﻿:root {
  --gold: #C5A04D;
  --gold-light: #F6E6B6;
  --gold-deep: #8B6A2D;
  --dark: #1F1B16;
  --white: #ffffff;
  --bg: #F7F3EB;
  --surface: #ffffff;
  --surface-alt: #F1E9DC;
  --gray: #F1E9DC;
  --text: #1F1B16;
  --text-light: #6F5B3B;
  --border: rgba(197,160,77,0.28);
  --glow: rgba(197,160,77,0.25);
  --grid: rgba(197,160,77,0.06);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 8px 22px rgba(0,0,0,0.08);
  --shadow-md: 0 18px 44px rgba(0,0,0,0.14);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.2);
  --container: 1180px;
  --section-pad: clamp(56px, 7vw, 96px);
  --section-pad-tight: clamp(40px, 6vw, 72px);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}
body.modal-open { overflow: hidden; }
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px); height: 64px;
  box-shadow: 0 10px 30px rgba(31,27,22,0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: rgba(197,160,77,0.38);
  box-shadow: 0 12px 34px rgba(31,27,22,0.14);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 75px; height: 75px;
  background: transparent;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600; letter-spacing: 1px;
}
.logo-icon img,
.footer-logo-icon img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.logo-text { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text);
  transition: color 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep); }
.nav-links .dropdown { position: relative; cursor: pointer; }
.nav-links .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--surface); border: 1px solid var(--border);
  min-width: 220px; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 8px 0; border-radius: var(--radius-md);
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 12px; color: var(--text); transition: background 0.15s, color 0.15s; }
.dropdown-menu a:hover { background: rgba(197,160,77,0.1); color: var(--gold-deep); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.btn-demo {
  background: var(--gold); color: var(--dark);
  padding: 9px 22px; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(197,160,77,0.22);
}
.btn-demo:hover { background: var(--gold-deep); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
  z-index: 1001;
}
.hamburger-line {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger-line.open:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-line.open:nth-child(2) { opacity: 0; }
.hamburger-line.open:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer-backdrop {
  position: fixed; inset: 0; background: rgba(31,27,22,0.5);
  z-index: 1100; backdrop-filter: blur(2px);
}
.mobile-drawer {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--surface); z-index: 1200;
  box-shadow: var(--shadow-lg); padding: 24px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.mobile-drawer.is-open { right: 0; }
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.mobile-drawer-header .logo-icon { width: 32px; height: 32px; }
.mobile-drawer-close {
  background: none; border: 1px solid var(--border); width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text); transition: all 0.2s;
}
.mobile-drawer-close:hover { border-color: var(--gold); color: var(--gold-deep); }
.mobile-nav-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a {
  display: block; padding: 14px 0; text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text); transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--gold-deep); }
.mobile-demo-btn {
  margin-top: 24px; text-align: center; display: block;
  width: 100%; padding: 14px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* Back to Top */
.back-to-top {
  position: fixed; bottom: 90px; right: 28px; z-index: 900;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--dark); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(197,160,77,0.3);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold-deep); color: var(--white); }

/* Scroll Reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* HERO SLIDER */
.hero {
  margin-top: 64px;
  position: relative; height: clamp(520px, 70vh, 660px); overflow: hidden;
  background: linear-gradient(120deg, #fdfbf7 0%, #f6efe2 55%, #efe3cf 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10% 0 auto 0;
  height: 120%;
  background: radial-gradient(circle at 25% 30%, rgba(197,160,77,0.22), transparent 55%);
  opacity: 0.9;
  animation: glowShift 16s ease-in-out infinite;
  pointer-events: none;
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.8s ease;
  padding: 0 clamp(24px, 7vw, 96px);
  gap: 40px;
  z-index: 1;
}
.slide.active { opacity: 1; }
.slide-content { max-width: 560px; }
.slide-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 16px; font-weight: 600;
}
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 64px); line-height: 1.05; font-weight: 300;
  color: var(--text); margin-bottom: 12px;
}
.slide-sub { font-size: 13px; color: var(--text-light); margin-bottom: 28px; line-height: 1.8; }
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 12px 28px; text-decoration: none;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s; border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(197,160,77,0.22);
}
.btn-primary:hover { background: var(--gold-deep); color: var(--white); }
.slide-image {
  position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  background: linear-gradient(135deg, #f2e9db 0%, #e2d2b8 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-left: 1px solid rgba(197,160,77,0.25);
}

.device-visual {
  width: 280px; height: 380px;
  background: linear-gradient(160deg, #ffffff, #e3d7c2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.device-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.device-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(197,160,77,0.25), transparent);
  z-index: 1;
}
.device-label {
  position: absolute; bottom: 30px; left: 0; right: 0; text-align: center;
  color: rgba(31,27,22,0.6); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  z-index: 2;
}

.slider-dots {
  position: absolute; bottom: 24px; left: 80px;
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(0,0,0,0.2); cursor: pointer; transition: all 0.3s;
}
.dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

.slider-arrows {
  position: absolute; top: 50%; right: 24px; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px; z-index: 10;
}
.arrow-btn {
  width: 36px; height: 36px; border: 1px solid var(--border);
  background: var(--surface); cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.2s; border-radius: 2px;
}
.arrow-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* SECTION BASE */
.section { padding: var(--section-pad); }
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 12px; font-weight: 600;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 46px); font-weight: 300; color: var(--dark); margin-bottom: 24px; line-height: 1.2;
}
.section-title span { color: var(--gold); }
.divider { width: 40px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.divider-center { margin: 0 auto 28px; }
.section-sub {
  font-size: 13px; color: var(--text-light); max-width: 680px;
  margin: 0 auto; line-height: 1.8; text-align: center;
}
.section-center { text-align: center; }

/* WELCOME */
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.welcome-text p { font-size: 14px; line-height: 1.9; color: var(--text-light); margin-bottom: 16px; }
.welcome-image {
  aspect-ratio: 4/3; background: var(--gray);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border: 1px solid rgba(130,98,36,0.2);
  box-shadow: var(--shadow-sm);
}
.welcome-image-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8e4dd, #d0cbc3);
  display: flex; align-items: center; justify-content: center;
}
.welcome-image-inner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.expo-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(255,255,255,0.88); color: var(--text);
  padding: 10px 16px; font-size: 11px; letter-spacing: 1px;
  backdrop-filter: blur(10px); border-radius: var(--radius-sm);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}

/* FEATURED PRODUCTS */
.devices-section { background: var(--gray); padding: var(--section-pad); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header,
.welcome-grid,
.devices-viewport,
.inj-grid,
.why-grid,
.media-grid,
.partners-logos,
.contact-form,
.footer-grid,
.footer-bottom {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.devices-carousel { display: flex; align-items: center; gap: 16px; position: relative; }
.devices-viewport { overflow: hidden; width: 100%; }
.tabs-new { display: flex; gap: 12px; justify-content: center; margin-bottom: 36px; }
.tab-new {
  padding: 8px 20px; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; font-weight: 600;
  border: 1.5px solid rgba(130,98,36,0.35); border-radius: var(--radius-md);
  transition: all 0.2s; color: var(--text-light); background: var(--white);
}
.tab-new.active { background: var(--gold); color: var(--dark); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.tab-new:hover:not(.active) { border-color: var(--gold); color: var(--gold-deep); }

.devices-grid { display: flex; gap: 20px; transition: transform 0.45s ease; will-change: transform; }
.device-card {
  background: var(--surface); border-radius: var(--radius-md); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
  border: 1px solid rgba(130,98,36,0.25);
  box-shadow: var(--shadow-sm);
  flex: 0 0 calc((100% - 40px) / 3);
}
.device-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.device-card-image {
  aspect-ratio: 3/4; background: linear-gradient(160deg, #efe8dd, #d8c9b3);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; color: rgba(0,0,0,0.06); position: relative; overflow: hidden;
}
.device-card-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0;
}
.device-card-image .device-name-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  padding: 30px 16px 16px;
  font-family: 'Playfair Display', serif; font-size: 20px; color: white; font-weight: 400;
  z-index: 2;
}
.device-card-body { padding: 16px; }
.device-card-body p { font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.device-link { font-size: 11px; color: var(--gold-deep); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; text-decoration: none; }
.device-link:hover { color: var(--text); }
.device-card-list {
  list-style: none; margin: 12px 0 14px; padding: 0; display: grid; gap: 8px;
}
.device-card-list li {
  font-size: 11px; color: var(--text-light); line-height: 1.6; padding-left: 14px; position: relative;
}
.device-card-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  position: absolute; left: 0; top: 7px;
}
.device-details-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--gold-deep);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 10px;
}
.device-details-btn:hover {
  border-color: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.device-details-hidden { display: none; }
.device-details {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
}
.device-details-title {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  color: var(--gold-deep); margin-bottom: 10px;
}
.device-details-content p {
  font-size: 12px; color: var(--text-light); line-height: 1.7; margin-bottom: 10px;
}
.device-details-list {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 8px;
}
.device-details-list.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.device-details-list li {
  font-size: 11px; color: var(--text-light); line-height: 1.6; padding-left: 14px; position: relative;
}
.device-details-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  position: absolute; left: 0; top: 7px;
}
.device-details-block + .device-details-block { margin-top: 12px; }
.device-details-block h5 {
  font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.carousel-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

.device-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 16, 12, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2000;
  padding: 24px;
}
.device-modal.is-open { opacity: 1; pointer-events: auto; }
.device-modal-dialog {
  width: min(920px, 92vw);
  max-height: 85vh;
  overflow: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
}
.device-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}
.device-modal-close:hover { border-color: var(--gold); color: var(--gold-deep); }
.device-modal-media {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-alt);
  margin-bottom: 18px;
}
.device-modal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.device-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}
.device-modal-body p { font-size: 13px; color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }

.explore-btn-wrap { text-align: center; margin-top: 36px; }
.btn-outline {
  display: inline-block; border: 1.5px solid var(--gold); color: var(--gold-deep);
  padding: 11px 28px; text-decoration: none;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  transition: all 0.2s; border-radius: var(--radius-md);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); box-shadow: var(--shadow-sm); }

/* CORE EXPERTISE */
.injectables-section { padding: var(--section-pad); }
.inj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.inj-card {
  border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(130,98,36,0.25);
  box-shadow: var(--shadow-sm);
}
.inj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.inj-card-image {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.inj-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
  z-index: 0;
}
.inj-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.18) 0%, rgba(20,16,12,0.62) 70%, rgba(20,16,12,0.78) 100%);
  z-index: 1;
}
.inj-card-image.pink { background: linear-gradient(160deg, #f7e8e8, #e8c8c8); }
.inj-card-image.amber { background: linear-gradient(160deg, #f7f0e0, #e8d4a8); }
.inj-card-image.orchid { background: linear-gradient(160deg, #ede8f2, #d4c8e4); }
.inj-card-image.rev { background: linear-gradient(160deg, #e0e8f0, #b8cce0); }
.inj-badge {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px;
  z-index: 2;
}
.inj-badge-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 500; text-align: center; margin-bottom: 8px; color: var(--white);
  text-shadow: 0 8px 20px rgba(0,0,0,0.45);
}
.inj-badge-sub {
  font-size: 11px; color: rgba(255,255,255,0.9);
  text-align: center; line-height: 1.5;
  text-shadow: 0 6px 14px rgba(0,0,0,0.35);
}
.inj-card-footer { padding: 14px; background: var(--surface); border-top: 1px solid var(--border); }
.inj-card-footer p { font-size: 12px; color: var(--text-light); line-height: 1.5; margin-bottom: 8px; }

/* WHY CHOOSE US */
.why-section { background: var(--gray); padding: var(--section-pad); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.why-card {
  background: var(--surface); padding: 28px; border-radius: var(--radius-md);
  border: 1px solid rgba(130,98,36,0.25); transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 56px; height: 56px; margin-bottom: 20px; border-radius: 4px; overflow: hidden;
  background: var(--gray); display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.why-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 12px; color: var(--text-light); line-height: 1.7; }

/* UAE MARKET */
.partners-section { padding: var(--section-pad-tight); border-top: 1px solid var(--border); }
.partners-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; font-weight: 600; text-align: center; }
.partners-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.4vw, 40px); font-weight: 300; text-align: center; margin-bottom: 10px; }
.partners-sub { font-size: 13px; color: var(--text-light); text-align: center; margin-bottom: 40px; }
.uae-coverage-grid {
  display: flex; align-items: stretch; justify-content: center; gap: 20px; flex-wrap: wrap;
  max-width: var(--container); margin: 0 auto;
}
.uae-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px; text-align: center;
  min-width: 160px; flex: 1; transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.uae-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.uae-card-icon { font-size: 24px; color: var(--gold); margin-bottom: 12px; }
.uae-card h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.uae-card p { font-size: 11px; color: var(--text-light); }

/* STATS */
.stats-section { background: var(--dark); padding: var(--section-pad); color: var(--white); }
.stats-section .section-label { color: var(--gold-light); }
.stats-section .section-title { color: var(--white); }
.stats-section .divider { background: var(--gold); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: var(--container); margin: 0 auto;
}
.stat-card {
  text-align: center; padding: 36px 20px;
  border: 1px solid rgba(197,160,77,0.2); border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04); transition: all 0.3s;
}
.stat-card:hover { background: rgba(197,160,77,0.08); border-color: var(--gold); transform: translateY(-4px); }
.stat-icon { font-size: 28px; color: var(--gold); margin-bottom: 16px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px); font-weight: 400; color: var(--white);
  display: inline;
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 300; color: var(--gold-light);
  display: inline; margin-left: 2px;
}
.stat-label {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-light); margin: 12px 0 6px; font-weight: 600;
}
.stat-card p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* Slider Progress Bar */
.slider-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(0,0,0,0.08); z-index: 10;
}
.slider-progress-bar {
  height: 100%; width: 0; background: var(--gold);
  transition: width 0.1s linear;
}

/* CONTACT FORM CARD */
.contact-form-card {
  max-width: 700px; margin: 40px auto 0;
  background: var(--surface); padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-success-toast {
  background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46;
  padding: 14px 20px; border-radius: var(--radius-md);
  font-size: 13px; font-weight: 500; margin-top: 16px;
  display: flex; align-items: center; gap: 8px;
  animation: toastIn 0.4s ease;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.btn-submit { position: relative; }

/* CONTACT SECTION */
.contact-section { padding: var(--section-pad); }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text); }
.form-field label span { color: var(--gold); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border); padding: 11px 14px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--text);
  border-radius: var(--radius-sm); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  background: #fbf8f2; appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,77,0.18);
}
.form-field textarea { height: 110px; resize: vertical; }
.btn-submit {
  background: var(--gold); color: var(--dark); border: none; padding: 14px;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  border-radius: var(--radius-md);
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 12px 28px rgba(197,160,77,0.22);
}
.btn-submit:hover { background: var(--gold-deep); color: var(--white); }

/* FOOTER */
footer {
  background: var(--surface-alt); color: var(--text);
  padding: var(--section-pad-tight);
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin: 0 auto 48px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 75px; height: 75px; background: transparent;
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600;
}
.footer-logo-text { color: var(--text); font-size: 15px; font-weight: 600; letter-spacing: 1px; }
.footer-brand-desc { font-size: 12px; line-height: 1.8; color: var(--text-light); margin-top: 16px; }
.footer-col h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 20px; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12px; color: var(--text-light); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--gold-deep); }
.footer-links a::before { content: "\203A"; font-size: 14px; color: var(--gold); }
.branch-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 12px; color: var(--text-light); }
.branch-tag {
  background: rgba(197,160,77,0.18); color: var(--gold-deep);
  padding: 2px 8px; font-size: 10px; border-radius: 2px; letter-spacing: 1px;
  border: 1px solid rgba(197,160,77,0.35);
}
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 32px; height: 32px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); text-decoration: none; font-size: 13px;
  transition: all 0.2s; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.6);
}
.social-link:hover { border-color: var(--gold); color: var(--gold-deep); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; font-size: 11px; color: var(--text-light); }

/* ANIMATIONS */
@keyframes glowShift {
  0% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(-4%); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.7; }
}

@media (max-width: 1200px) {
  .device-card { flex-basis: calc((100% - 20px) / 2); }
  .inj-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-right .btn-demo:not(.mobile-demo-btn) { display: none; }
  .hamburger { display: flex; }
  nav { height: 60px; }
  .hero { height: 640px; margin-top: 60px; }
  .slide { flex-direction: column; align-items: flex-start; justify-content: center; }
  .slide-image { position: relative; width: 100%; height: 240px; margin-top: 24px; }
  .slider-dots { left: 24px; }
  .devices-carousel { gap: 10px; }
  .media-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hero { height: 720px; }
  .slide { padding: 0 20px; }
  .slide-title { font-size: 40px; }
  .device-card { flex-basis: 100%; }
  .inj-grid, .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .uae-coverage-grid { flex-direction: column; }
  .uae-card { min-width: auto; }
  .tabs-new { flex-wrap: wrap; }
  .slider-arrows { display: none; }
  .device-details-list.two-col { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .contact-form-card { padding: 24px; }
}

@media (max-width: 576px) {
  .hero { height: 760px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .mobile-drawer { width: 100%; right: -100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
