/* ==========================================================================
   ZENTEGRA - CERTIFICATIONS & EXPERTISE PAGE (PERFECT ALIGNMENT ENGINE)
   Design System: Swiss Modern Light Enterprise Technology
   Theme: Pure White (#FFFFFF), Warm Off-White (#F9F8F5), Champagne Gold (#B8792A), Emerald Teal (#0D7E66)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & SYSTEM SETUP
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-white: #FFFFFF;
  --bg-off-white: #F9F8F5;
  --bg-card-light: #FFFFFF;
  --bg-card-subtle: #F4F2EC;
  --bg-dark-accent: #101820;

  /* Official Odoo Purple Theme Accents */
  --accent-gold-primary: #875A7B;
  --accent-gold-hover: #714B67;
  --accent-gold-light: #F4EBF1;
  --accent-gold-glow: rgba(135, 90, 123, 0.18);
  --gradient-gold: linear-gradient(135deg, #A24689 0%, #714B67 100%);

  /* Deep Emerald Teal Secondary Accent */
  --accent-teal: #0D7E66;
  --accent-teal-light: #E6F5F2;
  --accent-teal-glow: rgba(13, 126, 102, 0.18);

  /* Official Odoo Purple Brand Color */
  --accent-odoo-purple: #875A7B;
  --accent-odoo-purple-bright: #A24689;
  --accent-odoo-purple-light: #F4EBF1;

  /* Typography Colors */
  --text-dark: #101820;
  --text-muted-dark: #525C6A;
  --text-light: #FFFFFF;
  --text-muted-light: #94A3B8;

  /* Borders & Shadows */
  --border-light: #E5E3DC;
  --border-subtle: #EFECE6;
  --border-gold-subtle: rgba(135, 90, 123, 0.25);
  --border-gold-bright: rgba(135, 90, 123, 0.5);

  /* Fonts */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Radius & 3D Shadow Elevation */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px rgba(16, 24, 32, 0.06);
  --shadow-card-hover: 0 20px 40px rgba(16, 24, 32, 0.12), 0 0 25px rgba(135, 90, 123, 0.2);
  --shadow-gold: 0 12px 30px rgba(135, 90, 123, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-3d: transform 0.3s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.3s ease;
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
}

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

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

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

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.mono-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #A24689 0%, #714B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold { color: var(--accent-gold-primary); }
.text-teal { color: var(--accent-teal); }
.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }
.text-muted-dark { color: var(--text-muted-dark); }
.text-muted-light { color: var(--text-muted-light); }

.text-odoo-purple {
  color: #A24689 !important;
  -webkit-text-fill-color: #A24689 !important;
  font-weight: 700;
}

.gold-gradient-text .text-odoo-purple {
  background: linear-gradient(135deg, #C250A3 0%, #A24689 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

.eyebrow-badge .text-odoo-purple {
  color: #A24689 !important;
  -webkit-text-fill-color: #A24689 !important;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.text-center { text-align: center; }

/* Eyebrow Badge Component */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent-gold-light);
  border: 1px solid var(--border-gold-subtle);
  color: var(--accent-gold-primary);
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(184, 121, 42, 0.08);
}

.eyebrow-badge.dark-badge {
  background: rgba(16, 24, 32, 0.05);
  border-color: rgba(16, 24, 32, 0.15);
  color: var(--accent-gold-primary);
}

.eyebrow-badge.gold-border-badge {
  border-color: var(--accent-gold-primary);
  color: var(--accent-gold-primary);
  background: var(--bg-white);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold-primary);
  box-shadow: 0 0 10px var(--accent-gold-primary);
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 16px var(--accent-gold-primary); }
}

/* Light Theme Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--bg-dark-accent);
  color: var(--bg-white);
  border: 1px solid var(--bg-dark-accent);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.15);
}

.btn-primary:hover {
  background-color: #1A2634;
  border-color: var(--accent-gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 24, 32, 0.25);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(184, 121, 42, 0.35);
}

.btn-outline-light {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.btn-outline-light:hover {
  border-color: var(--accent-gold-primary);
  color: var(--accent-gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   3. STICKY HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-smooth);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-bottom-color: var(--border-gold-subtle);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;
  padding: 16px 24px;
  box-sizing: border-box;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.site-logo-img {
  height: 38px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo-wrap:hover .site-logo-img {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast);
}

.footer-logo-img:hover {
  transform: scale(1.04);
}

.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--accent-gold-primary);
}

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

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

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: var(--bg-off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px 12px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--accent-gold-primary);
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--accent-gold-primary);
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: all var(--transition-smooth);
  padding: 80px 24px 40px 24px;
  box-sizing: border-box;
}

.mobile-menu-drawer.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.drawer-inner {
  width: 100%;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--accent-gold-primary);
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-contact {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--bg-off-white);
  color: var(--text-dark);
  padding: 160px 0 100px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.orb-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.25;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-gold {
  top: -10%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--accent-gold-primary) 0%, transparent 70%);
}

.orb-teal {
  bottom: -10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-teal) 0%, transparent 70%);
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--text-dark);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted-dark);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust-tags {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.trust-item {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Visual: Enterprise Odoo Dashboard Preview Mockup */
.dashboard-window {
  background: var(--bg-white);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(16, 24, 32, 0.12), 0 0 35px rgba(184, 121, 42, 0.1);
  transition: var(--transition-3d);
  width: 100%;
  box-sizing: border-box;
}

