/* ===================================================
   SOLTEC CCTV SAS — Landing Page SEM
   Automatización de Puertas en Bogotá
   =================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors — Manual de Marca SOLTEC */
  --navy-900: #012040;
  --navy-800: #013060;
  --navy-700: #014aae;
  --navy-600: #0358c7;
  --navy-500: #126ced;
  --accent-gold: #f97e0d;
  --accent-gold-light: #fba94d;
  --accent-gold-dark: #d96a08;
  --white: #ffffff;
  --gray-100: #f4f6f9;
  --gray-200: #dde0e2;
  --gray-300: #c5ccda;
  --gray-500: #6b7a94;
  --gray-700: #3d4f6a;
  --success: #22c55e;
  --danger: #ef4444;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-500) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  --gradient-dark-section: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  --gradient-light-section: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);

  /* Typography — Poppins (títulos) + Mardoto fallback Inter (cuerpo) */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', 'Arial', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(1, 32, 64, 0.12);
  --shadow-card-hover: 0 16px 48px rgba(1, 32, 64, 0.2);
  --shadow-gold: 0 4px 24px rgba(249, 126, 13, 0.35);
  --shadow-gold-hover: 0 8px 40px rgba(249, 126, 13, 0.5);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-medium: 0.4s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--navy-900);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Utility ---------- */
.text-gold {
  color: var(--navy-500);
}

.text-white {
  color: var(--white);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge--dark {
  background: rgba(18, 108, 237, 0.12);
  color: var(--navy-500);
  border: 1px solid rgba(18, 108, 237, 0.25);
}

.section-badge--light {
  background: var(--navy-500);
  color: var(--white);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 620px;
  line-height: 1.8;
}

.section-subtitle--light {
  color: var(--gray-300);
}

/* ---------- Floating CTA (WhatsApp) ---------- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--success);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
  transition: all var(--transition-medium);
  animation: pulse-cta 2s infinite;
}

.floating-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.6);
}

.floating-cta svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(34, 197, 94, 0.7); }
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy-900);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-size: 0.85rem;
}

.topbar__item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.topbar__item a {
  color: var(--gray-300);
  transition: color var(--transition-fast);
}

.topbar__item a:hover {
  color: var(--accent-gold);
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(1, 32, 64, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(18, 108, 237, 0.15);
  padding: 16px 0;
  transition: all var(--transition-medium);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--navy-900);
  font-family: var(--font-heading);
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.navbar__logo-text span {
  color: var(--accent-gold);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: var(--navy-900);
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-medium);
  border: none;
  cursor: pointer;
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ---------- HERO Section (Video Background) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  display: none;
}

/* Video Background */
.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(1, 32, 64, 0.75) 0%,
    rgba(1, 32, 64, 0.6) 40%,
    rgba(1, 74, 174, 0.55) 70%,
    rgba(1, 32, 64, 0.8) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero__content--centered {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Certification Badges */
.hero__certifications {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s var(--ease-smooth) both;
}

.hero__cert-badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  transition: all var(--transition-medium);
}

.hero__cert-badge-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(249, 126, 13, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero__cert-badge-item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero__cert-badge-item span {
  font-size: 0.85rem;
  color: var(--gray-200);
  line-height: 1.4;
  text-align: left;
}

.hero__cert-badge-item strong {
  color: var(--white);
  font-size: 1rem;
}

.hero__cert-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Title — Video version */
.hero__title--video {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s var(--ease-smooth) 0.1s both;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero__title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description--video {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  animation: fadeInUp 0.6s var(--ease-smooth) 0.2s both;
}

/* Centered Actions */
.hero__actions--centered {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s var(--ease-smooth) 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-gold);
  color: var(--navy-900);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  font-family: var(--font-body);
}

.btn-primary--lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-hover);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition-medium);
  font-family: var(--font-body);
}

.btn-secondary--light {
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(249, 126, 13, 0.08);
}

/* Centered Trust Bar */
.hero__trust--centered {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s var(--ease-smooth) 0.4s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.hero__trust-text {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.4;
}

.hero__trust-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--navy-800);
  padding: 40px 0;
  border-top: 1px solid rgba(18, 108, 237, 0.15);
  border-bottom: 1px solid rgba(18, 108, 237, 0.15);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.08);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item__label {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-top: 4px;
}

