/* ============================================================
   Modern Digital World LLC — Corporate Website
   assets/css/style.css
   Complete Design System
   ============================================================ */

/* ------------------------------------------------------------
   1. ROOT VARIABLES
   ------------------------------------------------------------ */
:root {
  /* Core Palette */
  --navy-dark:    #071529;
  --navy:         #0b1f3a;
  --navy-mid:     #0d2647;
  --navy-light:   #112d54;
  --teal:         #0097a7;
  --teal-light:   #00bcd4;
  --teal-glow:    rgba(0, 188, 212, 0.15);
  --gold:         #c8a84b;
  --gold-light:   #e0c06b;
  --white:        #ffffff;
  --off-white:    #f7f8fc;
  --gray-50:      #f0f4f8;
  --gray-100:     #e2e8f0;
  --gray-200:     #cbd5e0;
  --gray-300:     #a0aec0;
  --gray-500:     #718096;
  --gray-700:     #4a5568;
  --gray-900:     #1a202c;

  /* Typography */
  --font-heading: 'Nunito', sans-serif;
  --font-body:    'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-pad:  100px 0;
  --container-w:  1200px;
  --gap:          2rem;

  /* Effects */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.18);
  --shadow-card:  0 4px 20px rgba(11,31,58,0.08);
  --shadow-hover: 0 12px 40px rgba(11,31,58,0.18);

  /* Border Radius */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* Transitions */
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Borders */
  --border-light: 1px solid rgba(255,255,255,0.08);
  --border-card:  1px solid var(--gray-100);
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-family: 'Nunito', sans-serif; font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 0.9375rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-teal   { color: var(--teal-light); }
.text-gold   { color: var(--gold); }
.text-gray   { color: var(--gray-500); }
.text-white  { color: var(--white); }
.text-navy   { color: var(--navy); }
.text-center { text-align: center; }

/* ------------------------------------------------------------
   4. UTILITIES & LAYOUT
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section             { padding: var(--section-pad); }
.section-dark        { background: var(--navy); }
.section-navy-dark   { background: var(--navy-dark); }
.section-light       { background: var(--off-white); }
.section-white       { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }

/* Section header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2  { margin-bottom: 1rem; }
.section-header p   { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.8; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.72); }

/* Label pill above headings */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(0, 188, 212, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,188,212,0.2);
}
.section-label.gold {
  color: var(--gold);
  background: rgba(200, 168, 75, 0.1);
  border-color: rgba(200,168,75,0.2);
}

/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 151, 167, 0.35);
}
.btn-primary:hover {
  background: var(--teal-light);
  box-shadow: 0 8px 28px rgba(0, 188, 212, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,151,167,0.3);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(200,168,75,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(200,168,75,0.4);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.btn-lg  { padding: 17px 42px; font-size: 1rem; }
.btn-sm  { padding: 10px 22px; font-size: 0.875rem; }

/* ------------------------------------------------------------
   6. HEADER & NAVIGATION
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(7, 21, 41, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-text span { color: var(--teal-light); }
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-light);
  transition: var(--transition);
  border-radius: 1px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.mobile-nav a:hover { color: var(--teal-light); }
.mobile-nav .btn { margin-top: 12px; }

/* ------------------------------------------------------------
   7. HERO — HOME PAGE
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* prevents mobile browser-chrome CLS */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040810;
  contain: layout; /* isolate layout calc from rest of page */
}

/* Canvas particle layer */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  background:
    radial-gradient(ellipse 60% 60% at 15% 50%, rgba(130,100,255,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(0,220,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 60% 85%, rgba(255,100,180,0.09) 0%, transparent 60%),
    #040810;
  animation: heroBreathe 20s ease-in-out infinite;
}

@keyframes heroBreathe {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.02) translate(-8px, 6px); }
  66%       { transform: scale(1.01) translate(6px, -4px); }
}

/* Grid overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(0, 220, 255, 0.06) 59px,
      rgba(0, 220, 255, 0.06) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(0, 220, 255, 0.06) 59px,
      rgba(0, 220, 255, 0.06) 60px
    );
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* Aurora ribbons */
.hero-aurora {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(50px);
}
.hero-aurora-1 {
  width: 80%;
  height: 120px;
  top: 15%;
  left: -10%;
  background: linear-gradient(90deg, transparent, rgba(0,220,255,0.18), rgba(130,100,255,0.14), transparent);
  animation: auroraFlow 18s linear infinite;
}
.hero-aurora-2 {
  width: 60%;
  height: 90px;
  bottom: 25%;
  right: -5%;
  background: linear-gradient(90deg, transparent, rgba(255,100,180,0.14), rgba(0,220,255,0.12), transparent);
  animation: auroraFlow 22s linear infinite reverse 4s;
}
.hero-aurora-3 {
  width: 50%;
  height: 70px;
  top: 60%;
  left: 20%;
  background: linear-gradient(90deg, transparent, rgba(0,255,180,0.1), rgba(130,100,255,0.1), transparent);
  animation: auroraFlow 14s linear infinite 8s;
}
@keyframes auroraFlow {
  0%   { transform: translateX(-20%) scaleX(1); }
  50%  { transform: translateX(20%) scaleX(1.1); }
  100% { transform: translateX(-20%) scaleX(1); }
}

/* Glow orbs */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-shape-1 {
  width: 700px;
  height: 700px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(0,220,255,0.1) 0%, transparent 65%);
}
.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: 60px;
  left: 0;
  background: radial-gradient(circle, rgba(130,100,255,0.1) 0%, transparent 65%);
}

/* Floating diamonds */
.hero-diamond {
  position: absolute;
  border: 1px solid rgba(0, 220, 255, 0.18);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 1;
}
.hero-diamond-1 { width: 90px; height: 90px; top: 16%; right: 22%; animation: diamondFloat 8s ease-in-out infinite; }
.hero-diamond-2 { width: 55px; height: 55px; bottom: 22%; right: 32%; animation: diamondFloat 11s ease-in-out infinite reverse 1s; }
.hero-diamond-3 { width: 44px; height: 44px; top: 42%; left: 8%; border-color: rgba(130,100,255,0.18); animation: diamondFloat 7s ease-in-out infinite 2s; }

