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

:root {
  /* === Core Brand Colors (unchanged palette) === */
  --primary: #0057D9;
  --primary-rgb: 0, 87, 217;
  --primary-dark: #0045B0;
  --primary-light: #4A90E2;

  --secondary: #0A2342;
  --secondary-rgb: 10, 35, 66;

  --accent: #FF6B00;
  --accent-rgb: 255, 107, 0;
  --accent-light: #FF8C42;
  --accent-pale: #FFF3EA;

  /* === Light Theme Colors === */
  --text-dark: #1E2A3A;
  --text-mid: #3D4F6B;
  --text-muted: #7A8BA0;
  --text-light: #FFFFFF;

  --bg-base: #F0F5FF;
  --bg-soft: #E8F0FE;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-strong: rgba(255, 255, 255, 0.95);

  --border-light: rgba(0, 87, 217, 0.08);
  --border-mid: rgba(0, 87, 217, 0.15);
  --border-focus: #0057D9;

  /* === Typography === */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* === Transitions === */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* === Radii === */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* === Shadows === */
  --shadow-xs: 0 2px 8px rgba(0, 87, 217, 0.05);
  --shadow-sm: 0 4px 16px rgba(0, 87, 217, 0.07);
  --shadow-md: 0 10px 35px rgba(0, 87, 217, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 87, 217, 0.12);
  --shadow-accent: 0 10px 30px rgba(255, 107, 0, 0.22);
  --shadow-glow: 0 0 40px rgba(0, 87, 217, 0.15);

  --container-width: 1320px;
  --header-height: 88px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
input, button, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }

.container { width: 92%; max-width: var(--container-width); margin: 0 auto; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.bg-white { background-color: var(--bg-card); }
.bg-light { background-color: var(--bg-base); }
.bg-soft { background-color: var(--bg-soft); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-column { display: flex; flex-direction: column; }
.gap-1 { gap: 10px; } .gap-2 { gap: 20px; } .gap-3 { gap: 30px; }

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes shine {
  to { background-position: 200% center; }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.3); }
  70% { box-shadow: 0 0 0 20px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}
@keyframes subtleZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.12); }
}
@keyframes fabricFloat1 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { transform: translate(-30px, 40px) scale(1.1) rotate(10deg); }
}
@keyframes fabricFloat2 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { transform: translate(40px, -30px) scale(1.15) rotate(-8deg); }
}
@keyframes fabricFloat3 {
  0% { transform: translateX(-50%) scale(1); }
  100% { transform: translateX(-45%) scale(1.2); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 10px;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(0, 87, 217, 0.30);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 87, 217, 0.40);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--text-light);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-light);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: var(--text-light);
  color: var(--primary);
  border-color: var(--text-light);
  transform: translateY(-3px);
}

.btn-glass {
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  border: 1.5px solid rgba(0, 87, 217, 0.15);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HEADER / NAVBAR
============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 87, 217, 0.08);
  box-shadow: 0 4px 30px rgba(0, 87, 217, 0.06);
  z-index: 1000;
  transition: var(--transition-normal);
}

header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 87, 217, 0.12);
}

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

.logo-img-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 8px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 87, 217, 0.1);
  box-shadow: 0 4px 15px rgba(0, 87, 217, 0.20);
}
.logo-img-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 87, 217, 0.35);
}
.logo-img { height: 100%; width: auto; object-fit: contain; }

.nav-menu { display: flex; gap: 36px; }

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  color: var(--text-mid);
  letter-spacing: 0.2px;
  transition: var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: var(--transition-normal);
  border-radius: 2px;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--primary); font-weight: 700; }
.nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.cart-icon-btn {
  position: relative;
  background: linear-gradient(135deg, var(--bg-soft), #DBEAFE);
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 87, 217, 0.12);
}
.cart-icon-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 800;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(255, 107, 0, 0.4);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-home {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(150deg, #EBF3FF 0%, #F0F7FF 30%, #E8F0FE 60%, #F5F9FF 100%);
  color: var(--text-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--header-height);
  padding-bottom: 40px;
  gap: 40px;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 15% 80%, rgba(0, 87, 217, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 15%, rgba(255, 107, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(74, 144, 226, 0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.fabric-wave-1, .fabric-wave-2, .fabric-wave-3 {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.fabric-wave-1 {
  top: -15%;
  right: -8%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle at 30% 50%, rgba(0, 87, 217, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  animation: fabricFloat1 22s infinite alternate ease-in-out;
  opacity: 0.7;
}

.fabric-wave-2 {
  bottom: 5%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 0, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  animation: fabricFloat2 28s infinite alternate ease-in-out;
  opacity: 0.7;
}

.fabric-wave-3 {
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(0, 87, 217, 0.04) 0%, transparent 65%);
  animation: fabricFloat3 20s infinite alternate ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(235, 243, 255, 0.2) 0%, transparent 50%, rgba(235, 243, 255, 0.1) 100%);
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  animation: subtleZoom 30s infinite alternate ease-in-out;
  opacity: 0.06;
  mix-blend-mode: multiply;
}

.hero-centered-content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto 0;
  padding: 60px 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  background: linear-gradient(135deg, rgba(0, 87, 217, 0.08), rgba(74, 144, 226, 0.08));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 217, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--primary);
  box-shadow: var(--shadow-xs);
}
.hero-badge .fa-crown { color: var(--accent); }

.hero-title-large {
  font-size: clamp(3rem, 6vw, 5.8rem);
  color: var(--text-dark);
  margin-bottom: 28px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 6s linear infinite;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin: 0 auto 50px;
  color: var(--text-mid);
  max-width: 680px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-buttons-centered {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Floating Metrics */
.hero-floating-metrics {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 90%;
  max-width: 1000px;
  margin-bottom: 40px;
}

.glass-metric {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 87, 217, 0.10);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  flex: 1;
  min-width: 210px;
  max-width: 300px;
}
.glass-metric:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
}
.metric-val {
  font-family: var(--font-headings);
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.metric-lbl {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================================================
   PAGE HEADER (Inner pages)
============================================================ */
.page-header {
  position: relative;
  background: linear-gradient(135deg, #EBF3FF 0%, #DBEAFE 50%, #EDE9FE 100%);
  color: var(--text-dark);
  padding: 200px 0 100px;
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 107, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0, 87, 217, 0.08) 0%, transparent 50%);
  z-index: 1;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
  font-size: 4rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.page-header p {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}
.page-header-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: transparent;
  z-index: 1;
}
.page-header-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.04;
}

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  margin-top: -80px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  border: 1px solid rgba(0, 87, 217, 0.08);
}

.stat-item { border-right: 1px solid rgba(0, 87, 217, 0.08); }
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================================
   SECTION TITLE SYSTEM
============================================================ */
.section-title-wrap { margin-bottom: 65px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.10), rgba(255, 140, 66, 0.10));
  color: var(--accent);
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 107, 0, 0.12);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--text-dark);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ============================================================
   GLASS CARDS (Feature Cards)
============================================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 87, 217, 0.08);
  padding: 44px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition-normal);
}
.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 87, 217, 0.13);
  border-color: rgba(0, 87, 217, 0.20);
}
.glass-card:hover::before { opacity: 1; }

.card-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #EBF3FF, #DBEAFE);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 26px;
  transition: var(--transition-normal);
  box-shadow: 0 6px 18px rgba(0, 87, 217, 0.12);
  border: 1px solid rgba(0, 87, 217, 0.10);
}
.glass-card:hover .card-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-light);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-accent);
}
.glass-card h3 { font-size: 1.35rem; margin-bottom: 14px; color: var(--text-dark); }
.glass-card p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.65; }

/* ============================================================
   PARTNERS SECTION
============================================================ */
.partners-section {
  background: linear-gradient(135deg, #EBF3FF 0%, #F0F4FF 50%, #E8F0FE 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 87, 217, 0.07);
  border-bottom: 1px solid rgba(0, 87, 217, 0.07);
}
.partners-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0, 87, 217, 0.03) 0%, transparent 70%);
}
.partners-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.partner-logo {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: var(--transition-fast);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 87, 217, 0.08);
}
.partner-logo i {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
}
.partner-logo:hover {
  background: rgba(255, 255, 255, 1);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   PRODUCT CARDS
============================================================ */
.product-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 55px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(0, 87, 217, 0.12);
  padding: 12px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  color: var(--text-mid);
  font-size: 0.9rem;
  box-shadow: var(--shadow-xs);
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 87, 217, 0.04);
  box-shadow: var(--shadow-sm);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-light);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(0, 87, 217, 0.28);
}

.product-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 87, 217, 0.07);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 87, 217, 0.14);
  border-color: rgba(0, 87, 217, 0.18);
}

