/* ==========================================================================
   ARUVIAID – BESPOKE HUMAN-CRAFTED DESIGN SYSTEM (2026 LUXURY MINIMALISM)
   Colors: Obsidian Navy (#0A111E, #111A2B), Pure Gold (#C89A3D, #E2BA62),
           Porcelain White (#FFFFFF, #F8FAFC), Deep Slate (#0F172A, #334155)
   ========================================================================== */

:root {
  /* Core Palette */
  --color-navy-dark: #070D18;
  --color-navy-primary: #0F1A2E;
  --color-navy-secondary: #16243D;
  --color-navy-card: #121F35;
  --color-navy-light: #223554;
  
  --color-gold-main: #C89A3D;
  --color-gold-bright: #E2BA62;
  --color-gold-dark: #9E7422;
  --color-gold-subtle: rgba(200, 154, 61, 0.08);
  --color-gold-border: rgba(200, 154, 61, 0.28);

  --color-bg-body: #F8FAFC;
  --color-bg-white: #FFFFFF;
  --color-bg-alt: #F1F5F9;
  --color-bg-surface: #FFFFFF;

  --color-text-dark: #0F172A;
  --color-text-heading: #0F172A;
  --color-text-body: #334155;
  --color-text-muted: #64748B;
  --color-text-light: #F8FAFC;
  --color-text-gold: #E2BA62;

  /* Status & Accents */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE5D;
  --color-instagram: #E1306C;
  --color-teal: #0D9488;
  --color-blue: #2563EB;

  /* Refined Feather-Light Borders & Layered Shadows */
  --border-light: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.1);
  --border-dark: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.05), 0 12px 32px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 12px 36px rgba(15, 23, 42, 0.08), 0 24px 64px rgba(15, 23, 42, 0.04);
  --shadow-gold: 0 6px 20px rgba(200, 154, 61, 0.22);
  --shadow-navy: 0 10px 30px rgba(7, 13, 24, 0.35);

  /* Radius (Modern Smooth Squircles) */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Fonts */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Inter', sans-serif;
}

/* Dark Mode Tokens (Obsidian Luxury Palette) */
[data-theme="dark"] {
  --color-bg-body: #070D18;
  --color-bg-white: #0E1726;
  --color-bg-alt: #0B1322;
  --color-bg-surface: #111C30;

  --color-text-dark: #F8FAFC;
  --color-text-heading: #F8FAFC;
  --color-text-body: #CBD5E1;
  --color-text-muted: #94A3B8;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-dark: rgba(255, 255, 255, 0.22);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4), 0 12px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.5), 0 24px 64px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   1. RESET & FOUNDATION
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  min-width: 0;
  overflow-x: clip;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-body);
  color: var(--color-text-body);
  line-height: 1.65;
  width: 100%;
  min-width: 0;
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container,
section,
main,
.section-wrapper,
.grid-container,
.grid-container > *,
.flex-container > * {
  min-width: 0;
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

button {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  max-width: 100%;
  box-sizing: border-box;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-gold-bright) !important;
  outline-offset: 2px !important;
}

@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;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--color-gold-main) !important;
}
.text-gold-bright {
  color: var(--color-gold-bright) !important;
}
.text-navy {
  color: var(--color-navy-primary) !important;
}
.text-white {
  color: #FFFFFF !important;
}

/* Base Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #E2BA62 0%, #C89A3D 100%);
  color: #070D18;
  box-shadow: 0 4px 14px rgba(200, 154, 61, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #EBCA7B 0%, #D4A747 100%);
  box-shadow: 0 8px 22px rgba(200, 154, 61, 0.35);
  color: #070D18;
}

.btn-navy {
  background: var(--color-navy-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(15, 26, 46, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-navy:hover {
  background: var(--color-navy-secondary);
  border-color: rgba(200, 154, 61, 0.4);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-outline-gold {
  background: rgba(200, 154, 61, 0.06);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold-bright);
}
.btn-outline-gold:hover {
  background: rgba(200, 154, 61, 0.16);
  border-color: var(--color-gold-main);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   2. TOP ANNOUNCEMENT BAR (SLIM & MINIMALIST)
   ========================================================================== */

.announcement-top-bar {
  background: #070D18;
  border-bottom: 1px solid rgba(200, 154, 61, 0.15);
  padding: 0.38rem 1.25rem;
  font-size: 0.76rem;
  color: #94A3B8;
  position: relative;
  z-index: 1010;
}