.dashboard-window:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(16, 24, 32, 0.16), 0 0 45px rgba(184, 121, 42, 0.18);
  border-color: var(--accent-gold-primary);
}

/* Window Bar */
.window-bar {
  background: #F1EFEA;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
  box-sizing: border-box;
}

.window-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.control-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.control-dot.close { background-color: #ED6A5E; }
.control-dot.minimize { background-color: #F5BF4F; }
.control-dot.expand { background-color: #62C554; }

.window-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.window-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 126, 102, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(13, 126, 102, 0.2);
  color: var(--accent-teal);
  font-size: 0.65rem;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-teal);
  box-shadow: 0 0 8px var(--accent-teal);
  animation: pulseTeal 2s infinite alternate;
}

@keyframes pulseTeal {
  0% { opacity: 0.6; }
  100% { opacity: 1; box-shadow: 0 0 12px var(--accent-teal); }
}

/* Dashboard Body */
.dashboard-body {
  padding: 24px;
  box-sizing: border-box;
}

/* Dashboard KPIs */
.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.kpi-card {
  background: var(--bg-off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
}

.kpi-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted-dark);
  letter-spacing: 0.05em;
}

.kpi-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1;
}

.kpi-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted-dark);
}

.kpi-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.kpi-badge.positive { color: var(--accent-teal); }
.kpi-badge.gold { color: var(--accent-gold-primary); }

/* Dashboard Chart Area */
.dashboard-chart-area {
  background: var(--bg-off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
  flex-wrap: wrap;
}

.chart-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

.legend-item {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.legend-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.legend-item.gold .dot { background-color: var(--accent-gold-primary); }
.legend-item.teal .dot { background-color: var(--accent-teal); }

.chart-svg-wrap {
  width: 100%;
  height: 140px;
}

.chart-svg-wrap svg {
  width: 100%;
  height: 100%;
}

/* Applications Ribbon */
.dashboard-apps-ribbon {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ribbon-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted-dark);
  letter-spacing: 0.05em;
}

.ribbon-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.app-chip {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.app-chip:hover {
  border-color: var(--accent-gold-primary);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. TRUST / STATISTICS STRIP
   -------------------------------------------------------------------------- */
.stats-strip {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 50px 0;
  box-shadow: var(--shadow-subtle);
  position: relative;
  z-index: 20;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 0 12px;
}

.stat-number-wrap {
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.stat-text {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--accent-gold-primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  letter-spacing: 0.08em;
  display: block;
}

/* --------------------------------------------------------------------------
   6. CERTIFICATION INTRODUCTION
   -------------------------------------------------------------------------- */
.cert-intro-section {
  padding: 120px 0;
  background-color: var(--bg-off-white);
  border-bottom: 1px solid var(--border-light);
}

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

.section-title {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  color: var(--text-dark);
}

.section-paragraph {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 36px;
}

.intro-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-primary);
  font-size: 1.2rem;
  box-shadow: var(--shadow-subtle);
  flex-shrink: 0;
}

.intro-feature-item h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.intro-feature-item p {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
}

/* 3D Seal Graphic */
.intro-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.seal-container {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-sizing: border-box;
}

.seal-container:hover {
  transform: rotateY(15deg) rotateX(10deg) scale(1.03);
}

.circular-text-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateText 25s linear infinite;
}

@keyframes rotateText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.seal-text-path {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
}

.seal-inner-card {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--accent-gold-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 5;
  transform: translateZ(20px);
}

.seal-emblem {
  font-size: 2.2rem;
  color: var(--accent-gold-primary);
  margin-bottom: 6px;
}

.seal-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}

.seal-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}

.seal-gold-bar {
  width: 40px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 10px 0;
  border-radius: var(--radius-pill);
}

.seal-meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent-teal);
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. ODOO EXPERTISE - SWISS BENTO GRID SHOWCASE
   -------------------------------------------------------------------------- */