@keyframes diamondFloat {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(-22px); }
}

/* Hero two-column grid */
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  width: 100%;
  contain: layout;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Hero visual — vertical domain ticker */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-visual-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,220,255,0.5);
}

.hero-ticker-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,220,255,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  transform: translateZ(0); /* promote to own compositor layer — avoids late blur CLS */
  will-change: transform;
}

.hero-ticker-wrap:hover .hero-ticker {
  animation-play-state: paused;
}

.hero-ticker {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  animation: heroTickerScroll 22s linear infinite;
}

@keyframes heroTickerScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.hero-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.6);
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.hero-tile img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.hero-tile span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  color: rgba(255,255,255,0.92);
}
.hero-tile span::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--tile-color, rgba(0,220,255,0.6));
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-tile:hover {
  border-color: var(--tile-color, rgba(0,220,255,0.4));
  background: rgba(255,255,255,0.06);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 16px color-mix(in srgb, var(--tile-color, rgba(0,220,255,1)) 15%, transparent);
}
.hero-tile:hover span::after {
  opacity: 1;
  transform: translateX(0);
}
.hero-tile:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,220,255,0.9);
  padding: 7px 18px;
  border: 1px solid rgba(0, 220, 255, 0.28);
  border-radius: 100px;
  background: rgba(0, 220, 255, 0.06);
  backdrop-filter: blur(8px);
  margin-bottom: 1.75rem;
}
.hero-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #00dcff;
  border-radius: 50%;
  box-shadow: 0 0 8px #00dcff;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero h1 .accent {
  background: linear-gradient(135deg,
    #00dcff 0%,
    #7ae8ff 20%,
    #8264ff 42%,
    #ff64b4 62%,
    #00ffb4 80%,
    #50c8ff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8375rem;
  color: rgba(255,255,255,0.45);
}
.hero-trust-item i { color: #00dcff; font-size: 0.875rem; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(0,220,255,0.7), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { opacity: 0.4; transform: scaleY(1) translateY(0); }
  50%       { opacity: 1; transform: scaleY(1.15) translateY(4px); }
}

/* ------------------------------------------------------------
   8. PAGE HERO — INNER PAGES
   ------------------------------------------------------------ */
.page-hero {
  padding: 168px 0 100px;
  position: relative;
  overflow: hidden;
  background: #040810;
}

/* Canvas particle layer */
.page-hero #heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Background glows */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% -10%, rgba(0,220,255,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(130,100,255,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 85% 70%, rgba(255,100,180,0.08) 0%, transparent 60%);
  animation: heroBreathe 20s ease-in-out infinite;
}

/* Grid overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,220,255,0.055) 59px, rgba(0,220,255,0.055) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,220,255,0.055) 59px, rgba(0,220,255,0.055) 60px);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  animation: gridPulse 8s ease-in-out infinite;
}

/* Aurora ribbons */
.page-hero-aurora {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(50px);
}
.page-hero-aurora-1 {
  width: 80%;
  height: 100px;
  top: 30%;
  left: -10%;
  background: linear-gradient(90deg, transparent, rgba(0,220,255,0.16), rgba(130,100,255,0.12), transparent);
  animation: auroraFlow 18s linear infinite;
}
.page-hero-aurora-2 {
  width: 55%;
  height: 70px;
  bottom: 20%;
  right: -5%;
  background: linear-gradient(90deg, transparent, rgba(255,100,180,0.12), rgba(0,220,255,0.1), transparent);
  animation: auroraFlow 22s linear infinite reverse 4s;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero-content h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #00dcff 0%, #7ae8ff 25%, #8264ff 50%, #ff64b4 75%, #00ffb4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
}
.page-hero-content p    { color: rgba(255,255,255,0.65); font-size: 1.0625rem; line-height: 1.85; }
.page-hero-content .section-label {
  color: rgba(0,220,255,0.85);
  border-color: rgba(0,220,255,0.25);
  background: rgba(0,220,255,0.06);
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  letter-spacing: 0.18em;
  backdrop-filter: blur(8px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--teal-light); }

/* ------------------------------------------------------------
   9. CARDS
   ------------------------------------------------------------ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 188, 212, 0.22);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0,151,167,0.1), rgba(0,188,212,0.16));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--teal);
  transition: var(--transition);
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  transform: scale(1.06);
}
.card h3   { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card p    { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.75; margin: 0; }

/* Dark card variant */
.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.card-dark:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,188,212,0.22);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}
.card-dark h3 { color: var(--white); }
.card-dark p  { color: rgba(255,255,255,0.62); }

/* Feature check list */
.feature-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230097a7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}
.feature-list.light li          { color: rgba(255,255,255,0.72); }
.feature-list.light li::before  {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300bcd4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ------------------------------------------------------------
   9b. DOMAIN SLIDER
   ------------------------------------------------------------ */
.domain-slider {
  background: #040810;
  padding: 40px 0 44px;
  overflow: hidden;
  border-top: 1px solid rgba(0,220,255,0.08);
  border-bottom: 1px solid rgba(0,220,255,0.08);
  position: relative;
}

.domain-slider-label {
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,220,255,0.45);
  margin-bottom: 28px;
}

.domain-track-wrap {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.domain-track-wrap:hover .domain-track {
  animation-play-state: paused;
}

.domain-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: domainScroll 36s linear infinite;
}

@keyframes domainScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.domain-tile {
  width: 128px;
  height: 128px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.6);
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.domain-tile i {
  font-size: 2rem;
  color: var(--tile-color, rgba(0,220,255,0.7));
  transition: color 0.3s ease, filter 0.3s ease;
}
.domain-tile:hover {
  border-color: var(--tile-color, rgba(0,220,255,0.5));
  background: rgba(255,255,255,0.06);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 20px color-mix(in srgb, var(--tile-color, rgba(0,220,255,1)) 20%, transparent);
}
.domain-tile:hover i {
  filter: drop-shadow(0 0 8px var(--tile-color, rgba(0,220,255,0.8)));
}

/* ------------------------------------------------------------
   10. STATS SECTION
   ------------------------------------------------------------ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% 0%, rgba(0,151,167,0.15), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number span { color: var(--teal-light); }
.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.48);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   11. HOME — INTRO SECTION
   ------------------------------------------------------------ */
