/* ==========================================================================
   NOBA PRO — Premium SaaS B2B Stylesheet
   Identity: "Gérez votre salle d’attente, optimisez votre temps."
   Stack: Vanilla HTML5, CSS3, Vanilla JS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM & CSS VARIABLES
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  /* Brand Palette */
  --navy: #061D49;
  --royal-blue: #0755CC;
  --bright-blue: #087CEB;
  --cyan: #08D5C0;
  --dark-cyan: #08AFA9;
  --white: #FFFFFF;
  
  /* Backgrounds */
  --bg-main: #F8FAFD;
  --bg-secondary: #F0F5FA;
  --bg-dark: #061D49;
  
  /* Typography Colors */
  --text-main: #071A3D;
  --text-muted: #536277;
  --text-light: #94A3B8;
  
  /* Borders & Accents */
  --border-color: #DCE6F0;
  --border-focus: #087CEB;
  --success: #11A65A;
  --warning-bg: #FFF7ED;
  --warning-text: #EA580C;
  --problem-red: #EF4444;
  --problem-bg: #FEF2F2;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #08D5C0 0%, #087CEB 55%, #0755CC 100%);
  --gradient-hover: linear-gradient(135deg, #0BE8D2 0%, #0988FF 55%, #0861E8 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(8, 213, 192, 0.08) 0%, rgba(8, 124, 235, 0.08) 100%);
  --gradient-glow: radial-gradient(circle, rgba(8, 213, 192, 0.15) 0%, rgba(8, 124, 235, 0.05) 70%, transparent 100%);

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(6, 29, 73, 0.045);
  --shadow-md: 0 10px 28px rgba(6, 29, 73, 0.075);
  --shadow-lg: 0 18px 44px rgba(6, 29, 73, 0.10);
  --shadow-xl: 0 28px 70px rgba(6, 29, 73, 0.14);
  --shadow-glow: 0 10px 30px rgba(8, 213, 192, 0.35);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.18s ease-in-out;
  
  /* Layout Constraints */
  --max-width: 1200px;
  --nav-height: 68px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Inter', sans-serif;
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 3.8vw + 0.8rem, 3.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw + 0.6rem, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 1.4vw + 0.4rem, 1.45rem);
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.bg-white { background-color: var(--white) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-dark { background-color: var(--navy) !important; color: var(--white) !important; }

/* Global Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-sm {
  padding: 3.5rem 0;
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.75rem auto;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg-secondary);
  color: var(--royal-blue);
  border: 1px solid rgba(7, 85, 204, 0.15);
  margin-bottom: 1.25rem;
}

.badge-cyan {
  background: rgba(8, 213, 192, 0.1);
  color: var(--dark-cyan);
  border-color: rgba(8, 213, 192, 0.3);
}

.badge-warning {
  background: var(--problem-bg);
  color: var(--problem-red);
  border-color: rgba(239, 68, 68, 0.2);
}

.badge-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.65rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.98rem;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(8, 124, 235, 0.28);
}

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--royal-blue);
  color: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  background: var(--bg-main);
  color: var(--royal-blue);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1.02rem;
}

/* --------------------------------------------------------------------------
   3. HEADER & STICKY NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 236, 244, 0.7);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(6, 29, 73, 0.08);
  height: 60px;
  border-bottom-color: var(--border-color);
}

.header .container {
  max-width: 1320px;
  height: 100%;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.brand-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: 2.5rem;
  margin-right: auto;
  list-style: none;
  padding: 0;
}

.mobile-cta-wrapper {
  display: none !important;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-actions .btn {
  min-height: 42px;
  font-size: 0.84rem;
  padding: 0.55rem 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(7, 85, 204, 0.18);
}

.nav-actions .btn-primary {
  background: var(--royal-blue);
}

.nav-actions .btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(6, 29, 73, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--navy);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding-top: calc(var(--nav-height) + 3.25rem);
  padding-bottom: 5.5rem;
  background: radial-gradient(circle at 88% 12%, rgba(8, 213, 192, 0.11) 0%, transparent 46%),
              radial-gradient(circle at 8% 86%, rgba(8, 124, 235, 0.075) 0%, transparent 38%),
              var(--bg-main);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero-content {
  max-width: 600px;
}

.hero-typewriter {
  min-height: 3.75em;
}

.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.82em;
  margin-left: 0.1em;
  border-radius: 3px;
  background: var(--bright-blue);
  vertical-align: -0.05em;
  animation: typing-cursor-blink 0.75s steps(1, end) infinite;
}

.hero-typewriter.typing-complete .typing-cursor {
  animation: typing-cursor-finish 0.45s ease 0.7s forwards;
}

@keyframes typing-cursor-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes typing-cursor-finish {
  to { opacity: 0; }
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-main);
  font-weight: 500;
  margin: 1rem 0 0.75rem 0;
  line-height: 1.65;
}

.hero-target {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  margin-bottom: 0;
}

.hero-ctas .btn {
  flex: 1 1 0;
  padding-inline: 1rem;
  font-size: 0.9rem;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  list-style: none;
  margin-top: 1.6rem;
}

.hero-features-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 64px;
  padding: 0.75rem 0.7rem;
  border: 1px solid rgba(8, 124, 235, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
  text-align: center;
}

.hero-features-list li span {
  color: var(--success);
  font-weight: 800;
}

/* Hero Visual & Mockup Frame */
.hero-visual {
  position: relative;
  align-self: start;
}

.visual-stack {
  position: relative;
  width: 100%;
}

.mockup-window {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.mockup-window:hover {
  transform: translateY(-2px);
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
  animation: none;
}

.floating-badge-1 {
  top: -20px;
  right: -10px;
}

.floating-badge-2 {
  bottom: 20px;
  left: -20px;
  animation-delay: -2s;
}

.badge-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--royal-blue);
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   5. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
}