/* ---------- Services Section ---------- */
.services {
  padding: var(--section-padding);
  background: var(--gradient-light-section);
}

.services__header {
  text-align: center;
  margin-bottom: 64px;
}

.services__header .section-subtitle {
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(18, 108, 237, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(18, 108, 237, 0.1), rgba(18, 108, 237, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-gold);
}

.service-card__title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.service-card__description {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.service-card__feature svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

/* ---------- Why Us Section ---------- */
.why-us {
  padding: var(--section-padding);
  background: var(--gradient-dark-section);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a843' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-us .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us__content .section-title {
  color: var(--white);
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.why-us__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-us__item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(18, 108, 237, 0.1);
  border: 1px solid rgba(18, 108, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us__item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-gold);
}

.why-us__item-text h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.why-us__item-text p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* Why Us Image */
.why-us__visual {
  position: relative;
}

.why-us__image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  position: relative;
}

.why-us__image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-us__cert-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(1, 32, 64, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(249, 126, 13, 0.35);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-us__cert-badge svg {
  width: 36px;
  height: 36px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.why-us__cert-badge-text {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.4;
}

.why-us__cert-badge-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

/* ---------- Products Section ---------- */
.products {
  padding: var(--section-padding);
  background: var(--gradient-light-section);
}

.products__header {
  text-align: center;
  margin-bottom: 64px;
}

.products__header .section-subtitle {
  margin: 0 auto;
}

.products__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.products__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.products__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.products__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.products__info h3 {
  font-size: 1.8rem;
  color: var(--navy-900);
}

.products__info p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.products__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-fast);
}

.spec-item:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.spec-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.spec-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-900);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 80px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-card {
  position: relative;
  z-index: 2;
  background: var(--gradient-glass);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  backdrop-filter: blur(20px);
}

.cta-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-card__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-card__info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-card__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-300);
}

.cta-card__info-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--section-padding);
  background: var(--gradient-light-section);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials__header .section-subtitle {
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: all var(--transition-medium);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(212, 168, 67, 0.15);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
}

.testimonial-card__quote {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---------- FAQ Section ---------- */
.faq {
  padding: var(--section-padding);
  background: var(--gradient-dark-section);
}

.faq__header {
  text-align: center;
  margin-bottom: 64px;
}

.faq__header .section-title {
  color: var(--white);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.faq-item:hover {
  border-color: rgba(212, 168, 67, 0.2);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--accent-gold);
}

.faq-item__question svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-medium);
  flex-shrink: 0;
  color: var(--accent-gold);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ---------- Contact Form Section ---------- */
.contact {
  padding: var(--section-padding);
  background: var(--gradient-light-section);
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__header {
  margin-bottom: 40px;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.12), rgba(212, 168, 67, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-gold);
}

.contact__info-text h4 {
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.contact__info-text p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.contact__info-text a {
  color: var(--accent-gold-dark);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact__info-text a:hover {
  color: var(--accent-gold);
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-900);
  background: var(--gray-100);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient-gold);
  color: var(--navy-900);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy-900);
  font-family: var(--font-heading);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}

.footer__brand-name span {
  color: var(--accent-gold);
}

.footer__certs {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer__cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-300);
}

.footer__cert svg {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--accent-gold);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__content {
    max-width: 100%;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .hero__trust {
    justify-content: center;
  }
  
  .hero__visual {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-us .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .products__showcase {
    grid-template-columns: 1fr;
  }
  
  .contact .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }
  
  .topbar .container {
    justify-content: center;
  }
  
  .topbar__item:last-child {
    display: none;
  }
  
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .cta-card {
    padding: 40px 24px;
  }
  
  .cta-card__info {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .floating-cta span {
    display: none;
  }
  
  .floating-cta {
    padding: 16px;
    border-radius: 50%;
  }
  
  .footer__top {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__certs {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .products__specs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero__image-wrapper img {
    height: 320px;
  }
  
  .navbar__cta span {
    display: none;
  }
  
  .btn-primary, .btn-secondary {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}