.intro-section { padding: 100px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Abstract visual block */
.intro-visual {
  position: relative;
  height: 440px;
}
.visual-block {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.visual-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 25% 35%, rgba(0,151,167,0.22), transparent),
    repeating-linear-gradient(45deg, transparent, transparent 38px, rgba(0,188,212,0.04) 38px, rgba(0,188,212,0.04) 39px);
}
.visual-float { position: absolute; }
.visual-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  color: var(--white);
}
.visual-card-1 { top: 32px; left: 28px; right: 88px; }
.visual-card-2 { bottom: 40px; right: 24px; left: 80px; }
.visual-card-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--teal-light);
  margin-bottom: 8px;
  font-weight: 600;
}
.visual-card-stat {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.visual-bar {
  margin-top: 10px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.visual-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--teal), var(--teal-light));
  border-radius: 3px;
}

/* Floating widget */
.visual-widget {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  text-align: center;
}
.visual-widget-icon {
  font-size: 1.75rem;
  color: var(--teal);
  margin-bottom: 6px;
}
.visual-widget p {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.visual-widget-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

/* Intro text */
.intro-content .section-label { display: inline-block; margin-bottom: 1rem; }
.intro-content h2              { margin-bottom: 1.25rem; }
.intro-content p               { color: var(--gray-500); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.25rem; }
.intro-points {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.intro-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
}
.intro-point-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* ------------------------------------------------------------
   12. HOME — SERVICES GRID
   ------------------------------------------------------------ */
.services-section { padding: 100px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ------------------------------------------------------------
   13. HOME — PRODUCTS SHOWCASE
   ------------------------------------------------------------ */
.products-showcase { padding: 100px 0; }
.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 44px;
}
.product-card:last-child { margin-bottom: 0; }

.product-card-visual {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 30% 40%, rgba(0,151,167,0.28), transparent),
    repeating-linear-gradient(-45deg, transparent, transparent 38px, rgba(0,188,212,0.04) 38px, rgba(0,188,212,0.04) 39px);
}
.product-card-reverse .product-card-visual {
  order: 2;
  background: linear-gradient(140deg, #071529 0%, #0a2240 100%);
}
.product-card-reverse .product-card-visual::before {
  background:
    radial-gradient(ellipse 80% 80% at 70% 60%, rgba(200,168,75,0.22), transparent),
    repeating-linear-gradient(45deg, transparent, transparent 38px, rgba(200,168,75,0.04) 38px, rgba(200,168,75,0.04) 39px);
}

.product-icon-large {
  position: relative;
  z-index: 1;
  font-size: 7rem;
  color: rgba(255,255,255,0.12);
}

.product-card-content {
  background: var(--white);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,151,167,0.09);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,151,167,0.2);
}
.product-tag.gold {
  color: var(--gold);
  background: rgba(200,168,75,0.09);
  border-color: rgba(200,168,75,0.2);
}
.product-card-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.product-card-content > p { color: var(--gray-500); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.product-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 2rem;
}
.product-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}
.product-feature-item i { color: var(--teal); font-size: 0.8rem; }

/* ------------------------------------------------------------
   14. HOME — INDUSTRIES TILES
   ------------------------------------------------------------ */
.industries-home { padding: 100px 0; background: var(--off-white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-tile {
  background: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-card);
}
.industry-tile:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.industry-tile:hover .industry-icon,
.industry-tile:hover h4 { color: var(--white); }
.industry-tile:hover p  { color: rgba(255,255,255,0.58); }
.industry-icon {
  margin-bottom: 1rem;
  transition: var(--transition);
}
.industry-icon img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: var(--transition);
}
.industry-tile h4 { font-size: 0.975rem; margin-bottom: 0.5rem; transition: var(--transition); }
.industry-tile p  { font-size: 0.8375rem; color: var(--gray-500); transition: var(--transition); margin: 0; }

/* ------------------------------------------------------------
   15. WHY CHOOSE US
   ------------------------------------------------------------ */
.why-section {
  padding: 100px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 8% 50%, rgba(0,151,167,0.13), transparent),
    radial-gradient(ellipse 50% 80% at 92% 50%, rgba(200,168,75,0.07), transparent);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-content h2  { color: var(--white); margin-bottom: 1.25rem; }
.why-content > p { color: rgba(255,255,255,0.65); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 2.5rem; }
.why-points      { display: flex; flex-direction: column; gap: 20px; }
.why-point       { display: flex; gap: 16px; }
.why-point-icon  {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0,188,212,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 1.2rem;
  transition: var(--transition);
}
.why-point:hover .why-point-icon { background: var(--teal); color: var(--white); }
.why-point-text h4  { color: var(--white); font-size: 0.975rem; margin-bottom: 4px; }
.why-point-text p   { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.6; }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(0,151,167,0.1);
  border-color: rgba(0,188,212,0.22);
}
.why-card-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal-light);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-card h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.8125rem; color: rgba(255,255,255,0.48); margin: 0; line-height: 1.6; }

/* ------------------------------------------------------------
   16. PROCESS SECTION
   ------------------------------------------------------------ */