.expertise-grid-section {
  padding: 120px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
}

/* Bento Grid */
.expertise-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bento-card {
  background-color: var(--bg-off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-3d);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.bento-card:hover {
  background-color: var(--bg-white);
  border-color: var(--accent-gold-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

/* Hero Bento Card (2 columns wide on desktop) - White Theme Integration */
.bento-card.hero-bento {
  grid-column: span 2;
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-card);
  position: relative;
  padding: 40px;
}

.bento-card.hero-bento:hover {
  border-color: var(--accent-gold-primary);
  box-shadow: var(--shadow-card-hover);
}

.bento-card.hero-bento .bento-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold-primary);
  background: var(--accent-gold-light);
  border: 1px solid var(--border-gold-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.bento-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(135, 90, 123, 0.25);
}

.bento-title {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.bento-desc {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 28px;
}

.bento-tags-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bento-chip {
  background: var(--bg-off-white);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Standard Bento Cards */
.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-primary);
  font-size: 1.25rem;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.bento-card:hover .card-icon-wrap {
  background: var(--gradient-gold);
  color: #FFFFFF;
  border-color: transparent;
  transform: scale(1.1);
}

.card-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
  margin-bottom: 24px;
}

.card-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.action-arrow {
  transition: transform var(--transition-fast);
}

.bento-card:hover .action-arrow {
  transform: translateX(6px);
  color: var(--accent-gold-primary);
}

.bento-card:hover .action-text {
  color: var(--accent-gold-primary);
}

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--accent-gold-primary);
  background-color: var(--accent-gold-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.card-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.card-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.expertise-card:hover .card-link {
  color: var(--accent-gold-primary);
  gap: 10px;
}

/* --------------------------------------------------------------------------
   8. CERTIFICATION SHOWCASE - PERFECT CAROUSEL SLIDER ALIGNMENT
   -------------------------------------------------------------------------- */
.certifications-dark-section {
  background-color: var(--bg-off-white);
  color: var(--text-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.certifications-slider-container {
  position: relative;
  margin-bottom: 80px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 10px 0 20px 0;
  box-sizing: border-box;
  touch-action: pan-y pinch-zoom;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  width: 100%;
}

.slider-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  box-sizing: border-box;
}

.cert-cred-card {
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition-3d);
  box-shadow: var(--shadow-subtle);
  height: 100%;
  box-sizing: border-box;
}

.cert-cred-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-gold-primary);
}

.cred-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cred-badge-emblem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-off-white);
  color: var(--accent-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--border-gold-subtle);
}

.cred-verified {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cred-title {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cred-sub {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  margin-bottom: 20px;
}

.cred-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.mono-pill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted-dark);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.cred-gold-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold-primary);
}

.slider-controls-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(184, 121, 42, 0.3);
}

.slider-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--accent-gold-primary);
  width: 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 10px rgba(184, 121, 42, 0.4);
}

/* Verification Banner */
.verification-banner {
  background: var(--bg-white);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.verif-title {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.verif-desc {
  color: var(--text-muted-dark);
  max-width: 680px;
  margin: 0 auto 48px auto;
  font-size: 1.05rem;
}

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

.verif-block {
  background: var(--bg-off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: transform var(--transition-fast);
  box-sizing: border-box;
}

.verif-block:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold-primary);
}

.verif-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  color: var(--accent-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 18px auto;
}

.verif-block h4 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.verif-block p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   9. WHY ZENTEGRA
   -------------------------------------------------------------------------- */
.why-zentegra-section {
  padding: 120px 0;
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}

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

.why-card {
  background: var(--bg-off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition-3d);
  box-sizing: border-box;
}

.why-card:hover {
  background-color: var(--bg-white);
  border-color: var(--accent-gold-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.why-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold-primary);
  display: block;
  margin-bottom: 18px;
}

.why-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. PROCESS SECTION
   -------------------------------------------------------------------------- */
.process-section {
  padding: 120px 0;
  background-color: var(--bg-off-white);
  border-bottom: 1px solid var(--border-light);
}

.timeline-wrapper {
  position: relative;
  margin-top: 60px;
}

.timeline-progress-track {
  position: absolute;
  top: 32px;
  left: 4%;
  width: 92%;
  height: 4px;
  background-color: var(--border-light);
  border-radius: var(--radius-pill);
  z-index: 1;
}

.timeline-progress-bar {
  height: 100%;
  width: 0;
  background: var(--gradient-gold);
  border-radius: var(--radius-pill);
  transition: width 0.6s ease;
}

.timeline-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.timeline-step {
  text-align: center;
}

.step-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 2px solid var(--border-light);
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-smooth);
}