.trust-title {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  opacity: 0.9;
  transition: opacity 0.4s ease, color 0.2s ease, transform 0.25s ease;
}

.trust-item:hover {
  opacity: 1;
  color: var(--royal-blue);
  transform: translateY(-3px);
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--bright-blue);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.trust-item:hover svg {
  transform: translateY(-2px) scale(1.08);
  color: var(--cyan-dark);
}

.trust-title.fade-up {
  transform: translateY(10px);
}

.trust-item.fade-up {
  transform: translateY(12px);
}

.trust-title.fade-up.visible,
.trust-item.fade-up.visible {
  transform: translateY(0);
}

.trust-item.fade-up.visible:hover {
  transform: translateY(-3px);
}

.trust-item:nth-child(1) { transition-delay: 0.03s; }
.trust-item:nth-child(2) { transition-delay: 0.08s; }
.trust-item:nth-child(3) { transition-delay: 0.13s; }
.trust-item:nth-child(4) { transition-delay: 0.18s; }
.trust-item:nth-child(5) { transition-delay: 0.23s; }
.trust-item:nth-child(6) { transition-delay: 0.28s; }

.trust-item:hover {
  transition-delay: 0s;
}

/* --------------------------------------------------------------------------
   6. PROBLEM SECTION
   -------------------------------------------------------------------------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: rgba(239, 68, 68, 0.7);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(239, 68, 68, 0.3);
}

.problem-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--problem-red);
  background: var(--problem-bg);
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.problem-card p {
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   7. BEFORE / AFTER COMPARISON SECTION
   -------------------------------------------------------------------------- */
.comparison-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-top: 3rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
}

.comparison-col {
  padding: 3rem 2.5rem;
}

.col-before {
  background: #FAF8F8;
  border-right: 1px solid var(--border-color);
}

.col-after {
  background: var(--bg-secondary);
}