.process-section { padding: 100px 0; background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--teal-light), var(--navy-light), var(--navy));
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
  box-shadow: 0 0 0 6px var(--white);
}
.process-step:hover .step-circle {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,151,167,0.4), 0 0 0 6px var(--white);
}
.process-step:nth-child(3) .step-circle,
.process-step:nth-child(4) .step-circle { border-color: var(--navy); color: var(--navy); }
.process-step:nth-child(3):hover .step-circle,
.process-step:nth-child(4):hover .step-circle {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(11,31,58,0.3), 0 0 0 6px var(--white);
}
.process-step h4 { font-size: 0.975rem; margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* ------------------------------------------------------------
   17. CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
  padding: 84px 0;
  background: linear-gradient(135deg, var(--teal) 0%, #005f6b 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 28px,
    rgba(255,255,255,0.03) 28px, rgba(255,255,255,0.03) 29px
  );
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact strip (pre-footer) */
.contact-strip {
  padding: 60px 0;
  background: var(--navy);
}
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-strip-text h3 { color: var(--white); font-size: 1.375rem; margin-bottom: 0.5rem; }
.contact-strip-text p  { color: rgba(255,255,255,0.58); font-size: 0.9375rem; margin: 0; }

/* ------------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
  max-width: 300px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item i { color: var(--teal-light); font-size: 0.875rem; margin-top: 2px; min-width: 14px; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--teal-light); padding-left: 4px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p   { font-size: 0.8rem; color: rgba(255,255,255,0.32); margin: 0; }
.footer-bottom a   { color: rgba(255,255,255,0.48); transition: var(--transition); }
.footer-bottom a:hover { color: var(--teal-light); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.48);
  font-size: 0.8rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ------------------------------------------------------------
   19. ABOUT PAGE
   ------------------------------------------------------------ */
.about-intro { padding: 100px 0; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-vision { padding: 100px 0; background: var(--off-white); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 42px;
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--teal), var(--teal-light));
}
.mv-card.vision::before { background: linear-gradient(to right, var(--gold), var(--gold-light)); }
.mv-icon         { font-size: 2.5rem; color: var(--teal); margin-bottom: 1.5rem; }
.mv-card.vision .mv-icon { color: var(--gold); }
.mv-card h3      { font-size: 1.5rem; margin-bottom: 1rem; }
.mv-card p       { color: var(--gray-500); font-size: 1rem; line-height: 1.8; margin: 0; }

.values-section { padding: 100px 0; background: var(--navy-dark); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(0,151,167,0.1);
  border-color: rgba(0,188,212,0.25);
  transform: translateY(-4px);
}
.value-icon  { font-size: 2.25rem; color: var(--teal-light); margin-bottom: 1.25rem; }
.value-card h4 { color: var(--white); margin-bottom: 0.75rem; }
.value-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.52); line-height: 1.75; margin: 0; }

/* Timeline */
.timeline-section { padding: 100px 0; }
.timeline {
  position: relative;
  max-width: 820px;
  margin: 60px auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--navy-light));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 52px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-left  { text-align: right; }
.timeline-right { text-align: left; }
.timeline-dot {
  width: 18px;
  height: 18px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--teal);
  position: relative;
  top: 4px;
  z-index: 1;
  flex-shrink: 0;
}
.timeline-year  { font-family: var(--font-heading); font-size: 1.5rem; color: var(--teal); margin-bottom: 0.25rem; }
.timeline-title { font-family: var(--font-heading); font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.timeline-desc  { font-size: 0.875rem; color: var(--gray-500); margin: 0; line-height: 1.6; }

/* Team */
.team-section { padding: 100px 0; background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-avatar {
  width: 100%;
  height: 200px;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 30%, rgba(0,151,167,0.22), transparent);
}
.team-info { padding: 24px; }
.team-info h4   { margin-bottom: 4px; }
.team-info .role { font-size: 0.875rem; color: var(--teal); font-weight: 500; margin: 0; }

/* ------------------------------------------------------------
   20. SOLUTIONS PAGE
   ------------------------------------------------------------ */
.solutions-intro { padding: 100px 0; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.solution-card {
  background: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  gap: 24px;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,188,212,0.2);
}
.solution-icon-wrap {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: linear-gradient(135deg, rgba(0,151,167,0.1), rgba(0,188,212,0.16));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--teal);
  transition: var(--transition);
}
.solution-card:hover .solution-icon-wrap {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
}
.solution-text      { flex: 1; }
.solution-text h3   { font-size: 1.15rem; margin-bottom: 0.75rem; }
.solution-text > p  { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 1rem; }

/* FAQ */
.faq-section { padding: 100px 0; background: var(--off-white); }
.faq-list    { max-width: 800px; margin: 60px auto 0; }
.faq-item {
  background: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  width: 100%;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  transition: var(--transition);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--gray-900);
}
.faq-question:hover { background: rgba(0,151,167,0.03); color: var(--teal); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-question h4 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: inherit;
  transition: var(--transition);
  margin: 0;
}
.faq-question:hover h4,
.faq-item.open .faq-question h4 { color: var(--teal); }
.faq-question i {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.faq-question:hover i,
.faq-item.open .faq-question i { color: var(--teal); transform: rotate(180deg); }
.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--teal); color: var(--white); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 28px 24px; font-size: 0.9375rem; color: var(--gray-500); line-height: 1.8; margin: 0; }

/* ------------------------------------------------------------
   21. PRODUCTS PAGE
   ------------------------------------------------------------ */
.product-detail { padding: 100px 0; }
.product-detail.alt { background: var(--off-white); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-detail-grid.reverse > .product-detail-visual { order: 2; }

.product-detail-visual {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.product-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 30% 30%, rgba(0,151,167,0.28), transparent),
    repeating-linear-gradient(-45deg, transparent, transparent 38px, rgba(255,255,255,0.018) 38px, rgba(255,255,255,0.018) 39px);
}
.product-detail-visual.gold::before {
  background:
    radial-gradient(ellipse 80% 70% at 70% 30%, rgba(200,168,75,0.28), transparent),
    repeating-linear-gradient(45deg, transparent, transparent 38px, rgba(255,255,255,0.018) 38px, rgba(255,255,255,0.018) 39px);
}
.product-visual-icon {
  position: relative;
  z-index: 1;
  font-size: 5.5rem;
  color: rgba(255,255,255,0.18);
}
.product-visual-badge {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  max-width: 240px;
}

.product-detail-header              { max-width: 720px; margin-bottom: 0; }
.product-detail-header h2           { font-size: 2.25rem; margin-bottom: 0.75rem; }
.product-detail-header > p          { color: var(--gray-500); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 0; }
.product-detail-content h2          { font-size: 2.25rem; margin-bottom: 0.75rem; }
.product-subtitle                   { font-size: 1.1rem; color: var(--teal); font-weight: 600; margin-bottom: 1.25rem; }
.product-detail-content > p         { color: var(--gray-500); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.5rem; }
.features-heading                   { font-family: var(--font-heading); font-size: 0.95rem; color: var(--navy); margin-bottom: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.features-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 2rem;
}
.feat-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray-700); font-weight: 500; }
.feat-item i { color: var(--teal); font-size: 0.8125rem; margin-top: 3px; }