.timeline-step:hover .step-node {
  border-color: var(--accent-gold-primary);
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-primary);
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(184, 121, 42, 0.25);
}

.step-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.timeline-step:hover .step-num {
  color: var(--accent-gold-primary);
}

.step-title {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   11. BUSINESS IMPACT SECTION
   -------------------------------------------------------------------------- */
.business-impact-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.impact-bg-diagram {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.impact-quote {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.impact-subtext {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  margin-bottom: 32px;
}

.teal-accent-line {
  width: 90px;
  height: 4px;
  background: var(--accent-teal);
  border-radius: var(--radius-pill);
}

.impact-right-heading {
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.impact-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.impact-features li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-teal-light);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.impact-features strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.impact-features span {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
}

/* --------------------------------------------------------------------------
   12. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 120px 0;
  background-color: var(--bg-off-white);
  border-bottom: 1px solid var(--border-light);
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: var(--accent-gold-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-trigger {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  box-sizing: border-box;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  transition: transform var(--transition-fast);
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 32px;
  box-sizing: border-box;
}

.faq-item.active .faq-content {
  padding: 0 32px 28px 32px;
}

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

/* --------------------------------------------------------------------------
   13. FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.final-cta-section {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(135deg, #FDFBF7 0%, #F5EFDF 100%);
  color: var(--text-dark);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.cta-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184, 121, 42, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.cta-heading {
  font-size: clamp(2.5rem, 4.2vw, 3.6rem);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.cta-paragraph {
  font-size: 1.2rem;
  color: var(--text-muted-dark);
  max-width: 640px;
  margin: 0 auto 44px auto;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark-accent);
  color: var(--bg-white);
  padding: 90px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-desc {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  margin: 18px 0 28px 0;
  max-width: 300px;
}

.footer-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-gold-light);
  background: rgba(184, 121, 42, 0.2);
  border: 1px solid var(--border-gold-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-heading {
  font-size: 1.05rem;
  color: var(--bg-white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

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

.footer-links a {
  font-size: 0.92rem;
  color: var(--text-muted-light);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold-light);
}

.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-muted-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted-light);
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-links a:hover {
  color: var(--accent-gold-light);
}

.dot-sep { opacity: 0.4; }

/* --------------------------------------------------------------------------
   15. BACK TO TOP & MODAL
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-dark-accent);
  color: var(--accent-gold-light);
  border: 1px solid var(--border-gold-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

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

.back-to-top:hover {
  background: var(--accent-gold-primary);
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(184, 121, 42, 0.4);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(16, 24, 32, 0.7);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  box-sizing: border-box;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 44px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: transform var(--transition-smooth);
  box-sizing: border-box;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted-dark);
  cursor: pointer;
  line-height: 1;
}

.modal-header {
  margin-bottom: 28px;
}

.modal-header h3 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-top: 8px;
}

.modal-header p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input, .form-group select {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-off-white);
  outline: none;
  transition: border-color var(--transition-fast);
  box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--accent-gold-primary);
  background-color: var(--bg-white);
}

.modal-success-msg {
  text-align: center;
  padding: 24px 0;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   16. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Reduced Motion */
@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;
  }
  .circular-text-svg, .center-seal-ring, .orb-glow {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   17. PERFECT RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .intro-feature-list {
    align-items: center;
  }

  .intro-feature-item {
    text-align: left;
    max-width: 500px;
  }

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

  .bento-card.hero-bento {
    grid-column: span 2;
  }

  .slider-slide {
    flex: 0 0 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

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

  .verif-blocks-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .timeline-progress-track { display: none; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .desktop-nav, .header-cta-group .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    padding: 120px 0 60px 0;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust-tags {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    padding-top: 18px;
  }

  .dashboard-window {
    margin-top: 10px;
  }

  .window-bar {
    padding: 10px 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .window-title {
    font-size: 0.78rem;
  }

  .dashboard-body {
    padding: 16px 12px;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kpi-card {
    padding: 10px 12px;
  }

  .kpi-value {
    font-size: 1.05rem;
  }

  .chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .chart-svg-wrap {
    height: 110px;
  }

  .ribbon-badges {
    gap: 6px;
  }

  .app-chip {
    padding: 5px 10px;
    font-size: 0.72rem;
  }

  .stats-strip {
    padding: 36px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .expertise-bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bento-card.hero-bento {
    grid-column: span 1;
    padding: 28px 20px;
  }

  .slider-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 28px 20px;
  }

  .verification-banner {
    padding: 32px 20px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .teal-accent-line {
    margin: 0 auto;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .modal-card {
    padding: 28px 20px;
  }
}
