/* ========================================================
   DIGITAL BREEZE — Premium Website Styles
   ======================================================== */

/* ---------- Fonts — Premium Pairing ---------- */
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Dark Mode — Authority Navy base */
  --bg-deep:       #0a0f1a;
  --bg-surface:    #101827;
  --bg-card:       #1a2332;
  --bg-glass:      rgba(16, 24, 39, 0.82);
  --accent:        #3ABEEE; /* Brand Picton Blue (Official) */
  --accent-cyan:   #3ABEEE;
  --brand-primary: #29526F; /* Brand Police Blue (Official) */
  --accent-gold:   #96A9B8; /* Brand Steel */
  --accent-purple: #29526F; /* Replaced Brand Slate with Official Police Blue */
  --accent-muted:  #5B758A;
  --accent-contrast: #ffffff; /* Improved contrast for new brand colors */
  --gradient:      linear-gradient(145deg, #29526F 0%, #3ABEEE 100%);
  --gradient-soft: linear-gradient(180deg, rgba(58, 190, 238, 0.1) 0%, rgba(58, 190, 238, 0.02) 100%);
  --gradient-gold: linear-gradient(135deg, #96A9B8 0%, #b8c8d4 100%);
  --text-primary:  #f1f5f9;
  --text-secondary:#94a3b8;
  --text-muted:    #64748b;
  --border:        #1e293b;
  --border-hover:  #334155;

  /* Grounded Shadows — professional, not floating */
  --shadow-sm:     0 1px 2px 0 rgba(0, 0, 0, 0.25);
  --shadow-card:   0 4px 12px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.15);
  --shadow-glow:   0 0 0 1px rgba(58, 190, 238, 0.15), 0 8px 24px rgba(0, 0, 0, 0.25);

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --radius-xl:     22px;
  --transition:    color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  --font-main:     'DM Sans', system-ui, sans-serif;
  --font-display:  'General Sans', system-ui, sans-serif;

  /* Legacy aliases */
  --accent-mid:    var(--accent-muted);
}