.for-section {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 2rem;
  border: var(--border-card);
}
.for-section h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.75rem; }
.for-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.for-tag  { display: inline-block; font-size: 0.8125rem; font-weight: 500; color: var(--teal); background: rgba(0,151,167,0.09); padding: 5px 14px; border-radius: 100px; border: 1px solid rgba(0,151,167,0.18); }

/* Designer network tag cloud */
.designer-network { padding: var(--section-pad); background: #060f1c; }
.designer-network-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.designer-network-intro .section-header { margin-bottom: 0; text-align: left; }
.designer-network-intro .section-header h2 { margin-bottom: 0.5rem; }
.designer-network-count {
  flex-shrink: 0;
  background: rgba(0,188,212,0.08);
  border: 1px solid rgba(0,188,212,0.2);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  text-align: center;
}
.designer-network-count strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  font-family: var(--font-mono);
}
.designer-network-count span { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; }
.designer-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 420px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}
.designer-tags-cloud.expanded { max-height: none; }
.designer-tags-cloud::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, #060f1c, transparent);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.designer-tags-cloud.expanded::after { opacity: 0; }
.designer-tag {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.045);
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.designer-tag:hover { color: var(--teal-light); background: rgba(0,188,212,0.1); border-color: rgba(0,188,212,0.25); }
.designer-network-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.75rem;
}
.btn-expand-designers {
  background: transparent;
  border: 1px solid rgba(0,188,212,0.3);
  color: var(--teal-light);
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-expand-designers:hover { background: rgba(0,188,212,0.1); border-color: rgba(0,188,212,0.5); }

/* Custom solutions tiles */
.custom-solutions { padding: 100px 0; background: var(--navy-dark); }
.custom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.custom-tile {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.custom-tile:hover { background: rgba(0,151,167,0.06); border-color: rgba(0,188,212,0.35); transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,151,167,0.12); }
.custom-tile i  { font-size: 2rem; color: var(--teal); margin-bottom: 1rem; }
.custom-tile h4 { color: var(--navy); font-size: 0.9rem; margin-bottom: 0.5rem; }
.custom-tile p  { font-size: 0.8125rem; color: var(--gray-600); margin: 0; line-height: 1.6; }

/* ------------------------------------------------------------
   22. INDUSTRIES PAGE
   ------------------------------------------------------------ */
.industries-all { padding: 100px 0; background: var(--white); }
.industries-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.industry-card {
  background: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(0,188,212,0.2); }
.industry-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(0,151,167,0.1), rgba(0,188,212,0.16));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--teal);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.industry-card:hover .industry-card-icon { background: var(--teal); color: var(--white); }
.industry-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.industry-card p  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.25rem; }
.features-mini    { display: flex; flex-direction: column; gap: 7px; text-align: left; }
.features-mini li { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: var(--gray-700); font-weight: 500; }
.features-mini li i { color: var(--teal); font-size: 0.75rem; }

/* Business image cards — 3-per-row */
.biz-cards-section { padding: var(--section-pad); background: var(--bg-dark); }
.biz-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}
.biz-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d1e35;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.biz-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(0,188,212,0.18);
  border-color: rgba(0,188,212,0.3);
}
.biz-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.biz-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.biz-card:hover .biz-card-img img { transform: scale(1.07); }
.biz-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,15,30,0.72) 0%, transparent 60%);
}
.biz-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.biz-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.01em;
}
.biz-card-body h4 a {
  color: inherit;
  text-decoration: none;
}
.biz-card-body h4 a:hover {
  color: var(--teal-light);
}
.biz-card-body p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
  margin: 0;
}
.biz-card-body .biz-card-link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.biz-card-body .biz-card-link:hover { gap: 10px; }
.biz-card-icon-banner {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.85);
  transition: font-size 0.3s ease;
}
.biz-card:hover .biz-card-icon-banner { font-size: 4rem; }
@media (max-width: 900px) {
  .biz-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .biz-cards-grid { grid-template-columns: 1fr; }
}

/* Industry detail rows */
.industry-detail-section { padding: 80px 0; }
.industry-detail-section:nth-child(even) { background: var(--off-white); }
.industry-detail-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.industry-big-icon {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,151,167,0.1), rgba(0,188,212,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  color: var(--teal);
  flex-shrink: 0;
}
.industry-detail-row h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.industry-detail-row p  { color: var(--gray-500); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.25rem; }

/* ------------------------------------------------------------
   23. CONTACT PAGE
   ------------------------------------------------------------ */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-dark);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.contact-info-card h3   { color: var(--white); font-size: 1.75rem; margin-bottom: 0.75rem; }