.announcement-flex {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.announcement-msg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-badge {
  background: rgba(200, 154, 61, 0.15);
  color: var(--color-gold-bright);
  border: 1px solid rgba(200, 154, 61, 0.3);
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.announcement-msg-text {
  font-weight: 600;
  color: #E2E8F0;
  white-space: nowrap;
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.announcement-link {
  color: var(--color-gold-bright);
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}
.announcement-link:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   3. STICKY NAVBAR (MINIMALIST & SLEEK)
   ========================================================================== */

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(22, 32, 51, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.navbar-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 62px;
}

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

.brand-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-gold-main);
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 1.5px;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.brand-title span {
  color: var(--color-gold-bright);
}

.brand-subtitle {
  font-size: 0.58rem;
  color: var(--color-gold-bright);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-link {
  color: #CBD5E1;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.nav-menu-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nav-menu-link.is-active {
  color: var(--color-gold-bright);
  background: rgba(200, 154, 61, 0.12);
  font-weight: 700;
}

.nav-action-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Theme Toggle Button (Desktop & Drawer) */
.theme-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2BA62;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  background: rgba(200, 154, 61, 0.2);
  border-color: var(--color-gold-main);
  transform: scale(1.06);
}
.theme-toggle-btn i {
  transition: transform 0.3s ease;
}

/* Language Selector (Desktop) */
.lang-switcher-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-switcher-btn {
  height: 36px;
  padding: 0 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #F8FAFC;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-switcher-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--color-gold-main);
  color: var(--color-gold-bright);
}
.lang-current-label {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.lang-chevron {
  font-size: 0.65rem;
  color: var(--color-gold-bright);
  transition: transform 0.2s ease;
}
.lang-switcher-wrap.is-active .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #0E1726;
  border: 1px solid rgba(200, 154, 61, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  padding: 0.35rem;
  min-width: 140px;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 4000;
  backdrop-filter: blur(12px);
}
.lang-dropdown-menu.is-open {
  display: flex;
  animation: fadeInDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-opt-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-xs);
  background: transparent;
  border: none;
  color: #CBD5E1;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  text-align: left;
}
.lang-opt-btn:hover {
  background: rgba(200, 154, 61, 0.15);
  color: var(--color-gold-bright);
}
.lang-opt-btn.is-active {
  background: rgba(200, 154, 61, 0.25);
  color: var(--color-gold-bright);
  font-weight: 700;
}
.lang-opt-btn i {
  font-size: 0.7rem;
  color: var(--color-gold-bright);
}

.btn-nav-consult {
  padding: 0.42rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.hamburger-btn {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1.15rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--color-gold-main);
  color: var(--color-gold-bright);
}

/* Mobile Drawer (100% Mobile Safe & Isolated) */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #0A111E;
  z-index: 3500;
  padding: 1.25rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

body.drawer-open {
  overflow: hidden !important;
}
body.drawer-open .mobile-bottom-navbar,
body.drawer-open .floating-wa-container,
body.drawer-open .back-to-top-btn {
  display: none !important;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #CBD5E1;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.drawer-close-btn:hover {
  background: rgba(200, 154, 61, 0.2);
  border-color: var(--color-gold-main);
  color: var(--color-gold-bright);
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.25rem 0;
  padding: 0;
}

.drawer-nav-link {
  color: #E2E8F0;
  font-size: 1.02rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}
.drawer-nav-link i {
  color: var(--color-gold-bright);
}
.drawer-nav-link:hover, .drawer-nav-link.is-active {
  background: rgba(200, 154, 61, 0.12);
  color: var(--color-gold-bright);
  padding-left: 0.75rem;
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   4. HERO & PAGE BANNER (BESPOKE LUXURY DESIGN)
   ========================================================================== */

/* Hero on Home */
.hero-section {
  background: #070D18;
  background-image: radial-gradient(circle at 50% -10%, rgba(200, 154, 61, 0.14) 0%, rgba(7, 13, 24, 0) 70%);
  color: white;
  padding: 4.5rem 0 3.75rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 154, 61, 0.08);
  border: 1px solid rgba(200, 154, 61, 0.25);
  color: var(--color-gold-bright);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.pill-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold-bright);
  box-shadow: 0 0 0 3px rgba(200, 154, 61, 0.3);
}

/* Clean Headline Without Text-Fill-Color Bug */
.hero-headline {
  font-size: 2.9rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 1.15rem;
  letter-spacing: -0.03em;
}

.hero-headline .highlight-gold {
  color: var(--color-gold-bright) !important;
  display: inline;
}

.hero-subheadline {
  font-size: 1.02rem;
  color: #94A3B8;
  line-height: 1.65;
  margin-bottom: 1.85rem;
  max-width: 520px;
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num-wrap {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold-bright);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.76rem;
  color: #64748B;
  font-weight: 500;
  margin-top: 0.15rem;
}
.stat-divider-line {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Executive Showcase Card (Spacious, Elegant, Human-Crafted) */
.hero-executive-card {
  background: linear-gradient(145deg, rgba(17, 28, 48, 0.9) 0%, rgba(10, 17, 30, 0.96) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 154, 61, 0.35);
  border-radius: 22px;
  padding: 1.85rem 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-executive-card:hover {
  border-color: rgba(200, 154, 61, 0.55);
  transform: translateY(-2px);
}

.exec-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.exec-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.exec-logo-squircle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1.5px solid rgba(200, 154, 61, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.exec-brand-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.exec-brand-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.exec-brand-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--color-gold-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exec-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.exec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.exec-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.exec-headline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.exec-subheadline {
  font-size: 0.82rem;
  color: #94A3B8;
  margin: 0;
  line-height: 1.5;
}

.exec-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.exec-service-row {
  background: rgba(10, 17, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.75rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.exec-service-row:hover {
  background: rgba(22, 36, 61, 0.85);
  border-color: rgba(200, 154, 61, 0.4);
  transform: translateX(4px);
}

.exec-service-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.icon-gold {
  background: rgba(200, 154, 61, 0.15);
  color: var(--color-gold-bright);
  border: 1px solid rgba(200, 154, 61, 0.3);
}

.icon-cyan {
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.icon-emerald {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.exec-service-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.exec-service-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: #F8FAFC;
  display: block;
}

.exec-service-desc {
  font-size: 0.74rem;
  color: #94A3B8;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.exec-service-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.tag-gold {
  background: rgba(200, 154, 61, 0.18);
  color: var(--color-gold-bright);
  border: 1px solid rgba(200, 154, 61, 0.35);
}

.tag-cyan {
  background: rgba(56, 189, 248, 0.18);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.tag-emerald {
  background: rgba(16, 185, 129, 0.18);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.exec-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.exec-footer-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #CBD5E1;
}

.exec-footer-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   5. DEDICATED PAGE HERO BANNER (PRODUK, WEBSITE, AKADEMIK)
   ========================================================================== */

.page-hero-header {
  background: #070D18;
  background-image: radial-gradient(circle at 50% -20%, rgba(200, 154, 61, 0.12) 0%, rgba(7, 13, 24, 0) 65%);
  color: white;
  padding: 3.25rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  position: relative;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #64748B;
  margin-bottom: 0.85rem;
}
.breadcrumb-nav a {
  color: #94A3B8;
}
.breadcrumb-nav a:hover {
  color: var(--color-gold-bright);
}

/* Page Title with Solid Color */
.page-hero-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
  letter-spacing: -0.03em;
}

.page-hero-title .text-gold {
  color: var(--color-gold-bright) !important;
}

.page-hero-desc {
  font-size: 0.98rem;
  color: #94A3B8;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* ==========================================================================
   6. SECTION WRAPPERS & HEADERS
   ========================================================================== */

.section-wrapper {
  padding: 4.25rem 0;
  position: relative;
}

.bg-light-section {
  background-color: var(--color-bg-body);
}

.bg-white-section {
  background-color: #FFFFFF;
}

.bg-navy-section {
  background: #070D18;
  background-image: radial-gradient(circle at 50% 0%, rgba(200, 154, 61, 0.1) 0%, rgba(7, 13, 24, 0) 70%);
  color: white;
}

.section-header-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(200, 154, 61, 0.08);
  color: var(--color-gold-dark);
  border: 1px solid rgba(200, 154, 61, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.bg-navy-section .section-category-tag {
  color: var(--color-gold-bright);
}

.section-main-title {
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.bg-navy-section .section-main-title {
  color: #FFFFFF;
}

.section-lead-text {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-weight: 400;
}

.bg-navy-section .section-lead-text {
  color: #CBD5E1;
}

/* Card Base */
.aruvia-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.aruvia-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 154, 61, 0.3);
}

/* ==========================================================================
   7. GATEWAY CARDS (HOME 3 MAIN PORTALS)
   ========================================================================== */

.gateway-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gateway-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.65rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gateway-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 154, 61, 0.35);
}

.gateway-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.15rem;
}
.icon-portal-gold { background: rgba(200, 154, 61, 0.1); color: var(--color-gold-dark); }
.icon-portal-navy { background: rgba(15, 26, 46, 0.07); color: var(--color-navy-primary); }
.icon-portal-teal { background: rgba(13, 148, 136, 0.1); color: var(--color-teal); }

.gateway-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gold-dark);
  margin-bottom: 0.2rem;
  display: block;
}

.gateway-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.gateway-desc {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.15rem;
  flex: 1;
  font-weight: 400;
}

.gateway-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
}

.gateway-tag-pill {
  background: var(--color-bg-body);
  border: 1px solid var(--border-light);
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-text-body);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}
.gateway-tag-pill:hover {
  border-color: var(--color-gold-main);
  color: var(--color-gold-dark);
  background: #FFFFFF;
}
.gateway-tag-pill i {
  color: var(--color-gold-main);
  font-size: 0.7rem;
}

.gateway-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}
.gateway-features-list li {
  font-size: 0.8rem;
  color: var(--color-text-body);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}
.gateway-features-list li i {
  color: var(--color-gold-main);
  font-size: 0.72rem;
}

.gateway-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Marquee Strip */
.marquee-strip {
  background: #070D18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2.25rem;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.84rem;
}

/* ==========================================================================
   8. DIGITAL PRODUCTS CATALOG & FILTERS
   ========================================================================== */

.catalog-toolbar-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.catalog-inline-search {
  position: relative;
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
}

.catalog-inline-search i {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold-dark);
  font-size: 0.92rem;
  pointer-events: none;
}