[data-theme="light"] {
  /* Clean professional light */
  --bg-deep:       #ffffff;
  --bg-surface:    #ffffff;
  --bg-card:       #ffffff;
  --bg-glass:      rgba(255, 255, 255, 0.88);
  --accent:        #3ABEEE; /* Brand Picton Blue */
  --accent-cyan:   #3ABEEE;
  --brand-primary: #29526F; /* Brand Police Blue */
  --accent-gold:   #96A9B8; /* Brand Steel */
  --accent-purple: #29526F;
  --accent-muted:  #5B758A;
  --accent-contrast: #ffffff;
  --gradient:      linear-gradient(145deg, #29526F 0%, #3ABEEE 100%);
  --gradient-soft: linear-gradient(180deg, rgba(58, 190, 238, 0.1) 0%, rgba(58, 190, 238, 0.02) 100%);
  --gradient-gold: linear-gradient(135deg, #96A9B8 0%, #b8c8d4 100%);
  --text-primary:  #29526F; /* Official Police Blue Text */
  --text-secondary:#5B758A;
  --text-muted:    #96A9B8;
  --border:        #e2e8f0;
  --border-hover:  #cbd5e1;

  --shadow-sm:     0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-card:   0 4px 12px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-glow:   0 0 0 1px rgba(58, 190, 238, 0.1), 0 8px 24px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .brand-logo {
  filter: invert(1) brightness(0.8);
}

/* Light Theme Enhancements (Aesthetic Details) */
[data-theme="light"] .hero-gradient {
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(58, 190, 238, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(150, 169, 184, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, var(--bg-deep) 100%);
}

[data-theme="light"] .page-hero::before {
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(58, 190, 238, 0.08) 0%, transparent 70%);
}

[data-theme="light"] .hero-title span,
[data-theme="light"] .section-title span,
[data-theme="light"] h1 span {
  background: var(--gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  font-style: normal !important;
}

[data-theme="light"] .why-card:hover,
[data-theme="light"] .solution-card:hover,
[data-theme="light"] .sol-detail-card:hover,
[data-theme="light"] .testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-hover);
}

/* ---------- VIDEO COMPONENTS ---------- */
.video-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.video-container:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
  z-index: 10;
}
.video-container.playing {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 100;
}
.video-container.large-video {
  max-width: 800px;
  margin: 0 auto;
}
.premium-video {
  display: block;
  width: 100%;
  height: auto;
  outline: none;
  border-radius: inherit;
  cursor: pointer;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }

/* ---------- Typography ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--accent);
  font-weight: 600;
}

.hero-title span {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.text-gradient {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.8;
}

/* ---------- Uiverse-Inspired Modern Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}

/* Primary Button - High Contrast & Shine */
.btn-primary, .btn-white {
  background: var(--gradient);
  color: #ffffff !important;
  box-shadow: 0 6px 16px -4px rgba(58, 190, 238, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-primary::before, .btn-white::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  z-index: 1;
}

.btn-primary:hover, .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(58, 190, 238, 0.4);
}

.btn-primary:hover::before, .btn-white:hover::before {
  animation: shineSweep 0.8s ease forwards;
}

/* Icon Animation on primary hover */
.btn:hover svg, .btn:hover i {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}

@keyframes shineSweep {
  100% { left: 200%; }
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Outline Button - Sophisticated Fill */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline:hover {
  color: #ffffff !important;
  border-color: var(--accent);
  box-shadow: 0 10px 20px -5px rgba(58, 190, 238, 0.2);
  transform: translateY(-3px);
}

.btn-outline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Ghost Button - Minimalist & Glassy */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(58, 190, 238, 0.05);
  transform: translateY(-2px);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section ---------- */
section { padding: 100px 0; }
.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }
.section-center .section-label { justify-content: center; }

.sol-page {
  background: var(--bg-deep);
  padding: 80px 0 100px;
}

.sol-page-visual {
  text-align: center;
  padding-bottom: 48px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.sol-page-visual img {
  display: block;
  width: 260px;
  max-width: 80vw;
  height: auto;
  margin: 0 auto;
  opacity: 0.9;
  transition: var(--transition);
}

[data-theme="light"] .sol-page-visual img {
  filter: invert(1) hue-rotate(180deg);
  opacity: 1;
}

.sol-detail-card + .sol-detail-card {
  margin-top: 28px;
}

.contact-faq {
  margin-top: 48px;
}
.contact-faq h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.contact-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 12px;
  background: var(--bg-card);
}
.contact-faq-item:last-child {
  margin-bottom: 0;
}
.contact-faq-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.contact-faq-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-stats {
  background: var(--bg-surface);
  padding: 56px 0;
}
.contact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.contact-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
}
.contact-stat-label {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-top: 8px;
}

.form-footnote {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-footnote svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.contact-form-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-page .contact-form .contact-form-heading {
  font-size: 1.5rem;
}
.contact-form-lead {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.55;
}
.contact-form-lead.is-loose {
  margin-bottom: 32px;
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 16px;
}
.btn-block.btn-tall {
  padding: 18px;
  font-size: 1rem;
}

.theme-toggle {
  padding: 10px;
  border-radius: 50%;
  min-width: 44px;
  min-height: 44px;
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(41, 82, 111, 0.25);
}
.nav-logo .logo-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  display: block;
}