.contact-info-card > p  { color: rgba(255,255,255,0.58); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 2.5rem; }
.contact-detail-item { display: flex; gap: 16px; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(0,188,212,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 1rem;
}
.contact-detail-text label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 4px; }
.contact-detail-text p, .contact-detail-text a { font-size: 0.9375rem; color: rgba(255,255,255,0.82); line-height: 1.5; margin: 0; }
.contact-detail-text a:hover { color: var(--teal-light); }
.map-placeholder {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  cursor: pointer;
}
.map-placeholder i { font-size: 1.75rem; color: var(--teal-light); }
.map-placeholder:hover { border-color: rgba(0,188,212,0.25); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  border: var(--border-card);
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h3   { font-size: 1.625rem; margin-bottom: 0.5rem; }
.contact-form-wrap > p  { color: var(--gray-500); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8375rem; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.form-group label .req { color: var(--teal); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,151,167,0.1);
}
.form-control.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-control::placeholder { color: var(--gray-200); }
select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
textarea.form-control { resize: vertical; min-height: 130px; }
.field-error { display: none; font-size: 0.8rem; color: #ef4444; margin-top: 5px; }
.field-error.visible { display: block; }
.form-success {
  display: none;
  background: rgba(0,151,167,0.08);
  border: 1px solid rgba(0,151,167,0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: var(--teal);
  font-weight: 600;
  margin-top: 20px;
}
.form-success.visible { display: block; }
.form-success i { font-size: 2rem; display: block; margin-bottom: 10px; }

/* ------------------------------------------------------------
   24. ANIMATIONS
   ------------------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
.fade-up:nth-child(7) { transition-delay: 0.6s; }
.fade-up:nth-child(8) { transition-delay: 0.65s; }
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.visible { opacity: 1; }

/* Stagger helpers for grids */
.stagger-grid > *:nth-child(1) { transition-delay: 0s; }
.stagger-grid > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-grid > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-grid > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-grid > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-grid > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-grid > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-grid > *:nth-child(8) { transition-delay: 0.56s; }

/* ------------------------------------------------------------
   25. PAYMENT INTEGRATION SECTION
   ------------------------------------------------------------ */

/* Main section — home page & solutions page */
.payment-section {
  padding: 100px 0;
  background: linear-gradient(145deg, #071529 0%, #0a1e38 55%, #06141f 100%);
  position: relative;
  overflow: hidden;
}
.payment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 5% 50%, rgba(0,151,167,0.2), transparent),
    radial-gradient(ellipse 45% 60% at 90% 25%, rgba(200,168,75,0.1), transparent),
    repeating-linear-gradient(135deg, transparent, transparent 59px, rgba(0,188,212,0.025) 59px, rgba(0,188,212,0.025) 60px);
}
.payment-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.payment-content h2       { color: var(--white); margin-bottom: 1.25rem; }
.payment-content > p      { color: rgba(255,255,255,0.7); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 2rem; }
.payment-content > p.lead { font-size: 1.1rem; border-left: 3px solid var(--teal); padding-left: 1.25rem; color: rgba(255,255,255,0.8); font-style: italic; margin-bottom: 2rem; }

/* Gold badge above heading */
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.payment-badge i { font-size: 0.875rem; }

/* Benefits list */
.payment-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2.25rem;
}
.payment-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.payment-benefit-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(0,188,212,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 0.9rem;
  margin-top: 2px;
  transition: var(--transition);
}
.payment-benefit-item:hover .payment-benefit-icon { background: var(--teal); color: var(--white); }
.payment-benefit-text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}
.payment-benefit-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.5;
}

/* Visual panel — the "flow diagram" */
.payment-visual { position: relative; }
.payment-device {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.payment-device::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 15%, rgba(0,188,212,0.1), transparent);
}
.payment-device-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.payment-device-icon {
  font-size: 3.5rem;
  color: var(--teal-light);
  margin-bottom: 10px;
}
.payment-device-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.payment-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.payment-flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  transition: var(--transition);
}
.payment-flow-step:hover { background: rgba(0,151,167,0.1); border-color: rgba(0,188,212,0.22); }
.payment-flow-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.payment-flow-step-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  line-height: 1.4;
}
.payment-flow-arrow {
  text-align: center;
  color: rgba(0,188,212,0.35);
  font-size: 0.8rem;
  padding: 2px 0;
}
.payment-flow-highlight {
  margin-top: 16px;
  background: linear-gradient(135deg, rgba(0,151,167,0.15), rgba(0,188,212,0.1));
  border: 1px solid rgba(0,188,212,0.25);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.payment-flow-highlight i { color: var(--teal-light); font-size: 1rem; flex-shrink: 0; }
.payment-flow-highlight p { font-size: 0.8375rem; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.5; }
.payment-flow-highlight strong { color: var(--teal-light); }

/* Callout box — used inside product detail sections */
.payment-callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(0,188,212,0.25);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.payment-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 95% 50%, rgba(0,151,167,0.12), transparent);
}
.payment-callout-inner { position: relative; z-index: 1; }
.payment-callout-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}
.payment-callout h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.75rem; }
.payment-callout p  { color: rgba(255,255,255,0.68); font-size: 0.9375rem; line-height: 1.75; margin-bottom: 1rem; }
.payment-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal-light);
  background: rgba(0,188,212,0.09);
  border: 1px solid rgba(0,188,212,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}
.payment-pill i { font-size: 0.7rem; }

/* Full-width payment card for solutions grid */
.solution-card.payment-featured {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(0,188,212,0.22);
  grid-column: 1 / -1;
}
.solution-card.payment-featured h3 { color: var(--white); }
.solution-card.payment-featured .solution-text > p { color: rgba(255,255,255,0.68); }
.solution-card.payment-featured .solution-icon-wrap {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
}
.solution-card.payment-featured:hover {
  border-color: rgba(0,188,212,0.45);
  box-shadow: 0 12px 40px rgba(0,151,167,0.2);
}
.solution-card.payment-featured .feature-list.light li { color: rgba(255,255,255,0.72); }

/* Payment advantage strip — contact page */
.payment-advantage {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(0,188,212,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}
.payment-advantage-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}
.payment-advantage-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}
.payment-advantage-header h4 { color: var(--white); font-size: 1rem; margin: 0; }
.payment-advantage p { color: rgba(255,255,255,0.62); font-size: 0.875rem; line-height: 1.7; margin-bottom: 0.75rem; }
.payment-advantage-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.payment-advantage-pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal-light);
  background: rgba(0,188,212,0.09);
  border: 1px solid rgba(0,188,212,0.18);
  padding: 4px 11px;
  border-radius: 100px;
}

/* Responsive */
@media (max-width: 960px) {
  .payment-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .payment-pills, .payment-advantage-pills { flex-direction: column; }
}

/* ------------------------------------------------------------
   26. INDUSTRY PAGES
   ------------------------------------------------------------ */
.industry-intro { padding: var(--section-pad); }
.industry-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.industry-intro-content .section-label { margin-bottom: 1rem; }
.industry-intro-content h2 { margin-bottom: 1.25rem; }
.industry-intro-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.industry-intro-content .btn { margin-top: 0.5rem; }

.industry-intro-visual {
  background: linear-gradient(135deg, rgba(0,151,167,0.08) 0%, rgba(200,168,75,0.04) 100%);
  border: 1px solid rgba(0,151,167,0.2);
  border-radius: 16px;
  padding: 2.5rem;
}
.industry-intro-visual h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.module-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.module-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,151,167,0.15);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  transition: border-color 0.25s, background 0.25s;
}
.module-item:hover {
  border-color: rgba(0,151,167,0.4);
  background: rgba(0,151,167,0.06);
}
.module-item i { color: var(--teal); font-size: 0.9rem; flex-shrink: 0; }