.product-img-wrapper {
  height: 320px;
  background: linear-gradient(135deg, #EBF3FF, #F0F7FF);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img-wrapper img { transform: scale(1.08); }

.product-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  z-index: 5;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.28);
}

.product-info { padding: 26px; flex-grow: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.product-title { font-size: 1.25rem; margin-bottom: 10px; color: var(--text-dark); }
.product-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.55;
  flex-grow: 1;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 87, 217, 0.07);
  padding-top: 18px;
  margin-top: auto;
}
.product-specs { display: flex; flex-direction: column; }
.spec-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.spec-val { font-size: 0.9rem; font-weight: 600; color: var(--primary); }

.product-action-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 87, 217, 0.22);
}
.product-action-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  transform: rotate(90deg) scale(1.1);
  box-shadow: var(--shadow-accent);
}

/* ============================================================
   TESTIMONIALS (Home) - NEW CARD LAYOUT
============================================================ */
.testimonials-home-section {
  background: linear-gradient(150deg, #F0F5FF 0%, #EBF3FF 50%, #F5F0FF 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.testimonials-home-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 87, 217, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.testimonials-home-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 87, 217, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition-normal);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(0, 87, 217, 0.12);
  border-color: rgba(0, 87, 217, 0.16);
}
.testimonial-card:hover::before { opacity: 1; }

.tc-quote-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 87, 217, 0.08), rgba(74, 144, 226, 0.10));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  border: 1px solid rgba(0, 87, 217, 0.10);
}

.tc-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  font-size: 0.9rem;
}

.tc-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
}

.tc-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 87, 217, 0.07);
}

.tc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-light);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 87, 217, 0.25);
}

.tc-author-name {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}
.tc-author-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Testimonials Slider (kept for inner pages) */
.testimonials-section {
  background: linear-gradient(135deg, #EBF3FF 0%, #DBEAFE 50%, #E8F0FE 100%);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
}
.testimonial-slider { max-width: 900px; margin: 0 auto; position: relative; height: 320px; z-index: 2; }
.testimonial-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; display: flex; flex-direction: column; align-items: center; text-align: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.testimonial-slide.active { opacity: 1; visibility: visible; }
.testimonial-quote {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 35px;
  color: var(--text-dark);
  font-family: var(--font-headings);
}
.testimonial-author {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonial-role { font-size: 0.88rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; position: relative; z-index: 2; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0, 87, 217, 0.18); cursor: pointer; transition: var(--transition-fast); }
.dot.active { background: linear-gradient(90deg, var(--primary), var(--accent)); width: 28px; border-radius: 5px; }

/* ============================================================
   FAQ SECTION (Home) - NEW PREMIUM DESIGN
============================================================ */
.faq-home-section {
  background: var(--bg-card);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.faq-home-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(0, 87, 217, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(255, 107, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.faq-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-left-info {
  position: sticky;
  top: 120px;
}

.faq-left-info .section-tag { margin-bottom: 24px; }
.faq-left-info .section-title { margin-bottom: 20px; text-align: left; }
.faq-left-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.faq-contact-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--text-light);
}
.faq-contact-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-light);
}
.faq-contact-card p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

/* FAQ List */
.faq-list { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 87, 217, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-xs);
}
.faq-header {
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}
.faq-question {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.faq-icon-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EBF3FF, #DBEAFE);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-normal);
  flex-shrink: 0;
  border: 1px solid rgba(0, 87, 217, 0.10);
}
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-content {
  padding: 0 30px 26px;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  border-top: 1px solid rgba(0, 87, 217, 0.06);
  padding-top: 18px;
}
.faq-item.active {
  border-color: rgba(0, 87, 217, 0.18);
  box-shadow: 0 10px 35px rgba(0, 87, 217, 0.08);
}
.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-light);
  border-color: transparent;
}

/* ============================================================
   QUOTE CART SIDEBAR
============================================================ */
.quote-cart-sidebar {
  position: fixed;
  top: 0;
  right: -460px;
  width: 430px;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: -10px 0 50px rgba(0, 87, 217, 0.10);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(0, 87, 217, 0.08);
}
.quote-cart-sidebar.open { right: 0; }

.cart-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 35, 80, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-header {
  padding: 28px 30px;
  border-bottom: 1px solid rgba(0, 87, 217, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #EBF3FF, #F0F7FF);
}
.cart-header h3 { font-size: 1.3rem; display: flex; align-items: center; gap: 12px; color: var(--text-dark); }
.cart-header h3 .text-accent { color: var(--accent); }

.cart-close-btn {
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0, 87, 217, 0.08);
}
.cart-close-btn:hover { color: var(--primary); background: rgba(0, 87, 217, 0.06); transform: rotate(90deg); }