.nav-logo span { color: var(--accent-cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 18% 22%, rgba(58, 190, 238, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 88% 8%, rgba(41, 82, 111, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, transparent 55%, var(--bg-deep) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: floatOrb 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--accent-cyan);
  top: -200px; left: -200px;
  animation-duration: 10s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: var(--accent-purple);
  bottom: -150px; right: -150px;
  animation-duration: 8s;
  animation-delay: -4s;
}

@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-main {
    grid-template-columns: 1.2fr 1fr;
    min-height: 70vh;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ---------- HERO VISUAL (DASHBOARD) ---------- */
.hero-visual {
  position: relative;
  display: none; /* Hide on mobile by default, shown on desktop */
  height: 500px;
  perspective: 1000px;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.dashboard-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotateY(-10deg) rotateX(5deg);
}

.dash-card {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 20px;
  animation: float 6s ease-in-out infinite alternate;
}

/* Main Stats Card */
.card-1 {
  width: 280px;
  top: 10%; right: 10%;
  z-index: 3;
  cursor: pointer;
}
.card-1:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(58, 190, 238, 0.2);
}
.card-1:hover .dash-line {
  background: linear-gradient(90deg, var(--border) 0%, rgba(58, 190, 238, 0.5) 50%, var(--border) 100%);
  background-size: 200% 100%;
}
.card-1:hover .dash-line.short {
  animation: growShort 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, dataStream 1.5s linear infinite;
}
.card-1:hover .dash-line.long {
  animation: growLong 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards, dataStream 1.5s linear infinite;
}

@keyframes growShort {
  0% { width: 0%; opacity: 0; }
  100% { width: 40%; opacity: 1; }
}
@keyframes growLong {
  0% { width: 0%; opacity: 0; }
  100% { width: 85%; opacity: 1; }
}
@keyframes dataStream {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.dash-card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.circle-btn {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
}
.dash-line {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 8px;
}
.dash-line.short { width: 40%; }
.dash-line.long { width: 85%; }
.dash-stat {
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

/* Status Card */
.card-2 {
  width: 220px;
  top: 55%; left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  animation-delay: -2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.card-2:hover .check-icon {
  display: none;
}
.card-2:hover .sync-icon {
  display: block !important;
  animation: spinSync 1.5s linear infinite;
}
.card-2:hover .dash-check {
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
}
.card-2:hover .dash-text {
  color: var(--accent);
  transition: color 0.3s ease;
}
.sync-pulse {
  position: absolute;
  top: 50%;
  left: 20px; /* Aligned near dash-check */
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.card-2:hover .sync-pulse {
  animation: radarPulse 1.5s ease-out infinite;
}
@keyframes spinSync {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes radarPulse {
  0% { transform: translateY(-50%) scale(0.5); opacity: 0.6; }
  100% { transform: translateY(-50%) scale(3.5); opacity: 0; }
}
.dash-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.dash-check svg { width: 100%; height: 100%; }
.dash-text { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }

/* Chart Card */
.card-3 {
  width: 200px;
  top: 50%; right: -20px;
  z-index: 2;
  animation-delay: -4s;
  cursor: pointer;
}
.card-3:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(142, 218, 242, 0.2);
}
.card-3:hover .bar-wrap .bar {
  animation: chartLoad 0.8s ease-in-out infinite alternate;
}
.card-3:hover .bar-wrap:nth-child(1) .bar { animation-delay: 0s; }
.card-3:hover .bar-wrap:nth-child(2) .bar { animation-delay: 0.2s; }
.card-3:hover .bar-wrap:nth-child(3) .bar { animation-delay: 0.4s; }
.card-3:hover .bar-wrap:nth-child(4) .bar { animation-delay: 0.6s; }

@keyframes chartLoad {
  0% { height: 10%; background: var(--accent-cyan); filter: brightness(1.2); }
  100% { height: 95%; background: var(--accent); filter: brightness(1.5); box-shadow: 0 0 10px var(--accent); }
}
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
  padding-bottom: 10px;
}
.bar-wrap {
  flex: 1;
  height: 100%;
  background: var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--gradient);
  border-radius: inherit;
  transition: height 1s ease;
}

/* Floating Icons */
.dash-floating-icon {
  position: absolute;
  width: 56px; height: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: var(--shadow-card);
  animation: float 5s ease-in-out infinite alternate-reverse;
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.dash-floating-icon:hover {
  box-shadow: var(--shadow-glow);
  border-color: var(--accent);
}
.dash-floating-icon svg { width: 28px; height: 28px; }
.icon-1 { top: 0; left: 20%; animation-delay: -1s; }
.icon-2 { bottom: 10%; right: 40%; animation-delay: -3.5s; }

/* Icon specific animations */
.icon-1 svg {
  animation: spinGear 8s linear infinite;
}
.icon-1:hover svg {
  animation: spinGear 2s linear infinite;
}
.icon-2 svg {
  animation: pulseZap 3s ease-in-out infinite;
}
.icon-2:hover svg {
  animation: pulseZap 0.5s ease-in-out infinite;
}

@keyframes spinGear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulseZap {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(150, 169, 184, 0)); color: var(--accent); }
  50% { transform: scale(1.2); filter: drop-shadow(0 0 10px rgba(150, 169, 184, 0.8)); color: #96A9B8; }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(150, 169, 184, 0)); color: var(--accent); }
}

/* Connections */
.dash-connection-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}
.dash-connections { width: 100%; height: 100%; }

@keyframes float {
  0% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(-20px) rotate(2deg); }
}

@media (max-width: 1024px) {
  .hero-content {
    max-width: 100%;
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 28px;
  animation: fadeSlideFromLeft 0.6s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-purple);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeSlideFromLeft 0.6s ease 0.1s both;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeSlideFromLeft 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeSlideFromLeft 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  animation: fadeSlideFromLeft 0.6s ease 0.4s both;
}

.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-number span {
  color: inherit;
  -webkit-text-fill-color: unset;
  background: none;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ---------- ABOUT ---------- */
.about { background: var(--bg-surface); }

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

.about-visual {
  position: relative;
}

.about-card-main {
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
}

.about-icon-ring {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.about-icon-ring svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
  display: block;
}

.about-card-main h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-card-main p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-partner-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.about-partner-badge .badge-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.about-partner-badge .badge-value {
  font-weight: 700;
  color: var(--accent-cyan);
  font-size: 0.95rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(142, 218, 242, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-cyan);
  display: block;
}
.feature-text h4 {
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ---------- WHY US ---------- */
.why-us {}

.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  grid-column: span 4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card:nth-child(1) { grid-column: span 8; }
.why-card:nth-child(2) { grid-column: span 4; }
.why-card:nth-child(3) { grid-column: span 4; }
.why-card:nth-child(4) { grid-column: span 4; }
.why-card:nth-child(5) { grid-column: span 8; }

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover {
  border-color: var(--border-hover);
  border-top-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.why-card:hover::before { opacity: 1; }

.why-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.why-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  display: block;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ---------- SOLUTIONS ---------- */
.solutions { background: var(--bg-surface); }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.solution-card {
  grid-column: span 4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.solution-card:nth-child(1) { grid-column: span 4; }
.solution-card:nth-child(2) { grid-column: span 8; }
.solution-card:nth-child(6) { grid-column: span 8; }

.solution-card:hover {
  border-color: var(--border-hover);
  border-top-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.solution-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.solution-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.solution-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.solution-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-cyan);
  transition: stroke 0.3s;
  display: block;
}
.solution-card:hover .solution-icon svg {
  stroke: #fff;
}
.solution-card:hover .solution-icon {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(72, 92, 109, 0.22);
}

.solution-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.solution-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.solution-tag {
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(142, 218, 242, 0.04);
  transition: var(--transition);
}
.solution-card:hover .solution-tag {
  border-color: rgba(150, 169, 184, 0.3);
  color: var(--accent-gold);
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.solution-link:hover {
  color: var(--text-primary);
}
.solution-card:hover .solution-link {
  color: var(--text-primary);
}

/* ---------- DEMO CTA ---------- */
.demo-cta {
  background: none;
  padding: 80px 0;
}
.demo-cta-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.demo-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  pointer-events: none;
}
.demo-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.demo-cta-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
  line-height: 1.65;
}
.demo-cta-inner .btn-white {
  background: var(--gradient-gold);
  color: #0f172a;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(150, 169, 184, 0.25);
  transition: var(--transition);
}
.demo-cta-inner .btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(150, 169, 184, 0.35);
}

/* ---------- PARTNERS ---------- */
.partners { background: var(--bg-surface); padding: 80px 0; }

.partners-track-wrap {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
}
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-surface), transparent);
}
.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-surface), transparent);
}