.catalog-inline-search input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 2.85rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(200, 154, 61, 0.3);
  background: #FFFFFF;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--color-text-heading);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.catalog-inline-search input:focus {
  border-color: var(--color-gold-main);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(200, 154, 61, 0.2);
  outline: none;
}

.cat-tab-buttons {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.15rem 0.1rem 0.25rem;
  width: 100%;
}
.cat-tab-buttons::-webkit-scrollbar {
  display: none;
}

.cat-tab-btn {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  background: #F1F5F9;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  border: 1px solid transparent;
  flex-shrink: 0;
}
.cat-tab-btn:hover {
  color: var(--color-navy-primary);
  background: #E2E8F0;
}
.cat-tab-btn.active {
  background: var(--color-navy-primary);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(15, 26, 46, 0.2);
}

/* Products Grid & Dedicated Mobile Card Layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 154, 61, 0.3);
}

.product-card.is-popular {
  border: 1.5px solid var(--color-gold-main);
  box-shadow: 0 6px 20px rgba(200, 154, 61, 0.12);
}

.product-card-top-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-logo-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1.5px solid rgba(200, 154, 61, 0.25);
  background: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.product-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.product-head-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.product-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.product-cat-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.12rem 0.45rem;
  border-radius: var(--radius-full);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-gold { background: rgba(200, 154, 61, 0.1); color: var(--color-gold-dark); border: 1px solid rgba(200, 154, 61, 0.3); }
.badge-navy { background: rgba(15, 26, 46, 0.06); color: var(--color-navy-primary); }
.badge-teal { background: rgba(13, 148, 136, 0.1); color: var(--color-teal); }

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.015em;
  word-break: normal;
}

.product-description {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  flex: 1;
  font-weight: 400;
}

.product-pricing-box {
  background: var(--color-bg-body);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border-light);
}

.price-stack {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy-primary);
  letter-spacing: -0.02em;
}

.price-strike {
  font-size: 0.75rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 400;
}

.price-duration {
  font-size: 0.72rem;
  font-weight: 600;
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.12rem 0.45rem;
  border-radius: 6px;
  white-space: nowrap;
}

.product-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.product-feature-list li {
  font-size: 0.78rem;
  color: var(--color-text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
  font-weight: 500;
}
.check-icon {
  color: #10B981;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0.45rem;
  margin-top: auto;
}

.btn-card-detail {
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-xs);
  background: var(--color-bg-alt);
  color: var(--color-navy-primary);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}
.btn-card-detail:hover {
  background: #E2E8F0;
}

.btn-card-order {
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-xs);
  background: var(--color-whatsapp);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
  transition: all 0.2s ease;
}
.btn-card-order:hover {
  background: var(--color-whatsapp-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ==========================================================================
   9. ACADEMIC SERVICES & WEBSITE SERVICES
   ========================================================================== */

.academic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.academic-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.academic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 154, 61, 0.35);
}

.academic-card-header,
.academic-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  gap: 0.5rem;
}

.academic-icon-circle,
.academic-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(15, 26, 46, 0.06);
  color: var(--color-navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.academic-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  background: rgba(200, 154, 61, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.academic-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.015em;
  color: var(--color-text-heading);
}

.academic-desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
  font-weight: 400;
}

.academic-highlights-box {
  background: var(--color-bg-body);
  border-radius: var(--radius-xs);
  padding: 0.75rem 0.85rem;
  margin-bottom: 1.15rem;
  border: 1px solid var(--border-light);
}

.highlight-head {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-navy-primary);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.academic-highlight-list,
.academic-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0 0 1.25rem 0;
  padding: 0;
}

.academic-highlight-list li,
.academic-list li {
  font-size: 0.82rem;
  color: var(--color-text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
  font-weight: 500;
}

.academic-highlight-list li i,
.academic-list li i,
.academic-list li .check-icon {
  color: var(--color-gold-main);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.btn-academic-wa,
.btn-academic-cta {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: all 0.2s ease;
}

/* Website Pricing Packages */
.pricing-grid-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 880px;
  margin: 0 auto 3rem;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.85rem 1.85rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  color: var(--color-text-body);
  border: 1px solid var(--border-light);
  overflow: visible;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured-plan,
.pricing-card.pricing-featured {
  border: 1.5px solid var(--color-gold-main);
  box-shadow: 0 8px 30px rgba(200, 154, 61, 0.14);
}

.pricing-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold-main));
  color: var(--color-navy-dark);
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(200, 154, 61, 0.35);
  white-space: nowrap;
  z-index: 10;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-top: 0.25rem;
}

.pricing-domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(22, 32, 51, 0.08);
  color: var(--color-navy-primary);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.pricing-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-text-heading);
  margin-bottom: 0.25rem;
}

.pricing-tagline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.pricing-cost {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.5rem 0 1rem;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-navy-primary);
  line-height: 1.1;
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.pricing-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 1.25rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--color-text-body);
}
.feature-check {
  color: var(--color-gold-main);
  font-size: 1rem;
}

/* 6-Step Workflow Timeline */
.timeline-steps-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.timeline-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.35rem 0.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
  box-sizing: border-box;
  min-width: 0;
}

.timeline-step-card:hover {
  border-color: rgba(200, 154, 61, 0.4);
  transform: translateY(-2px);
}

.step-num-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold-main));
  color: var(--color-navy-dark);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  flex-shrink: 0;
}

.timeline-step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  word-break: break-word;
}

.step-desc {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #94A3B8;
  word-break: break-word;
}

/* 4 Showcase Cards */
.web-categories-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.web-cat-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  min-width: 0;
}

.web-cat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 154, 61, 0.4);
  box-shadow: var(--shadow-md);
}

.web-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200, 154, 61, 0.1);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}

.web-cat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.web-cat-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.35rem;
  word-break: break-word;
}

.web-cat-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  word-break: break-word;
}

/* ==========================================================================
   10. CONTACT SECTION & DIRECT CLICKABLE CARDS (FIXED)
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-action-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Direct Clickable Contact Card */
.contact-click-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  cursor: pointer;
}

.contact-click-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-main);
}

.contact-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.icon-wa-green { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.icon-ig-pink { background: rgba(225, 48, 108, 0.15); color: #E1306C; }
.icon-clock-navy { background: rgba(22, 32, 51, 0.08); color: var(--color-navy-primary); }

.contact-card-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-text-heading);
}
.contact-card-text span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.contact-card-handle {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-navy-primary);
  margin-top: 0.15rem;
  display: block;
}

.contact-card-action-btn {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

/* Consultation Form Box */
.contact-form-box {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.15rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.35rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: var(--color-bg-body);
  font-size: 16px; /* Prevents auto-zoom on iOS */
  font-family: inherit;
  color: var(--color-text-heading);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--color-gold-main);
  background: white;
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 154, 61, 0.15);
}

select.form-control {
  cursor: pointer;
  background-color: var(--color-bg-body) !important;
  color: var(--color-text-heading) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C89A3D'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1.25rem 1.25rem !important;
  padding-right: 2.75rem !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

select.form-control option {
  background: #FFFFFF;
  color: #0F172A;
  padding: 0.5rem;
}

.contact-form-box .btn {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ==========================================================================
   11. TESTIMONIALS & FAQ
   ========================================================================== */

/* 1. Demo Notice & Social Proof Summary Bar */
.testi-demo-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(200, 154, 61, 0.08);
  border: 1px dashed rgba(200, 154, 61, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-top: 0.85rem;
}

.testi-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  background: var(--color-bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin: 1.5rem auto 2.5rem;
  max-width: 900px;
  box-shadow: var(--shadow-sm);
  gap: 1.5rem;
}

.testi-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.testi-summary-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testi-rating-score {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-text-heading);
  line-height: 1;
}

.testi-summary-stat {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-heading);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.testi-summary-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.testi-summary-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* 2. Filter Tabs */
.testi-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
}