.cart-items-list { flex-grow: 1; overflow-y: auto; padding: 28px; }
.empty-cart-message { text-align: center; color: var(--text-muted); margin-top: 50px; font-size: 1.05rem; }
.cart-item { display: flex; gap: 18px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid rgba(0, 87, 217, 0.06); }
.cart-item-img { width: 78px; height: 78px; border-radius: var(--radius-md); background: linear-gradient(135deg, #EBF3FF, #F0F7FF); overflow: hidden; border: 1px solid rgba(0, 87, 217, 0.07); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex-grow: 1; }
.cart-item-name { font-weight: 700; font-size: 0.97rem; color: var(--text-dark); }
.cart-item-cat { font-size: 0.78rem; color: var(--accent); font-weight: 600; text-transform: uppercase; margin-top: 4px; }
.cart-item-quantity { display: flex; align-items: center; gap: 14px; margin-top: 12px; }
.qty-btn { width: 28px; height: 28px; border-radius: 7px; background: rgba(0, 87, 217, 0.06); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: bold; cursor: pointer; user-select: none; border: 1px solid rgba(0, 87, 217, 0.12); transition: var(--transition-fast); }
.qty-btn:hover { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--text-light); border-color: transparent; }
.cart-item-remove { background: none; cursor: pointer; color: #EF4444; font-size: 0.88rem; align-self: flex-start; margin-top: 5px; opacity: 0.65; transition: var(--transition-fast); }
.cart-item-remove:hover { opacity: 1; transform: scale(1.1); }
.cart-footer { padding: 28px; border-top: 1px solid rgba(0, 87, 217, 0.07); background: linear-gradient(135deg, #F8FBFF, #F0F5FF); }
.cart-footer-btn { width: 100%; padding: 16px; font-size: 1.05rem; }

/* ============================================================
   CONTACT FORMS
============================================================ */
.contact-form-container {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 87, 217, 0.07);
  padding: 50px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 28px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group.full-width { grid-column: span 2; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-input, .form-select, .form-textarea {
  border: 1.5px solid rgba(0, 87, 217, 0.10);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-normal);
  background: linear-gradient(135deg, #F8FBFF, #F0F5FF);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(0, 87, 217, 0.08);
}
.form-textarea { min-height: 150px; resize: vertical; }

/* Quote Modal */
.quote-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%; max-width: 560px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 87, 217, 0.20);
  z-index: 2100;
  padding: 42px;
  opacity: 0; visibility: hidden;
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 87, 217, 0.10);
}
.quote-modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; visibility: visible; }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.modal-close-btn { background: rgba(0, 87, 217, 0.05); cursor: pointer; font-size: 1.1rem; color: var(--text-dark); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); border: 1px solid rgba(0, 87, 217, 0.08); }
.modal-close-btn:hover { background: rgba(0, 87, 217, 0.08); transform: rotate(90deg); }

/* ============================================================
   ABOUT PAGE SPECIFIC
============================================================ */
.about-grid-content { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 80px; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.about-feat-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 87, 217, 0.07);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-normal);
}
.about-feat-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(0, 87, 217, 0.15); }
.about-feat-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
  margin-top: 3px;
}
.about-feat-item h4 { font-size: 1.05rem; margin-bottom: 7px; color: var(--text-dark); }
.about-feat-item p { font-size: 0.9rem; color: var(--text-muted); }

.about-graphic-side { position: relative; }
.about-poster-main { width: 100%; height: 550px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(0, 87, 217, 0.08); }
.about-poster-main img { width: 100%; height: 100%; object-fit: cover; }
.about-overlap-badge {
  position: absolute;
  bottom: -40px; left: -40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-light);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 87, 217, 0.25);
  border: 3px solid rgba(255, 107, 0, 0.5);
}
.about-overlap-badge .num {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 5px;
}
.about-overlap-badge .lbl { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.85; }