.partners-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-partners 24s linear infinite;
}

.partners-track-set {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
  align-items: center;
}

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

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 76px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  transition: var(--transition);
  flex-shrink: 0;
}
.partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.partner-logo:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface);
}
.partner-logo:hover img {
  opacity: 0.92;
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 100px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  border-left-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
  color: #fbbf24;
  display: block;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- CONTACT TEASER ---------- */
.contact-teaser { background: var(--bg-surface); }
.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 36px;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-cyan);
  display: block;
}
.contact-info-item h4 {
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.form-group {
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(142, 218, 242, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-group select option {
  background: var(--bg-surface);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--border-hover);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(150, 169, 184, 0.12);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--accent-gold); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-legal-links a:hover {
  color: var(--accent-cyan);
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  padding: 48px 0 120px;
  background: var(--bg-deep);
}
.legal-prose {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.98rem;
}
.legal-prose h2 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2.25rem 0 0.65rem;
}
.legal-prose h2:first-of-type {
  margin-top: 0;
}
.legal-prose p {
  margin-bottom: 1rem;
}
.legal-prose ul {
  margin: 0 0 1rem 1.25rem;
  list-style: disc;
}
.legal-prose li {
  margin-bottom: 0.35rem;
}
.legal-prose a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-prose a:hover {
  color: var(--text-primary);
}
.legal-prose code {
  font-size: 0.88em;
  padding: 0.12em 0.4em;
  background: var(--bg-card);
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1102;
  padding: 18px 20px calc(18px + env(safe-area-inset-bottom, 0));
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  justify-content: space-between;
}
.cookie-banner-text {
  flex: 1;
  min-width: min(100%, 280px);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.cookie-banner-text strong {
  color: var(--text-primary);
  font-weight: 600;
}
.cookie-banner-text a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover {
  color: var(--text-primary);
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideFromLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: 140px 0 60px;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(142, 218, 242, 0.07) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 32px;
}
.hero-video-wrap {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- SOLUTIONS PAGE ---------- */
.sol-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.solutions-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
.sol-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sol-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}
.sol-detail-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.sol-detail-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.sol-detail-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  display: block;
}
.sol-detail-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.sol-detail-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.sol-detail-card .btn.btn-primary {
  margin-top: 12px;
}
.sol-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sol-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.sol-features-list li .check-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(142, 218, 242, 0.1);
  border: 1px solid rgba(142, 218, 242, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-features-list li .check-icon svg {
  width: 11px; height: 11px;
  stroke: var(--accent-cyan);
  display: block;
}

/* ---------- CONTACT PAGE ---------- */
.contact-page { padding: 60px 0 100px; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-page-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-page-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: var(--transition);
}
.contact-detail:hover {
  border-color: var(--border-hover);
}
.contact-detail .icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  display: block;
}
.contact-detail h4 { font-weight: 600; margin-bottom: 4px; font-size: 0.9rem; }
.contact-detail p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }
.contact-detail p a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-detail p a:hover {
  color: var(--text-primary);
}