/* Industry benefit cards (Why Choose row) */
.industry-benefits { padding: var(--section-pad); background: var(--bg-dark); }
.industry-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.industry-benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.industry-benefit-card:hover {
  border-color: rgba(0,151,167,0.3);
  transform: translateY(-4px);
}
.industry-benefit-icon {
  width: 52px; height: 52px;
  background: rgba(0,151,167,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.industry-benefit-icon i { font-size: 1.3rem; color: var(--teal); }
.industry-benefit-card h4 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.industry-benefit-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Responsive additions for industry pages */
@media (max-width: 960px) {
  .industry-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .industry-benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .module-list { grid-template-columns: 1fr; }
  .industry-benefits-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   27. RESPONSIVE — MEDIA QUERIES
   ------------------------------------------------------------ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 960px) {
  :root { --section-pad: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .intro-grid,
  .why-grid,
  .about-intro-grid,
  .product-card,
  .product-detail-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .product-card-content { padding: 44px 36px; }
  .product-card-reverse .product-card-visual { order: 0; }
  .product-card-visual { min-height: 280px; }
  .product-detail-grid.reverse > .product-detail-visual { order: 0; }
  .product-detail-visual { height: 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-full-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .intro-visual { height: 340px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .custom-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 24px 1fr; gap: 16px; }
  .timeline-left { display: none; }
  .contact-info-card { position: static; }
  .product-features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .visual-widget { display: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px 0; }
  .container { padding: 0 18px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-grid,
  .industries-grid,
  .industries-full-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .custom-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-strip-inner { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 32px 22px; }
  .contact-info-card { padding: 32px 22px; }
  .product-card-content { padding: 32px 22px; }
  .features-2col { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
}

/* ============================================================
   28. RTL SUPPORT — Arabic (dir="rtl")
   ============================================================ */

/* Arabic font stack */
[dir="rtl"] {
  font-family: 'Cairo', 'Nunito', sans-serif;
}
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
  font-family: 'Cairo', 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

/* General text alignment */
[dir="rtl"] .section-header,
[dir="rtl"] .page-hero-content,
[dir="rtl"] .hero-content,
[dir="rtl"] .section-label,
[dir="rtl"] .footer-brand p {
  text-align: right;
}

/* Logo sub-line */
[dir="rtl"] .logo-sub { text-align: right; }

/* Nav links — reverse order spacing */
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .header-inner { flex-direction: row-reverse; }

/* Mobile nav */
[dir="rtl"] .mobile-nav { text-align: right; }
[dir="rtl"] .mobile-nav a { text-align: right; }

/* Hero */
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-actions { justify-content: flex-start; flex-direction: row-reverse; flex-wrap: wrap; }
[dir="rtl"] .hero-trust { flex-direction: row-reverse; flex-wrap: wrap; }
[dir="rtl"] .hero-trust-item { flex-direction: row-reverse; gap: 6px; }
[dir="rtl"] .hero-grid { direction: rtl; }
[dir="rtl"] .hero-visual { direction: ltr; } /* keep ticker LTR */

/* Cards & grids */
[dir="rtl"] .card { text-align: right; }
[dir="rtl"] .card-icon { margin-right: 0; margin-left: auto; }
[dir="rtl"] .why-point { flex-direction: row-reverse; }
[dir="rtl"] .why-point-text { text-align: right; }
[dir="rtl"] .why-cards { text-align: right; }
[dir="rtl"] .why-card { text-align: right; }
[dir="rtl"] .why-card-num { text-align: right; }
[dir="rtl"] .why-content { text-align: right; }

/* Process steps */
[dir="rtl"] .process-step { text-align: right; }

/* Product cards */
[dir="rtl"] .product-card-content { text-align: right; }
[dir="rtl"] .product-features-grid { direction: rtl; }
[dir="rtl"] .product-feature-item { flex-direction: row-reverse; }
[dir="rtl"] .product-tag { margin-right: 0; }

/* Industries */
[dir="rtl"] .industry-tile { text-align: right; }

/* Payment section */
[dir="rtl"] .payment-content { text-align: right; }
[dir="rtl"] .payment-badge { flex-direction: row-reverse; gap: 8px; }
[dir="rtl"] .payment-benefit-item { flex-direction: row-reverse; }
[dir="rtl"] .payment-benefit-text { text-align: right; }
[dir="rtl"] .payment-flow-step { flex-direction: row-reverse; }
[dir="rtl"] .payment-flow-highlight { flex-direction: row-reverse; text-align: right; }

/* Page hero / breadcrumb */
[dir="rtl"] .breadcrumb { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .breadcrumb-sep { transform: scaleX(-1); }

/* Footer */
[dir="rtl"] .footer-brand { text-align: right; }
[dir="rtl"] .footer-contact-item { flex-direction: row-reverse; }
[dir="rtl"] .footer-col { text-align: right; }
[dir="rtl"] .footer-links li { text-align: right; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }

/* CTA banner */
[dir="rtl"] .cta-banner-inner { text-align: right; }
[dir="rtl"] .cta-actions { flex-direction: row-reverse; flex-wrap: wrap; }

/* Contact strip */
[dir="rtl"] .contact-strip-inner { flex-direction: row-reverse; text-align: right; }

/* About page */
[dir="rtl"] .about-intro-grid { direction: rtl; }
[dir="rtl"] .timeline-item { direction: rtl; }
[dir="rtl"] .mv-card { text-align: right; }
[dir="rtl"] .values-grid .card { text-align: right; }
[dir="rtl"] .team-card { text-align: right; }

/* Solutions / modules */
[dir="rtl"] .solutions-grid .solution-card { text-align: right; }
[dir="rtl"] .module-list { direction: rtl; }
[dir="rtl"] .module-item { flex-direction: row-reverse; }

/* Product detail pages */
[dir="rtl"] .product-detail-grid { direction: rtl; }
[dir="rtl"] .industry-intro-grid { direction: rtl; }
[dir="rtl"] .industry-benefit-card { text-align: right; }

/* Forms */
[dir="rtl"] .contact-form label { text-align: right; display: block; }
[dir="rtl"] .contact-form input,
[dir="rtl"] .contact-form select,
[dir="rtl"] .contact-form textarea {
  text-align: right;
  direction: rtl;
}
[dir="rtl"] .form-group { text-align: right; }

/* Section label pill */
[dir="rtl"] .section-label { text-align: right; }

/* Stat items */
[dir="rtl"] .stat-item { text-align: right; }

/* Buttons with icons — flip icon order */
[dir="rtl"] .btn i { margin-left: 0.4em; margin-right: 0; }
[dir="rtl"] .btn i:first-child { margin-left: 0.4em; margin-right: 0; order: 1; }

/* Lang toggle button — always visible beside nav-cta */
.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-toggle:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.42);
  color: #fff;
}
.mobile-nav .lang-toggle {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  padding: 10px 18px;
  margin-top: 4px;
  font-size: 0.92rem;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}
.mobile-nav .lang-toggle:hover {
  background: rgba(255,255,255,0.13);
}

/* Responsive: hide text label when header is cramped */
@media (max-width: 960px) {
  .header-inner .lang-toggle { display: none; }
}

/* ── Page Ticker Strip ── */
.boutique-ticker {
  background: var(--navy);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
}
.boutique-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: boutiqueScroll 40s linear infinite;
}
.boutique-ticker:hover .boutique-ticker-track { animation-play-state: paused; }
@keyframes boutiqueScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  padding: 0 44px;
  font-family: 'Nunito', sans-serif;
}
.ticker-item .t-main {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.82);
  line-height: 1.1;
}
.ticker-item .t-sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.03em;
}
.ticker-sep {
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
  padding: 0 4px;
  align-self: center;
}
.ticker-item.is-client .t-main { color: var(--teal-light); }
.ticker-item.is-client .t-sub  { color: rgba(255,255,255,0.75); }

/* ── CRYSTAL CAT CHAT WIDGET ─────────────────────────────────────────────── */
#Modern Digital World-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font-body);
}