.testi-filter-btn {
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--color-bg-surface);
  color: var(--color-text-muted);
  border: 1px solid var(--border-light);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.testi-filter-btn:hover {
  border-color: rgba(200, 154, 61, 0.4);
  color: var(--color-text-heading);
  transform: translateY(-1px);
}

.testi-filter-btn.is-active {
  background: var(--color-navy-primary);
  color: #FFFFFF;
  border-color: var(--color-navy-primary);
  box-shadow: 0 4px 12px rgba(15, 26, 46, 0.18);
}

/* 3. Grid & Authentic Chat Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: start;
}

.chat-testi-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  position: relative;
  min-width: 0;
}

.chat-testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 154, 61, 0.4);
}

.chat-testi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.chat-user-profile {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

.chat-avatar-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.chat-user-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.chat-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin: 0;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-author-role {
  font-size: 0.74rem;
  color: var(--color-text-muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-service-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(200, 154, 61, 0.1);
  color: var(--color-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Chat Bubbles Thread */
.chat-bubbles-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.chat-bubble {
  background: #F1F5F9;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 14px 14px 14px 4px;
  padding: 0.75rem 0.95rem;
  position: relative;
  max-width: 95%;
  box-sizing: border-box;
  align-self: flex-start;
}

.chat-bubble-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #1E293B;
  margin: 0;
  word-break: break-word;
}

.chat-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  color: #64748B;
}

.chat-bubble-time {
  font-weight: 500;
}

.chat-bubble-checks {
  color: #2563EB;
  font-size: 0.72rem;
}

/* Chat Card Footer */
.chat-testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.chat-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  color: #16A34A;
}

.chat-platform-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.chat-platform-indicator i {
  color: #22C55E;
}