/* ============================================================
   SERVICES / CONFIGURATOR
============================================================ */
.configurator-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 87, 217, 0.07);
  padding: 50px;
  box-shadow: var(--shadow-lg);
}
.configurator-controls h3 { font-size: 1.6rem; margin-bottom: 25px; color: var(--text-dark); }
.config-options-group { margin-bottom: 28px; }
.config-options-group h4 { font-weight: 700; margin-bottom: 12px; font-size: 0.93rem; color: var(--text-mid); }
.color-pickers { display: flex; gap: 12px; flex-wrap: wrap; }
.color-option { width: 38px; height: 38px; border-radius: 50%; cursor: pointer; transition: var(--transition-normal); border: 2px solid transparent; }
.color-option.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 87, 217, 0.18); transform: scale(1.15); }
.configurator-preview { display: flex; flex-direction: column; }
.uniform-render-canvas {
  background: linear-gradient(135deg, #EBF3FF, #F0F5FF);
  border-radius: var(--radius-md);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 87, 217, 0.08);
  min-height: 300px;
}
.uniform-svg { max-width: 100%; height: auto; }

/* ============================================================
   MEASUREMENT TABLE
============================================================ */
.table-responsive { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid rgba(0, 87, 217, 0.07); box-shadow: var(--shadow-sm); }
.measurement-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.measurement-table thead { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--text-light); }
.measurement-table th { padding: 18px 24px; text-align: left; font-weight: 600; font-family: var(--font-headings); letter-spacing: 0.5px; }
.measurement-table td { padding: 16px 24px; border-bottom: 1px solid rgba(0, 87, 217, 0.05); }
.measurement-table tbody tr { transition: var(--transition-fast); }
.measurement-table tbody tr:hover { background: rgba(0, 87, 217, 0.025); }
.measurement-table tbody tr:nth-child(even) { background: rgba(0, 87, 217, 0.015); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: linear-gradient(180deg, #EBF3FF 0%, #E0ECFF 40%, #D6E6FF 100%);
  color: var(--text-mid);
  padding: 100px 0 40px;
  border-top: 1px solid rgba(0, 87, 217, 0.12);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite;
}
footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 87, 217, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 80px; position: relative; z-index: 2; }
.footer-col h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 28px;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 0;
  width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}
.footer-col p { font-size: 0.93rem; line-height: 1.8; color: var(--text-muted); }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 0.93rem; color: var(--text-muted); transition: var(--transition-fast); }
.footer-links a:hover { color: var(--primary); padding-left: 8px; }
.footer-contact { display: flex; flex-direction: column; gap: 18px; font-size: 0.93rem; }
.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.footer-contact-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.1rem;
  margin-top: 3px;
}
.footer-bottom { border-top: 1px solid rgba(0, 87, 217, 0.10); padding-top: 36px; font-size: 0.88rem; position: relative; z-index: 2; color: var(--text-muted); }
.footer-bottom .flex.gap-2 a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0, 87, 217, 0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: var(--transition-fast);
  border: 1px solid rgba(0, 87, 217, 0.10);
}
.footer-bottom .flex.gap-2 a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
  border-color: transparent;
}

/* ============================================================
   WHATSAPP STICKY BUTTON
============================================================ */
.whatsapp-sticky-btn {
  position: fixed; bottom: 36px; right: 36px; left: auto;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  width: 64px; height: 64px; border-radius: 50%;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.40);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem; z-index: 1998; transition: var(--transition-normal);
  animation: pulse-ring 3s infinite;
}
.whatsapp-sticky-btn:hover {
  transform: scale(1.12) translateY(-5px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.60);
}

/* ============================================================
   PREMIUM FEATURE STRIP / CTA SECTION
============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0A2342 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(255, 107, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 50%, rgba(74, 144, 226, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.cta-text h2 { font-size: 2.3rem; color: var(--text-light); margin-bottom: 12px; }
.cta-text p { font-size: 1.05rem; color: rgba(255,255,255,0.8); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .testimonial-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-home-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-left-info { position: static; }
}

@media (max-width: 1024px) {
  :root { --header-height: 78px; }
  .about-grid-content { grid-template-columns: 1fr; }
  .about-graphic-side { margin-top: 70px; max-width: 600px; margin-left: auto; margin-right: auto; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: -40px; }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .configurator-card { grid-template-columns: 1fr; }
  .cta-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .testimonial-cards-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .mobile-nav-toggle { display: block; }
  .hero-title-large { font-size: 2.8rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0, 87, 217, 0.07); padding-bottom: 20px; margin-bottom: 20px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .quote-cart-sidebar { width: 100%; right: -100%; }
  .configurator-card { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .hero-floating-metrics { flex-direction: column; align-items: center; }
  .glass-metric { min-width: 100%; max-width: 100%; }
  .about-overlap-badge { position: static; margin-top: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
}