/* ---------- MOBILE NAV ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--bg-surface);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 1001; 
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  
  /* Sidebar sliding animation setup */
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  border-left: 1px solid var(--border);
}
.mobile-menu.open { 
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.mobile-brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow-y: auto;
}

.mobile-menu a:not(.btn) {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-align: left;
}
.mobile-menu a:not(.btn):hover { 
  background: var(--bg-card);
  color: var(--accent); 
}

.mobile-menu a.btn {
  font-size: 1rem;
  width: 100%;
  padding: 14px;
  justify-content: center;
  color: #fff;
  margin-top: auto;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu-close:hover {
  background: var(--bg-card);
  color: var(--accent);
}
.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ---------- ROI CALCULATOR ---------- */
.roi-calculator-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: center;
}
.roi-controls {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.roi-control-group {
  display: flex;
  flex-direction: column;
}
.roi-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
.roi-val {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 3px solid var(--accent);
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 12px rgba(142, 218, 242, 0.2);
}

.roi-result-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.roi-result-inner {
  position: relative;
  z-index: 2;
}
.roi-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.roi-big-numbers {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.roi-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.roi-metric span {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}
.roi-metric.highlight span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.roi-metric small {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 600;
}
.roi-divider {
  height: 1px;
  background: var(--border);
  width: 60%;
  margin: 0 auto;
}
.roi-footnote {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.6);
  margin-top: 32px;
}

[data-theme="light"] .roi-calculator-section { background: transparent; }

/* ---------- IMPACT MATRIX (BENTO GRID) ---------- */
.impact-section {
  background: var(--bg-body);
}

.impact-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 24px;
  margin-top: 48px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.bento-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
}

/* Featured Card spans 2 columns & 2 rows */
.bento-featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(142, 218, 242, 0.2);
}