/* 4. Load More Button */
.testi-actions-center {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.testi-load-more-btn {
  padding: 0.75rem 1.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* 5. Bottom Testimonial Trust CTA */
.testi-bottom-cta {
  margin-top: 3.5rem;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg, #0A111E 0%, #16243D 100%);
  border: 1px solid rgba(200, 154, 61, 0.25);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-navy);
}

.testi-cta-left {
  max-width: 650px;
}

.testi-cta-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.testi-cta-subtext {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #CBD5E1;
  margin: 0;
}

.testi-cta-btn {
  flex-shrink: 0;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

/* FAQ Accordion */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.faq-item {
  background: var(--color-bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(200, 154, 61, 0.35);
}

.faq-item.is-open {
  border-color: rgba(200, 154, 61, 0.45);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text-heading);
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question-btn:hover {
  color: var(--color-gold-dark);
}

.faq-question-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.faq-chevron-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 26, 46, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-text-heading);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-chevron-icon {
  transform: rotate(180deg);
  background: var(--color-gold-main);
  color: #070D18;
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 1.35rem 1.25rem;
  border-top: 1px solid var(--border-light);
  padding-top: 0.85rem;
}

.faq-answer-inner p {
  font-size: 0.88rem;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0;
  word-break: break-word;
}

/* ==========================================================================
   12. BOTTOM CONVERSION CTA BANNER
   ========================================================================== */

.bottom-cta-banner {
  background: linear-gradient(135deg, #101826 0%, #162033 60%, #1E2B42 100%);
  border: 1px solid rgba(200, 154, 61, 0.4);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: center;
}

.cta-mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(200, 154, 61, 0.15);
  color: var(--color-gold-bright);
  border: 1px solid rgba(200, 154, 61, 0.35);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.cta-headline {
  font-size: 2.15rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.cta-subtext {
  font-size: 0.98rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.cta-brand-showcase-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: contain;
  border: 3px solid var(--color-gold-main);
  background: #FFFFFF;
  padding: 10px;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  display: block;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.main-footer {
  background: #0A111E;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--color-gold-main);
  background: #FFFFFF;
  object-fit: contain;
  padding: 3px;
  display: block;
  flex-shrink: 0;
}
.footer-brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}
.footer-brand-title span {
  color: var(--color-gold-bright);
}

.footer-social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.footer-social-btn:hover {
  background: var(--color-gold-main);
  color: var(--color-navy-dark);
}

.footer-col-title {
  font-size: 1rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links-list li a {
  color: #94A3B8;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links-list li a:hover {
  color: var(--color-gold-bright);
  transform: translateX(3px);
}

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

.legal-disclaimer-box {
  background: rgba(10, 17, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  margin-top: 2.25rem;
  font-size: 0.78rem;
  line-height: 1.65;
  color: #94A3B8;
}

.legal-disclaimer-box strong {
  color: #E2E8F0;
}

/* ==========================================================================
   14. DETAIL MODAL (PREMIUM NATIVE-GRADE SHEET & DIALOG)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 17, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.is-open,
.modal-backdrop.is-active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.is-open .modal-dialog,
.modal-backdrop.is-active .modal-dialog {
  transform: translateY(0) scale(1);
}

/* 1. Sticky Header (Always Visible, Never Cut Off) */
.modal-header-sticky {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.modal-header-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  flex: 1;
}

.modal-logo-box {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  border-radius: 12px;
  border: 1.5px solid rgba(200, 154, 61, 0.35) !important;
  background: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.modal-brand-logo,
.modal-logo-img,
#modalLogoImg {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  object-fit: contain !important;
  border-radius: 8px;
  flex-shrink: 0 !important;
  display: block;
}

.modal-header-titles {
  min-width: 0;
  flex: 1;
}

.modal-cat-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.15rem;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy-primary);
  margin: 0;
  line-height: 1.25;
  white-space: normal;
  word-break: break-word;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1px solid var(--border-light);
  color: var(--color-text-heading);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 0.75rem;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: #EF4444;
  transform: rotate(90deg);
}

/* 2. Scrollable Body */
.modal-body-scroll {
  padding: 1.25rem 1.35rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.modal-body-scroll::-webkit-scrollbar {
  width: 6px;
}

.modal-body-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 4px;
}

[data-theme="dark"] .modal-body-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

/* Modal Price Hero Card */
.modal-price-card {
  background: linear-gradient(135deg, #111C30 0%, #16243D 100%) !important;
  border: 1.5px solid rgba(200, 154, 61, 0.4) !important;
  border-radius: 14px !important;
  padding: 1.1rem 1.25rem !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.85rem !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  box-sizing: border-box !important;
  width: 100% !important;
  min-height: 72px !important;
}

.modal-price-left {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
  flex: 1 1 auto !important;
}

.modal-price-label {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: var(--color-gold-bright) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  display: block !important;
  line-height: 1.2 !important;
}

.modal-price-row {
  display: flex !important;
  align-items: baseline !important;
  gap: 0.65rem !important;
  line-height: 1.2 !important;
}

.modal-price-main {
  font-family: var(--font-heading) !important;
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  display: inline-block !important;
  line-height: 1.1 !important;
}

.modal-price-strike {
  font-size: 0.88rem !important;
  color: #94A3B8 !important;
  text-decoration: line-through !important;
  display: inline-block !important;
  line-height: 1.1 !important;
}

.modal-price-badge {
  background: rgba(200, 154, 61, 0.2) !important;
  border: 1.5px solid var(--color-gold-main) !important;
  color: var(--color-gold-bright) !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: 9999px !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  flex-shrink: 0 !important;
}

/* Modal Info Sections */
.modal-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.modal-block-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-navy-primary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.modal-block-title i {
  color: var(--color-gold-main);
}

.modal-desc-text {
  font-size: 0.85rem;
  color: var(--color-text-body);
  line-height: 1.6;
  background: var(--color-bg-body);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.modal-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--color-bg-body);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.modal-features-list li {
  font-size: 0.82rem;
  color: var(--color-text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}

.modal-features-list li i {
  color: #10B981;
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.modal-devices-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.modal-device-pill {
  background: var(--color-bg-body);
  border: 1px solid var(--border-light);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.modal-device-pill i {
  color: var(--color-gold-main);
  font-size: 0.7rem;
}

.modal-activation-note {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 0.75rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #065F46;
  font-weight: 600;
}

.modal-activation-note i {
  font-size: 1.1rem;
  color: #10B981;
  flex-shrink: 0;
}

/* Warranty Guarantee Strip in Modal */
.warranty-guarantee-strip {
  background: #F8FAFC;
  border: 1px solid rgba(200, 154, 61, 0.3);
  border-radius: 14px;
  padding: 0.95rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.warranty-guarantee-strip i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(200, 154, 61, 0.12);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.warranty-guarantee-strip strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-text-heading);
  display: block;
  margin-bottom: 0.2rem;
}

.warranty-guarantee-strip p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* 3. Sticky Footer (Never Cut Off) */
.modal-footer-sticky {
  padding: 1rem 1.35rem;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
  z-index: 10;
}

.btn-modal-cta {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 12px;
  white-space: normal;
  line-height: 1.3;
  text-align: center;
  justify-content: center;
  background: var(--color-whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-modal-cta:hover {
  background: var(--color-whatsapp-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Floating WhatsApp Widget (Compact & Non-Intrusive) */
.floating-wa-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}

.wa-speech-prompt {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.95rem;
  max-width: 230px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  margin-bottom: 0.5rem;
  display: none;
  pointer-events: all;
}
.wa-speech-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}
.wa-speech-header strong {
  font-size: 0.78rem;
  color: var(--color-navy-primary);
}
.wa-close-btn {
  font-size: 0.95rem;
  color: #94A3B8;
  cursor: pointer;
  line-height: 1;
}
.wa-speech-prompt p {
  font-size: 0.74rem;
  color: var(--color-text-body);
  line-height: 1.4;
}

.floating-wa-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform 0.2s ease;
  pointer-events: all;
}
.floating-wa-btn:hover {
  transform: scale(1.06);
}

.wa-online-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid white;
}

.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: calc(2rem + 68px);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: white;
  border: 1px solid var(--border-light);
  color: var(--color-navy-primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 1490;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}
.back-to-top-btn.is-visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top-btn:hover {
  background: var(--color-navy-primary);
  color: white;
}

/* Mobile Bottom Navbar (Removed as requested - replaced by streamlined top menu) */
.mobile-bottom-navbar {
  display: none !important;
}

/* ==========================================================================
   15. RESPONSIVE MEDIA QUERIES (UNIVERSAL MOBILE & DESKTOP PERFECTION)
   ========================================================================== */

/* --- 1. Large Desktops & Wide Screens (1200px and up) --- */
@media (min-width: 1200px) {
  .navbar-container {
    max-width: 1240px;
    padding: 0.5rem 1.5rem;
  }
  .nav-menu {
    gap: 0.35rem;
  }
  .nav-menu-link {
    font-size: 0.86rem;
    padding: 0.4rem 0.75rem;
  }
  .gateway-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- 2. Medium Laptops & Desktops (1024px to 1199px) --- */
@media (max-width: 1199px) and (min-width: 1024px) {
  .navbar-container {
    max-width: 1000px;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  .nav-menu {
    gap: 0.15rem;
  }
  .nav-menu-link {
    font-size: 0.8rem;
    padding: 0.35rem 0.55rem;
  }
  .btn-nav-consult {
    padding: 0.38rem 0.75rem;
    font-size: 0.76rem;
  }
  .gateway-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
  .hero-headline {
    font-size: 2.35rem;
  }
}

/* --- 3. Tablets & Mobile Breakpoint (<= 1023px) --- */
@media (max-width: 1023px) {
  .nav-menu {
    display: none !important;
  }
  .btn-nav-consult {
    display: none !important;
  }
  .hamburger-btn {
    display: flex !important;
  }
  
  /* Floating WA and popup bubble hidden on mobile to never obstruct cards or forms */
  .floating-wa-container {
    display: none !important;
  }
  .wa-speech-prompt {
    display: none !important;
  }

  .back-to-top-btn {
    bottom: 1.5rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-headline {
    font-size: 2.35rem;
    text-align: center;
  }
  .hero-subheadline {
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 580px;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .hero-visual-col {
    display: none;
  }

  .hero-stats-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    max-width: 600px;
    margin: 1.5rem auto 0;
    padding: 1.25rem;
    background: rgba(22, 32, 51, 0.7);
    border: 1px solid rgba(200, 154, 61, 0.25);
    border-radius: var(--radius-lg);
  }

  .gateway-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .gateway-cards-grid .gateway-card:last-child {
    grid-column: span 2;
  }

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

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

  .pricing-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .pricing-grid-wrap .pricing-card:last-child {
    grid-column: span 2;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.25rem !important;
  }

  .testi-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }
  .testi-cta-left {
    max-width: 100%;
  }
  .testi-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .web-categories-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .timeline-steps-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer-col-contact {
    grid-column: span 2;
  }

  .bottom-cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.75rem;
    gap: 1.5rem;
  }
  .cta-visual-side {
    display: none;
  }
  .bottom-cta-banner .btn {
    width: auto;
    display: inline-flex;
    justify-content: center;
    white-space: nowrap;
  }
}

/* --- 4. Smartphones (< 640px) --- */
@media (max-width: 639px) {
  .announcement-top-bar {
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
  }
  .announcement-links {
    display: none;
  }
  .announcement-msg {
    justify-content: center;
    width: 100%;
  }

  .container {
    padding: 0 1.15rem;
  }

  .section-wrapper {
    padding: 2.75rem 0;
  }
  .section-header-block {
    margin-bottom: 1.75rem;
  }
  .section-main-title {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
  }
  .section-lead-text {
    font-size: 0.86rem;
  }

  .page-hero-header {
    padding: 2.25rem 0 1.75rem;
  }
  .page-hero-title {
    font-size: 1.75rem;
  }
  .page-hero-desc {
    font-size: 0.85rem;
  }

  .hero-section {
    padding: 2.75rem 0 2.25rem;
  }
  .hero-headline {
    font-size: 1.85rem;
    line-height: 1.22;
  }
  .hero-subheadline {
    font-size: 0.86rem;
    margin-bottom: 1.35rem;
  }
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }
  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
  }
  .stat-divider-line {
    width: 40px;
    height: 1px;
  }
  .stat-num-wrap {
    font-size: 1.55rem;
  }

  /* Catalog Filter Tabs Mobile Swipe */
  .catalog-toolbar-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 1.25rem !important;
    gap: 0.75rem !important;
  }
  .catalog-inline-search {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .catalog-inline-search input {
    background: #FFFFFF !important;
    border: 1.5px solid rgba(200, 154, 61, 0.3) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
    padding: 0.75rem 2.25rem 0.75rem 2.65rem !important;
    font-size: 0.88rem !important;
  }
  [data-theme="dark"] .catalog-inline-search input {
    background: #111C30 !important;
    border: 1.5px solid rgba(200, 154, 61, 0.35) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
    color: #F8FAFC !important;
  }
  .cat-tab-buttons {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.2rem 0.1rem 0.5rem;
  }
  .cat-tab-buttons::-webkit-scrollbar {
    display: none;
  }
  .cat-tab-btn {
    background: var(--color-bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-muted);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
  }
  .cat-tab-btn.active {
    background: var(--color-gold-main);
    color: #0F172A;
    border-color: var(--color-gold-main);
    box-shadow: 0 3px 10px rgba(200, 154, 61, 0.35);
  }

  /* Single Column Cards on Mobile */
  .gateway-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .gateway-cards-grid .gateway-card:last-child {
    grid-column: span 1;
  }
  .gateway-card {
    padding: 1.5rem 1.25rem;
  }
  .gateway-title {
    font-size: 1.15rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .product-card {
    padding: 1.15rem;
    border-radius: var(--radius-md);
  }
  .product-title {
    font-size: 1.02rem;
  }
  .product-description {
    font-size: 0.8rem;
    line-height: 1.45;
  }
  .product-card-actions {
    grid-template-columns: 1fr 1.25fr;
    gap: 0.45rem;
  }
  .btn-card-detail,
  .btn-card-order {
    padding: 0.65rem 0.5rem;
    font-size: 0.82rem;
    justify-content: center;
  }

  .pricing-grid-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pricing-grid-wrap .pricing-card:last-child {
    grid-column: span 1;
  }
  .pricing-card {
    padding: 2.25rem 1.25rem 1.5rem;
  }
  .pricing-amount {
    font-size: 1.85rem;
  }

  .academic-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .academic-card {
    padding: 1.35rem 1.15rem;
  }

  /* Testimonials on Mobile (Feed Chat Experience) */
  .testi-demo-notice {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    text-align: center;
  }
  .testi-summary-bar {
    flex-direction: column;
    padding: 1.25rem 1rem;
    gap: 1rem;
  }
  .testi-summary-divider {
    width: 80%;
    height: 1px;
  }
  .testi-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .testi-filter-btn {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.5rem 0.95rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .chat-testi-card {
    padding: 1.15rem 1rem;
    border-radius: 14px;
  }
  .chat-bubble {
    max-width: 98%;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }
  .chat-author-name {
    font-size: 0.88rem;
  }
  .chat-author-role {
    font-size: 0.72rem;
  }
  .chat-service-pill {
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
  }

  /* Showcase Cards on Mobile (1 Column Compact Horizontal Card) */
  .web-categories-showcase {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .web-cat-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 1.15rem 1.25rem;
    gap: 1rem;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  .web-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 1.35rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .web-cat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    min-width: 0;
  }
  .web-cat-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-align: left;
    word-break: break-word;
  }
  .web-cat-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: left;
    word-break: break-word;
  }

  /* 6-Step Workflow on Mobile (Vertical Stepper 1 Column) */
  .workflow-timeline-block {
    margin-top: 2.5rem !important;
  }
  .workflow-timeline-block h3 {
    font-size: 1.35rem !important;
    margin-bottom: 1.35rem !important;
  }
  .timeline-steps-row {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
    width: 100%;
  }
  .timeline-step-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 1.1rem 1.25rem;
    gap: 1.1rem;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  .step-num-badge {
    width: 36px;
    height: 36px;
    margin: 0;
    flex-shrink: 0;
  }
  .timeline-step-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    min-width: 0;
  }
  .step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    text-align: left;
    word-break: break-word;
  }
  .step-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: left;
    word-break: break-word;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .contact-click-card {
    flex-direction: column;
    text-align: center;
    padding: 1.15rem 1rem;
    gap: 0.75rem;
  }
  .contact-card-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-card-text {
    text-align: center;
  }
  .contact-card-action-btn {
    width: 100%;
    justify-content: center;
  }
  .contact-form-box {
    padding: 1.35rem 1.15rem;
  }
  .contact-form-box .form-control {
    font-size: 16px; /* Prevents iOS auto zoom on focus */
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.85rem;
  }
  .footer-col-contact {
    grid-column: span 1;
  }

  /* Modal on Mobile */
  .modal-backdrop {
    padding: 0.75rem;
  }
  .modal-dialog {
    width: 95%;
    max-width: 480px;
    max-height: 88vh;
    border-radius: 18px;
  }
  .modal-header-sticky {
    padding: 0.85rem 1.1rem;
  }
  .modal-body-scroll {
    padding: 0.85rem 1.1rem;
    gap: 0.85rem;
  }
  .modal-footer-sticky {
    padding: 0.75rem 1.1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  /* Modal Price Card & Duration Badge on Mobile (Zero Overflow Guarantee) */
  .modal-price-card {
    padding: 0.9rem 1.1rem !important;
    gap: 0.65rem !important;
    min-height: 68px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .modal-price-main {
    font-size: 1.35rem !important;
  }
  .modal-price-strike {
    font-size: 0.82rem !important;
  }
  .modal-price-badge {
    font-size: 0.72rem !important;
    padding: 0.3rem 0.7rem !important;
    flex-shrink: 0 !important;
  }

  /* Bottom CTA Banner on Mobile */
  .bottom-cta-banner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 2.25rem 1.25rem !important;
    gap: 1.25rem !important;
    border-radius: var(--radius-lg) !important;
  }
  .cta-visual-side {
    display: none !important;
  }
  .cta-headline {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.65rem !important;
  }
  .cta-subtext {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.35rem !important;
  }
  .bottom-cta-banner .btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.92rem !important;
    justify-content: center !important;
    white-space: nowrap !important;
    display: inline-flex !important;
  }
}

/* --- 5. Mobile Navbar & Handheld Screens (<= 480px) --- */
@media (max-width: 480px) {
  .main-header .nav-action-btns .lang-switcher-wrap,
  .main-header .nav-action-btns .theme-toggle-btn {
    display: none !important;
  }
  .main-header .nav-action-btns {
    gap: 0.5rem;
  }
  .navbar-container {
    padding: 0.5rem 0.85rem;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hamburger-btn {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
  }
  .announcement-top-bar {
    padding: 0.35rem 0.65rem;
  }
  .announcement-msg-text {
    font-size: 0.72rem;
    text-align: center;
    white-space: normal;
  }
}

/* --- 6. Extra Small Screens (< 380px) --- */
@media (max-width: 380px) {
  .navbar-container {
    padding: 0.45rem 0.65rem;
    height: 56px;
  }
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-subtitle {
    font-size: 0.5rem;
  }
  .brand-logo-img {
    width: 32px;
    height: 32px;
  }
  .hamburger-btn {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
  .hero-headline {
    font-size: 1.65rem;
  }
  .product-card-actions {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

/* ==========================================================================
   DRAWER SWITCHERS & THEME CONTROLS
   ========================================================================== */
.drawer-switchers-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.drawer-switcher-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.drawer-lang-pills {
  display: flex;
  gap: 0.35rem;
}
.drawer-lang-pill {
  padding: 0.32rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #CBD5E1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.drawer-lang-pill.is-active {
  background: var(--color-gold-main);
  color: #070D18;
  border-color: var(--color-gold-bright);
}

/* ==========================================================================
   DARK MODE COMPONENT OVERRIDES (OBSIDIAN LUXURY SYSTEM)
   ========================================================================== */
[data-theme="dark"] body {
  background-color: #070D18 !important;
  color: #CBD5E1 !important;
}

[data-theme="dark"] .bg-white-section,
[data-theme="dark"] .bg-light-section,
[data-theme="dark"] .bg-alt-section,
[data-theme="dark"] .section-wrapper {
  background-color: #070D18 !important;
}

[data-theme="dark"] .page-hero-header {
  background: linear-gradient(180deg, #070D18 0%, #0D1627 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .page-hero-title {
  color: #F8FAFC !important;
}

[data-theme="dark"] .page-hero-desc {
  color: #94A3B8 !important;
}

[data-theme="dark"] .breadcrumb-nav a {
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .breadcrumb-nav span {
  color: #94A3B8 !important;
}

[data-theme="dark"] .section-category-tag {
  background: rgba(200, 154, 61, 0.12) !important;
  border-color: rgba(200, 154, 61, 0.25) !important;
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .section-main-title {
  color: #F8FAFC !important;
}

[data-theme="dark"] .section-lead-text {
  color: #94A3B8 !important;
}

/* Cards & Surfaces */
[data-theme="dark"] .product-card,
[data-theme="dark"] .gateway-card,
[data-theme="dark"] .catalog-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .academic-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .testi-card-v2,
[data-theme="dark"] .testi-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .contact-form-box,
[data-theme="dark"] .contact-click-card,
[data-theme="dark"] .contact-channel-card,
[data-theme="dark"] .spec-group-box,
[data-theme="dark"] .web-cat-item,
[data-theme="dark"] .step-card,
[data-theme="dark"] .timeline-step-card,
[data-theme="dark"] .no-results-box {
  background: #111C30 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
}

[data-theme="dark"] .product-card.is-popular,
[data-theme="dark"] .pricing-card.pricing-featured {
  border-color: var(--color-gold-main) !important;
  box-shadow: 0 8px 30px rgba(200, 154, 61, 0.2) !important;
}

/* Headings inside cards */
[data-theme="dark"] .product-title,
[data-theme="dark"] .gateway-title,
[data-theme="dark"] .pricing-name,
[data-theme="dark"] .academic-title,
[data-theme="dark"] .stat-counter-num,
[data-theme="dark"] .testi-author-name,
[data-theme="dark"] .testi-client-name,
[data-theme="dark"] .faq-question-btn,
[data-theme="dark"] .contact-card-title,
[data-theme="dark"] .step-card-title,
[data-theme="dark"] .web-cat-title,
[data-theme="dark"] .step-title,
[data-theme="dark"] .no-results-box h3 {
  color: #F8FAFC !important;
}

/* Descriptions inside cards */
[data-theme="dark"] .product-description,
[data-theme="dark"] .gateway-desc,
[data-theme="dark"] .pricing-desc,
[data-theme="dark"] .academic-desc,
[data-theme="dark"] .stat-label-text,
[data-theme="dark"] .stat-label,
[data-theme="dark"] .testi-quote-text,
[data-theme="dark"] .testi-quote,
[data-theme="dark"] .faq-answer,
[data-theme="dark"] .faq-answer-inner,
[data-theme="dark"] .contact-card-desc,
[data-theme="dark"] .step-card-desc,
[data-theme="dark"] .web-cat-desc,
[data-theme="dark"] .step-desc,
[data-theme="dark"] .no-results-box p {
  color: #94A3B8 !important;
}

/* Product Logo Box */
[data-theme="dark"] .product-logo-box {
  background: #0B1322 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Product Specifics */
[data-theme="dark"] .product-pricing-box {
  background: #0B1322 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .price-main {
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .price-strike {
  color: #64748B !important;
}

[data-theme="dark"] .product-feature-list li {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .btn-card-detail {
  background: #162238 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #CBD5E1 !important;
}

[data-theme="dark"] .btn-card-detail:hover {
  background: #1E2D48 !important;
  border-color: var(--color-gold-main) !important;
  color: #FFFFFF !important;
}

/* Gateway Tags & Icons */
[data-theme="dark"] .gateway-tag-pill {
  background: #0B1322 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #CBD5E1 !important;
}

[data-theme="dark"] .gateway-tag-pill:hover {
  background: #16243D !important;
  border-color: var(--color-gold-main) !important;
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .gateway-icon-wrap.icon-portal-gold {
  background: rgba(200, 154, 61, 0.15) !important;
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .gateway-icon-wrap.icon-portal-navy {
  background: rgba(56, 189, 248, 0.15) !important;
  color: #38BDF8 !important;
}

/* Catalog Toolbar & Search Input */
[data-theme="dark"] .catalog-toolbar-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

[data-theme="dark"] .catalog-inline-search {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

[data-theme="dark"] .catalog-inline-search i {
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .catalog-inline-search input {
  background: #111C30 !important;
  border: 1.5px solid rgba(200, 154, 61, 0.35) !important;
  color: #F8FAFC !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
}

[data-theme="dark"] .catalog-inline-search input:focus {
  border-color: var(--color-gold-bright) !important;
  box-shadow: 0 0 0 3px rgba(200, 154, 61, 0.3) !important;
}

[data-theme="dark"] .catalog-inline-search input::placeholder {
  color: #64748B !important;
}

[data-theme="dark"] .cat-tab-btn {
  background: #0B1322 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #94A3B8 !important;
}

[data-theme="dark"] .cat-tab-btn:hover {
  background: #16243D !important;
  color: #F8FAFC !important;
  border-color: var(--color-gold-main) !important;
}

[data-theme="dark"] .cat-tab-btn.is-active,
[data-theme="dark"] .cat-tab-btn.active {
  background: #070D18 !important;
  color: var(--color-gold-bright) !important;
  border: 1.5px solid var(--color-gold-main) !important;
}

/* Academic & Pricing Specifics */
[data-theme="dark"] .academic-icon-circle,
[data-theme="dark"] .academic-icon-box {
  background: rgba(200, 154, 61, 0.15) !important;
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .academic-tag {
  background: rgba(200, 154, 61, 0.2) !important;
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .academic-highlights-box {
  background: #0B1322 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .highlight-head {
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .academic-highlight-list li,
[data-theme="dark"] .academic-list li,
[data-theme="dark"] .pricing-includes-list li {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .pricing-domain-badge {
  background: #0B1322 !important;
  border-color: rgba(200, 154, 61, 0.3) !important;
  color: var(--color-gold-bright) !important;
}

/* Testimonials in Dark Mode */
[data-theme="dark"] .testi-card-v2,
[data-theme="dark"] .testimonial-card {
  background: #0E1726 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .testi-card-v2:hover,
[data-theme="dark"] .testimonial-card:hover {
  border-color: rgba(200, 154, 61, 0.4) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .testi-quote-text,
[data-theme="dark"] .testi-quote {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .testi-author-name,
[data-theme="dark"] .testi-client-name {
  color: #F8FAFC !important;
}

[data-theme="dark"] .testi-user-role,
[data-theme="dark"] .testi-client-role {
  color: #94A3B8 !important;
}

[data-theme="dark"] .testi-prod-tag {
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .testi-user-row,
[data-theme="dark"] .testi-client-profile {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

/* FAQ Accordion */
[data-theme="dark"] .faq-answer-inner,
[data-theme="dark"] .faq-answer {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #CBD5E1 !important;
}

[data-theme="dark"] .faq-chevron-icon {
  background: #0B1322 !important;
  color: #CBD5E1 !important;
}

[data-theme="dark"] .faq-item.is-open .faq-chevron-icon {
  background: var(--color-gold-main) !important;
  color: #070D18 !important;
}

/* Forms */
[data-theme="dark"] .form-label {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea,
[data-theme="dark"] .form-select {
  background: #0B1322 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-textarea:focus,
[data-theme="dark"] .form-select:focus {
  border-color: var(--color-gold-main) !important;
  background: #111C30 !important;
}

/* Modal Engine in Dark Mode */
[data-theme="dark"] .modal-backdrop {
  background: rgba(3, 7, 15, 0.88) !important;
}

[data-theme="dark"] .modal-dialog {
  background: #0E1726 !important;
  border: 1px solid rgba(200, 154, 61, 0.35) !important;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.85) !important;
}

[data-theme="dark"] .modal-header-sticky,
[data-theme="dark"] .modal-footer-sticky {
  background: #0E1726 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .modal-title {
  color: #F8FAFC !important;
}

[data-theme="dark"] .modal-cat-tag {
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .form-label {
  color: #F8FAFC !important;
}

[data-theme="dark"] .form-control {
  background-color: #0B1322 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .form-control:focus {
  background-color: #111C30 !important;
  border-color: var(--color-gold-bright) !important;
  box-shadow: 0 0 0 3px rgba(200, 154, 61, 0.25) !important;
}

[data-theme="dark"] select.form-control {
  background-color: #0B1322 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  color: #F8FAFC !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23E2BA62'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1.25rem 1.25rem !important;
  padding-right: 2.75rem !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

[data-theme="dark"] select.form-control option {
  background-color: #111C30 !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .modal-logo-box {
  background: #FFFFFF !important;
  border-color: rgba(200, 154, 61, 0.4) !important;
}

[data-theme="dark"] .modal-close-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #CBD5E1 !important;
}

[data-theme="dark"] .modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2) !important;
  color: #EF4444 !important;
}

[data-theme="dark"] .modal-price-card {
  background: linear-gradient(135deg, #070D18 0%, #101826 100%) !important;
  border-color: rgba(200, 154, 61, 0.4) !important;
}

[data-theme="dark"] .modal-price-main {
  color: #FFFFFF !important;
}

[data-theme="dark"] .modal-price-strike {
  color: #94A3B8 !important;
}

[data-theme="dark"] .modal-desc-text,
[data-theme="dark"] .modal-features-list,
[data-theme="dark"] .modal-feature-checklist {
  background: #111C30 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #E2E8F0 !important;
}

[data-theme="dark"] .modal-features-list li,
[data-theme="dark"] .modal-feature-checklist li {
  color: #E2E8F0 !important;
}

[data-theme="dark"] .modal-block-title {
  color: #F8FAFC !important;
}

[data-theme="dark"] .modal-device-pill,
[data-theme="dark"] .dev-pill {
  background: #162238 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #E2E8F0 !important;
}

[data-theme="dark"] .modal-logo-box {
  background: #FFFFFF !important;
  border-color: rgba(200, 154, 61, 0.4) !important;
}

[data-theme="dark"] .product-logo-box {
  background: #FFFFFF !important;
  border-color: rgba(200, 154, 61, 0.35) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .warranty-guarantee-strip {
  background: linear-gradient(135deg, #111C30 0%, #16243D 100%) !important;
  border: 1px solid rgba(200, 154, 61, 0.35) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .warranty-guarantee-strip i {
  background: rgba(200, 154, 61, 0.2) !important;
  border: 1px solid rgba(200, 154, 61, 0.35) !important;
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .warranty-guarantee-strip strong {
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .warranty-guarantee-strip p {
  color: #CBD5E1 !important;
}

/* Floating WA Speech Prompt in Dark Mode */
[data-theme="dark"] .wa-speech-prompt {
  background: #111C30 !important;
  border: 1px solid rgba(200, 154, 61, 0.35) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .wa-speech-prompt::after {
  border-top-color: #111C30 !important;
}

[data-theme="dark"] .wa-speech-header strong {
  color: #F8FAFC !important;
}

[data-theme="dark"] .wa-speech-prompt p {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .wa-close-btn {
  color: #94A3B8 !important;
}

/* Testimonial Enhanced Elements in Dark Mode */
[data-theme="dark"] .testi-summary-bar {
  background: #0E1726 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .testi-rating-score,
[data-theme="dark"] .testi-summary-stat {
  color: #F8FAFC !important;
}

[data-theme="dark"] .testi-summary-divider {
  background: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .testi-filter-btn {
  background: #111C30 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #94A3B8 !important;
}

[data-theme="dark"] .testi-filter-btn:hover {
  border-color: rgba(200, 154, 61, 0.35) !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .testi-filter-btn.is-active {
  background: var(--color-gold-main) !important;
  color: #070D18 !important;
  border-color: var(--color-gold-main) !important;
  box-shadow: 0 4px 14px rgba(200, 154, 61, 0.25) !important;
}

[data-theme="dark"] .testi-demo-notice {
  background: rgba(200, 154, 61, 0.12) !important;
  border-color: rgba(200, 154, 61, 0.4) !important;
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .chat-testi-card {
  background: #111C30 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
}

[data-theme="dark"] .chat-testi-header {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .chat-author-name {
  color: #F8FAFC !important;
}

[data-theme="dark"] .chat-author-role {
  color: #94A3B8 !important;
}

[data-theme="dark"] .chat-service-pill {
  background: rgba(200, 154, 61, 0.15) !important;
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .chat-bubble {
  background: #16243D !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .chat-bubble-text {
  color: #F1F5F9 !important;
}

[data-theme="dark"] .chat-bubble-meta {
  color: #94A3B8 !important;
}

[data-theme="dark"] .chat-bubble-checks {
  color: #60A5FA !important;
}

[data-theme="dark"] .chat-testi-footer {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  color: #94A3B8 !important;
}

[data-theme="dark"] .chat-verified-badge {
  color: #4ADE80 !important;
}

[data-theme="dark"] .testi-load-more-btn {
  background: #111C30 !important;
  border-color: var(--color-gold-main) !important;
  color: var(--color-gold-bright) !important;
}

[data-theme="dark"] .testi-load-more-btn:hover {
  background: var(--color-gold-main) !important;
  color: #070D18 !important;
}

/* ==========================================================================
   MULTI-LANGUAGE RESILIENCY & ANTI-CLIPPING LAYOUT RULES
   ========================================================================== */
/* Flexible line heights and elastic button wrapping for all languages */
.btn,
.gateway-btn,
.btn-card-order,
.btn-card-detail,
.btn-modal-cta,
.cat-tab-btn,
.gateway-tag-pill,
.mockup-chip,
.badge-category {
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
}

.nav-menu-link {
  line-height: 1.3;
}

.product-title,
.gateway-title,
.pricing-name,
.academic-title,
.modal-title {
  word-break: break-word;
  hyphens: auto;
}

/* Language specific font spacing */
html[lang="zh"] {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  letter-spacing: 0.02em;
}
html[lang="zh"] .brand-subtitle,
html[lang="zh"] .gateway-badge,
html[lang="zh"] .badge-category {
  letter-spacing: 0.05em;
}