/* Toggle button */
#Modern Digital World-chat-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  color: #fff;
  font-size: 1.35rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
#Modern Digital World-chat-btn:hover {
  background: var(--teal-light);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.32);
}

/* Panel */
#Modern Digital World-chat-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 360px;
  max-height: 540px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  animation: Modern Digital WorldSlideUp 0.22s ease;
}
@keyframes Modern Digital WorldSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Header */
#Modern Digital World-chat-header {
  background: var(--navy);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}
#Modern Digital World-chat-hinfo {
  display: flex;
  align-items: center;
  gap: 10px;
}
#Modern Digital World-chat-avatar {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
#Modern Digital World-chat-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}
#Modern Digital World-chat-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  margin-top: 1px;
}
#Modern Digital World-chat-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
#Modern Digital World-chat-close-btn:hover { color: #fff; }

/* Messages area */
#Modern Digital World-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f5f6f8;
  min-height: 160px;
  max-height: 360px;
  scroll-behavior: smooth;
}
#Modern Digital World-chat-body::-webkit-scrollbar { width: 4px; }
#Modern Digital World-chat-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }

/* Bubbles */
.Modern Digital World-msg {
  max-width: 84%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.55;
  word-break: break-word;
  white-space: pre-wrap;
}
.Modern Digital World-user {
  background: var(--teal);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.Modern Digital World-assistant {
  background: #fff;
  color: var(--navy);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

/* Typing indicator */
.Modern Digital World-typing {
  display: flex;
  gap: 5px;
  padding: 12px 14px;
  align-items: center;
}
.Modern Digital World-typing span {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: Modern Digital WorldBounce 1.2s ease-in-out infinite;
  opacity: 0.6;
}
.Modern Digital World-typing span:nth-child(2) { animation-delay: 0.18s; }
.Modern Digital World-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes Modern Digital WorldBounce {
  0%, 60%, 100% { transform: translateY(0);   opacity: 0.5; }
  30%           { transform: translateY(-7px); opacity: 1;   }
}

/* Input area */
#Modern Digital World-chat-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  flex-shrink: 0;
}
#Modern Digital World-chat-input {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 22px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  color: var(--navy);
  background: #f5f6f8;
  transition: border-color 0.2s;
  min-width: 0;
}
#Modern Digital World-chat-input:focus { border-color: var(--teal); background: #fff; }
#Modern Digital World-chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
#Modern Digital World-chat-send:hover    { background: var(--teal-light); }
#Modern Digital World-chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

/* 3D cat canvases */
#Modern Digital World-cat-btn-canvas {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: block;
}
#Modern Digital World-cat-avatar-canvas {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
}

/* Header actions (mute + close) */
#Modern Digital World-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
#Modern Digital World-chat-mute {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: color 0.2s, background 0.2s;
}
#Modern Digital World-chat-mute:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Mic button */
#Modern Digital World-chat-mic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
#Modern Digital World-chat-mic:hover { background: #e0e0e0; }
#Modern Digital World-chat-mic.Modern Digital World-mic-active {
  background: #e53e3e;
  color: #fff;
  animation: Modern Digital World-pulse 1s infinite;
}
@keyframes Modern Digital World-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,62,62,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(229,62,62,0); }
}

/* RTL — panel always anchors to right regardless of page direction */
[dir="rtl"] #Modern Digital World-chat-widget { right: 24px; left: auto; }
[dir="rtl"] #Modern Digital World-chat-panel  { right: 0;    left: auto; }
[dir="rtl"] .Modern Digital World-user      { align-self: flex-start; border-bottom-right-radius: 14px; border-bottom-left-radius: 4px; }
[dir="rtl"] .Modern Digital World-assistant { align-self: flex-end;   border-bottom-left-radius: 14px;  border-bottom-right-radius: 4px; }
[dir="rtl"] #Modern Digital World-chat-input { text-align: right; }

/* Mobile */
@media (max-width: 480px) {
  #Modern Digital World-chat-panel { width: calc(100vw - 32px); right: -4px; }
  #Modern Digital World-chat-widget { bottom: 16px; right: 16px; }
}