.bento-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(142, 218, 242, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.bento-icon.secondary { background: var(--accent-cyan); }
.bento-icon.tertiary { background: #6366f1; }
.bento-icon svg { width: 24px; height: 24px; }

.bento-main h3 { font-size: 2rem; margin-bottom: 20px; color: var(--text-primary); }
.bento-main h4 { font-size: 1.25rem; margin-bottom: 12px; color: var(--text-primary); }

.bento-before, .bento-after {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.bento-before strong { color: #f43f5e; }
.bento-after strong { color: #10b981; }

.bento-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: auto;
  padding-top: 32px;
}
.stat-unit { display: flex; flex-direction: column; gap: 4px; }
.stat-unit .stat-val { font-size: 2.5rem; font-weight: 800; color: var(--accent-gold); }
.stat-unit .stat-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 600; text-transform: uppercase; }

.bento-stat-mini { margin-top: auto; padding-top: 20px; }
.bento-stat-mini .stat-val { font-size: 1.75rem; font-weight: 800; color: var(--accent-gold); }
.bento-stat-mini .stat-label { font-size: 0.75rem; color: var(--text-secondary); font-weight: 600; }

.bento-summary { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }

.bento-wide { grid-column: span 3; }
.bento-content.horizontal {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.bento-content.horizontal .bento-icon { margin-bottom: 0; flex-shrink: 0; }
.bento-content.horizontal .bento-main { flex-grow: 1; }
.bento-content.horizontal .bento-main p { margin-top: 4px; color: var(--text-secondary); }

[data-theme="light"] .bento-featured {
  background: #ffffff;
  border-color: var(--border);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .impact-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-featured, .bento-wide { grid-column: span 1; grid-row: span 1; }
  .bento-content.horizontal { flex-direction: column; align-items: flex-start; gap: 20px; }
  .bento-main h3 { font-size: 1.75rem; }
  .bento-stats { grid-template-columns: 1fr; gap: 20px; }
  .roi-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-card, .solution-card { grid-column: span 6 !important; }
  .contact-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-detail-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .sol-card-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sol-card-inner > div:not(.sol-features-list) {
    order: -1;
  }
}

@media (max-width: 768px) {
  .why-card, .solution-card { grid-column: span 12 !important; }
  section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; margin-right: 16px; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .contact-form-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { gap: 32px; }
  .demo-cta-inner { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-partner-badge { position: static; margin-top: 16px; }
  .page-hero .hero-main { grid-template-columns: 1fr !important; text-align: center !important; gap: 40px !important; }
  .page-hero .hero-actions { justify-content: center !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 28px 20px; }
  .contact-stats-grid { grid-template-columns: 1fr; }
}
/* ---------- BLOG HUB ---------- */
.blog-hub {
  padding: 120px 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-category {
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more svg {
  transform: translateX(4px);
}

/* ---------- BLOG POST PAGE ---------- */
.blog-post-page {
  padding: 140px 0 100px;
}

.blog-post-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.blog-post-header .blog-category {
  margin-bottom: 16px;
  display: inline-block;
}

.blog-post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient);
}

.blog-post-hero {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-post-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin: 48px 0 24px;
  color: var(--text-primary);
}

.blog-post-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--text-primary);
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-post-content li {
  margin-bottom: 12px;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--accent);
  background: var(--bg-surface);
  padding: 32px;
  margin: 40px 0;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.blog-post-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 40px 0;
}

.blog-post-footer {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-share span {
  font-weight: 600;
  font-size: 0.9rem;
}

.share-links {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-secondary);
}

.share-btn:hover {
  background: var(--bg-card);
  border-color: var(--border-hover);
  color: var(--accent);
}

.share-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post-hero {
    height: 300px;
  }
  
  .blog-post-meta {
    flex-direction: column;
    gap: 12px;
  }
}
/* ---------- TEAM PAGE ---------- */
.team-hero {
  padding: 140px 0 80px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.team-image-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
}

.team-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image-wrap img {
  transform: scale(1.05);
}

.team-content {
  padding: 24px;
  text-align: center;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.team-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-secondary);
}

.team-social-btn:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.team-social-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- VALUES SECTION ---------- */
.values-section {
  padding: 100px 0;
  background: var(--bg-deep);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.value-card {
  padding: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-cyan);
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- INDUSTRIES WE SERVE ---------- */
.industries-section {
  padding: 100px 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.industries-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.industry-bubble {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
}

.industry-bubble.primary {
  background: #ffffff;
  color: var(--bg-deep);
  border: 1px solid var(--border);
}

.industry-bubble.secondary {
  background: var(--accent-cyan);
  color: #ffffff;
  border: none;
}

.industry-bubble.tertiary {
  background: #eef2ff;
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.industry-bubble.accent {
  background: var(--accent-gold);
  color: var(--bg-deep);
  border: none;
}

.industry-bubble:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .industry-bubble {
    width: 140px;
    height: 140px;
    font-size: 0.85rem;
    padding: 16px;
  }
  .industries-cloud {
    gap: 20px;
  }
}