.col-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.col-header-badge {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.badge-red {
  background: var(--problem-bg);
  color: var(--problem-red);
}

.badge-green {
  background: rgba(8, 213, 192, 0.15);
  color: var(--royal-blue);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.icon-cross {
  color: var(--problem-red);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.icon-check {
  color: var(--cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
  background: var(--royal-blue);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.comparison-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.divider-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(8, 124, 235, 0.4);
}

/* --------------------------------------------------------------------------
   8. SOLUTION SECTION
   -------------------------------------------------------------------------- */
.solution-showcase {
  margin-top: 3.5rem;
  position: relative;
}

.main-mockup-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  position: relative;
}

.annotations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.annotation-pill {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: var(--transition);
}

.annotation-pill:hover {
  border-color: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-secondary);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   9. FEATURES SECTION
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  --feature-accent: 8, 124, 235;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8, 124, 235, 0.25);
}

.feature-icon-wrapper {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(var(--feature-accent), 0.18), rgba(var(--feature-accent), 0.06));
  color: rgb(var(--feature-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--feature-accent), 0.22);
  box-shadow: 0 10px 24px rgba(var(--feature-accent), 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon-wrapper::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: -3px;
  right: -3px;
  border-radius: 50%;
  background: rgb(var(--feature-accent));
  box-shadow: 0 0 0 5px rgba(var(--feature-accent), 0.12);
}

.feature-icon-wrapper svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card:hover .feature-icon-wrapper {
  transform: translateY(-2px) rotate(-3deg) scale(1.05);
  box-shadow: 0 14px 30px rgba(var(--feature-accent), 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card:nth-child(2) { --feature-accent: 0, 181, 164; }
.feature-card:nth-child(3) { --feature-accent: 124, 58, 237; }
.feature-card:nth-child(4) { --feature-accent: 14, 165, 233; }
.feature-card:nth-child(5) { --feature-accent: 245, 158, 11; }
.feature-card:nth-child(6) { --feature-accent: 16, 185, 129; }

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.feature-card p {
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   10. PACKS SECTION
   -------------------------------------------------------------------------- */
.packs-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(8, 213, 192, 0.11), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(8, 124, 235, 0.12), transparent 30%),
    var(--bg-main);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1080px;
  margin: 3.5rem auto 0;
  align-items: start;
}

.pack-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2.25rem;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pack-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(8, 45, 82, 0.14);
}

.pack-card-featured {
  border: 2px solid var(--royal-blue);
  box-shadow: 0 22px 50px rgba(8, 124, 235, 0.16);
}

.pack-popular {
  position: absolute;
  top: -15px;
  right: 24px;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--gradient-primary);
  box-shadow: 0 8px 20px rgba(8, 124, 235, 0.28);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pack-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.pack-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--royal-blue);
  background: var(--gradient-subtle);
  border: 1px solid rgba(8, 124, 235, 0.18);
}

.pack-card-featured .pack-icon {
  color: var(--white);
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(8, 124, 235, 0.25);
}

.pack-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pack-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--royal-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pack-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.pack-intro {
  padding-bottom: 1.4rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

.pack-features {
  display: grid;
  gap: 0.78rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.pack-features li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--navy);
  font-size: 0.94rem;
  line-height: 1.45;
}

.pack-features li::before {
  content: "✓";
  position: absolute;
  top: 0.05rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-size: 0.7rem;
  font-weight: 900;
}

.pack-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: -0.4rem 0 1.3rem;
  padding: 0.75rem 0.9rem;
  border-radius: 11px;
  color: var(--text-muted);
  background: rgba(245, 158, 11, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
}

.pack-note svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #d97706;
  stroke-width: 2;
}

.pack-cta {
  width: 100%;
  margin-top: auto;
}

.packs-help {
  margin: 2rem auto 0;
  text-align: center;
  color: var(--text-muted);
}

.packs-help a {
  color: var(--royal-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   11. HOW IT WORKS SECTION (TIMELINE)
   -------------------------------------------------------------------------- */
.timeline-wrapper {
  margin-top: 3.5rem;
  position: relative;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  position: relative;
}

.timeline-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.timeline-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.step-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  background: var(--gradient-primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.timeline-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.timeline-step p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.ticket-kiosk-showcase {
  max-width: 1040px;
  margin: 3.5rem auto 0;
  text-align: center;
}

.ticket-kiosk-frame {
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.ticket-kiosk-frame img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 0.5rem);
}

.ticket-kiosk-showcase figcaption {
  max-width: 760px;
  margin: 1.25rem auto 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. ECOSYSTEM SYNCHRONIZED SECTION
   -------------------------------------------------------------------------- */
.ecosystem-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.ecosystem-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0 2rem 0;
}

.eco-node {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.eco-node:hover {
  border-color: var(--royal-blue);
  color: var(--royal-blue);
  transform: scale(1.04);
}

.eco-node-center {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1.5rem 2.25rem;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
}

.eco-arrow {
  color: var(--bright-blue);
  font-weight: 900;
  font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
   12. SECTORS SECTION & FILTER TABS
   -------------------------------------------------------------------------- */
#secteurs {
  background:
    radial-gradient(circle at 8% 12%, rgba(8, 213, 192, 0.09), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(7, 85, 204, 0.08), transparent 30%),
    var(--bg-main);
  overflow: hidden;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 12px rgba(6, 29, 73, 0.04);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 85, 204, 0.18);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.sector-card {
  --sector-accent: var(--royal-blue);
  --sector-soft: rgba(7, 85, 204, 0.09);
  --sector-shadow: rgba(7, 85, 204, 0.12);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--sector-accent);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.sector-card[data-category="sante"] {
  --sector-accent: #087CEB;
  --sector-soft: rgba(8, 124, 235, 0.09);
  --sector-shadow: rgba(8, 124, 235, 0.14);
}

.sector-card[data-category="admin"] {
  --sector-accent: #7C3AED;
  --sector-soft: rgba(124, 58, 237, 0.09);
  --sector-shadow: rgba(124, 58, 237, 0.14);
}

.sector-card[data-category="services"] {
  --sector-accent: #08AFA9;
  --sector-soft: rgba(8, 175, 169, 0.1);
  --sector-shadow: rgba(8, 175, 169, 0.14);
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px var(--sector-shadow);
  border-color: color-mix(in srgb, var(--sector-accent) 35%, var(--border-color));
}

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

.sector-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--sector-soft);
  color: var(--sector-accent);
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.sector-card:hover .sector-icon {
  transform: translateY(-2px) rotate(-3deg) scale(1.06);
}

.sector-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.sector-card p {
  font-size: 0.92rem;
}

.sector-card.fade-up.visible {
  animation: sector-reveal 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sector-card:nth-child(2) { animation-delay: 0.05s; }
.sector-card:nth-child(3) { animation-delay: 0.1s; }
.sector-card:nth-child(4) { animation-delay: 0.15s; }
.sector-card:nth-child(5) { animation-delay: 0.2s; }
.sector-card:nth-child(6) { animation-delay: 0.25s; }
.sector-card:nth-child(7) { animation-delay: 0.3s; }
.sector-card:nth-child(8) { animation-delay: 0.35s; }

@keyframes sector-reveal {
  from { opacity: 0; transform: translateY(22px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --------------------------------------------------------------------------
   13. BENEFITS SECTION (DARK NAVY)
   -------------------------------------------------------------------------- */
.benefits-section {
  background: var(--navy);
  color: var(--white);
}

.benefits-section h2, .benefits-section p {
  color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
  border-color: var(--cyan);
}

.benefit-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #CBD5E1;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   14. MEDICAL & LABORATORY TARGET SECTIONS
   -------------------------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section > * {
  min-width: 0;
}

.check-bullets {
  list-style: none;
  margin: 1.75rem 0 2.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.check-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.check-bullets li::before {
  content: '✓';
  color: var(--white);
  background: var(--royal-blue);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   15. INSTALLATION TURNKEY SECTION
   -------------------------------------------------------------------------- */
.turnkey-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(8, 213, 192, 0.075), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(7, 85, 204, 0.07), transparent 30%),
    var(--white) !important;
  overflow: hidden;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.install-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #08D5C0, #087CEB, #7C3AED, #11A65A, #08D5C0);
  background-size: 220% 100%;
  animation: setup-flow 5s linear infinite;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.install-card {
  --install-accent: var(--bright-blue);
  --install-soft: rgba(8, 124, 235, 0.09);
  --install-shadow: rgba(8, 124, 235, 0.13);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  z-index: 1;
}

.install-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--install-accent);
}

.install-card:nth-child(1) {
  --install-accent: #08AFA9;
  --install-soft: rgba(8, 175, 169, 0.1);
  --install-shadow: rgba(8, 175, 169, 0.14);
}

.install-card:nth-child(2) {
  --install-accent: #087CEB;
  --install-soft: rgba(8, 124, 235, 0.09);
  --install-shadow: rgba(8, 124, 235, 0.14);
}

.install-card:nth-child(3) {
  --install-accent: #7C3AED;
  --install-soft: rgba(124, 58, 237, 0.09);
  --install-shadow: rgba(124, 58, 237, 0.14);
}

.install-card:nth-child(4) {
  --install-accent: #11A65A;
  --install-soft: rgba(17, 166, 90, 0.1);
  --install-shadow: rgba(17, 166, 90, 0.14);
}

.install-card:hover {
  transform: translateY(-6px);
  border-color: var(--install-accent);
  box-shadow: 0 18px 38px var(--install-shadow);
}

.install-step-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--install-soft);
  color: var(--install-accent);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  border: 2px solid var(--install-accent);
  position: relative;
  z-index: 3;
  box-shadow: 0 0 0 7px var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.install-step-badge::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--install-accent);
  border: 2px solid var(--white);
  animation: status-pulse 2.2s ease-out infinite;
}

.install-card:hover .install-step-badge {
  transform: scale(1.08);
  box-shadow: 0 0 0 7px var(--white), 0 8px 20px var(--install-shadow);
}

.install-card.fade-up.visible {
  animation: install-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.install-card:nth-child(2) { animation-delay: 0.12s; }
.install-card:nth-child(3) { animation-delay: 0.24s; }
.install-card:nth-child(4) { animation-delay: 0.36s; }

@keyframes setup-flow {
  to { background-position: -220% 0; }
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 var(--install-shadow); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

@keyframes install-reveal {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --------------------------------------------------------------------------
   16. MAIN CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-wrapper {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner-wrapper h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw + 1rem, 3rem);
  margin-bottom: 1.25rem;
}

.cta-banner-wrapper p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.cta-trust-tags {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   17. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 840px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: none;
  transition: var(--transition);
}

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

.faq-button {
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--navy);
  color: var(--white);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 2rem;
}

.faq-item.active .faq-content {
  padding: 0 2rem 1.75rem 2rem;
}

.faq-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   18. QUICK CONTACT FORM
   -------------------------------------------------------------------------- */
.contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.25rem 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

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

.form-grid > * {
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.form-input, .form-select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--white);
  font-size: 1rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: var(--royal-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(7, 85, 204, 0.1);
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4.5rem 0 2.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  height: 46px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer-contact-list {
  display: grid;
  gap: 0.8rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  color: #CBD5E1;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact-link strong {
  display: block;
  margin-top: 0.1rem;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan);
}

.footer-contact-icon svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #94A3B8;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #94A3B8;
}

.footer-legal a:hover {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   20. FLOATING WHATSAPP BUTTON & STICKY MOBILE BAR
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.floating-tooltip {
  position: absolute;
  right: 0;
  bottom: 110%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .floating-tooltip {
  opacity: 1;
  bottom: 125%;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--royal-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Sticky Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(6, 29, 73, 0.12);
  z-index: 1000;
  border-top: 1px solid var(--border-color);
}

.mobile-bottom-bar .btn {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE BREAKPOINTS (TABLETS & SMARTPHONES)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    margin: 0;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .mobile-cta-wrapper {
    display: flex !important;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
  }

  .nav-actions {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-typewriter {
    min-height: 2.5em;
  }

  .hero-target {
    border-left: none;
    padding: 0;
    background: transparent;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-features-list {
    justify-content: center;
  }

  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

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

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

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

  .col-before {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .comparison-divider {
    margin: -1.5rem 0;
  }
}

@media (max-width: 768px) {

  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
  }

  .pack-card {
    padding: 1.65rem;
  }

  .hero-typewriter {
    min-height: 3.75em;
  }
  body {
    padding-bottom: 4.75rem;
  }

  .section {
    padding: 3.75rem 0;
  }

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

  .install-grid::before {
    display: none;
  }

  .ticket-kiosk-showcase {
    margin-top: 2.5rem;
  }

  .ticket-kiosk-frame {
    padding: 0.35rem;
    border-radius: var(--radius-md);
  }

  .ticket-kiosk-frame img {
    border-radius: calc(var(--radius-md) - 0.25rem);
  }

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

  .contact-card {
    padding: 2.25rem 1.5rem;
  }

  .form-grid .btn {
    white-space: normal;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .floating-whatsapp {
    display: none;
  }

  .back-to-top {
    bottom: 4.5rem;
    left: 1.25rem;
  }

  .mobile-bottom-bar {
    display: block;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.25rem 0;
  }

  .cta-banner-wrapper {
    padding: 2.75rem 1.25rem;
  }

  .floating-badge {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-features-list {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }

  .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   22. ACCESSIBILITY & ANIMATION REVEALS
   -------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--bright-blue);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}
