/* ==== MODERN LAFOBA DESIGN SYSTEM ==== */
/* Blue/Cyan color scheme matching the logo */

:root {
  /* Primary Colors - Blue Gradient */
  --primary-dark: #1e40af;
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-lighter: #60a5fa;
  
  /* Cyan Accents */
  --accent-cyan: #06b6d4;
  --accent-teal: #14b8a6;
  --accent-light: #67e8f9;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #164e63 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --gradient-btn: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --gradient-btn-hover: linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
  
  /* Neutrals */
  --bg-dark: #0f172a;
  --bg-darker: #0a0f1a;
  --bg-card: #1e293b;
  --bg-card-hover: #273548;
  --bg-light: #f8fafc;
  --bg-white: #ffff;
  
  /* Text */
  --text-white: #ffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dark: #1e293b;
  --text-darker: #0f172a;
  
  /* Borders */
  --border-light: rgba(255,255,255,0.1);
  --border-dark: rgba(0,0,0,0.1);
  --border-glow: rgba(6, 182, 212, 0.4);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.2);
  --shadow-glow-strong: 0 0 60px rgba(6, 182, 212, 0.3);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --container-max: 1200px;
  --section-padding: 100px;
  --card-radius: 20px;
  --btn-radius: 12px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

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

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

a:hover {
  color: var(--accent-light);
}

/* ==== UTILITIES ==== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border-radius: var(--btn-radius);
}

.skip:focus {
  left: 24px;
  top: 24px;
}

/* ==== ANIMATIONS ==== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
  50% { box-shadow: 0 0 40px rgba(6, 182, 212, 0.5); }
}

/* Reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==== HEADER ==== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(15, 23, 42, 0.95);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand:hover {
  transform: scale(1.02);
  color: var(--text-white);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

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

.nav-links a {
  position: relative;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
  transition: all var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-btn);
  border-radius: 1px;
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-white);
  background: rgba(255,255,255,0.05);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 20px;
}

.nav-links a.active {
  color: var(--accent-cyan);
}

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

.product-switcher {
  display: none;
}

.mobile-toggle {
  display: none;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-white);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition-normal);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-cta .btn {
    display: none;
  }
}

/* ==== BUTTONS ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-light);
  border-radius: var(--btn-radius);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn.primary {
  background: var(--gradient-btn);
  border: none;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn.primary:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 0 6px 30px rgba(37, 99, 235, 0.4);
  transform: translateY(-3px);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border-light);
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--accent-cyan);
}

.btn.small {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ==== BADGES & PILLS ==== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-lighter);
  background: rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==== HERO SECTION ==== */
.hero-template {
  position: relative;
  padding: 160px 0 100px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-template::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6, 182, 212, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(37, 99, 235, 0.1), transparent);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  min-height: 600px;
}

.hero-split h1 {
  margin: 16px 0 24px 0;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--text-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-split p {
  font-size: 1.15rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-quick {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-pill {
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.hero-pill:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
}

.hero-pill strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.hero-pill span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-illustration {
  position: relative;
  animation: float 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-glow);
}

/* Purple/Stats Band */
.purple-band {
  margin-top: 60px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  backdrop-filter: blur(10px);
}

.purple-stats, .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat .k {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.stat .v {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==== PAGE TITLE ==== */
.page-title {
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  text-align: center;
}

.page-title h1 {
  margin: 16px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* ==== PRODUCTS HERO ==== */
.products-hero {
  padding: 160px 0 60px;
  background: var(--gradient-hero);
  text-align: center;
}

.products-hero h1 {
  margin: 16px 0;
}

.products-hero > .container > p {
  max-width: 700px;
  margin: 0 auto;
}

.logo-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  min-width: 280px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.logo-tile:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.logo-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 12px;
}

.logo-badge svg {
  width: 24px;
  height: 24px;
  color: var(--accent-cyan);
}

.logo-meta {
  text-align: left;
}

.logo-name {
  font-weight: 600;
  color: var(--text-white);
}

.logo-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.logo-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
}

.stats-band {
  margin-top: 50px;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
}

/* ==== SECTIONS ==== */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section.sm {
  padding: 60px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 50px;
}

.section-head h2 {
  margin-bottom: 8px;
}

.section-head p {
  max-width: 600px;
}

/* ==== CARDS ==== */
.card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  transition: all var(--transition-normal);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card h3 {
  margin-bottom: 12px;
}

.card .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

/* Product Cards */
.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.product-card[data-accent="obs"]:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.product-card[data-accent="wcl"]:hover {
  border-color: rgba(6, 182, 212, 0.5);
}

.product-card[data-accent="scout"]:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.product-card .head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-card .title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-card .picon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 12px;
}

.product-card .picon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-cyan);
}

.product-card .features {
  margin: 20px 0;
}

.product-card .feature {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.product-card .feature:last-child {
  border-bottom: none;
}

.product-card .feature .dot {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-card .feature strong {
  display: block;
  color: var(--text-white);
  margin-bottom: 4px;
}

.product-card .feature span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-card .actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ==== GRIDS ==== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

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

/* ==== ICON CARDS ==== */
.icon-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all var(--transition-normal);
}

.icon-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  color: var(--accent-cyan);
}

.icon-card strong {
  display: block;
  color: var(--text-white);
  margin-bottom: 4px;
}

.icon-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==== LISTS ==== */
.list {
  list-style: none;
}

.list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.list li:last-child {
  border-bottom: none;
}

.list li .dot {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.list li strong {
  display: block;
  color: var(--text-white);
  margin-bottom: 4px;
}

.list li span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==== STEPS ==== */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all var(--transition-normal);
}

.step:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent-cyan);
  transform: translateX(8px);
}

.step .num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.step h3 {
  margin-bottom: 6px;
}

.step p {
  font-size: 0.95rem;
}

.hero-visual {
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
}

.hero-visual .gradbar {
  width: 80px;
  height: 6px;
  background: var(--gradient-btn);
  border-radius: 3px;
  margin-bottom: 16px;
}

/* ==== CALLOUT ==== */
.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
}

.callout h3 {
  margin-bottom: 6px;
}

.callout .actions {
  display: flex;
  gap: 12px;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.quote {
  position: relative;
  padding: 32px;
  padding-left: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  transition: all var(--transition-normal);
}

.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(6, 182, 212, 0.3);
}

.quote .mark {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-cyan);
  opacity: 0.5;
  line-height: 1;
}

.quote p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
}

.quote .who {
  font-weight: 600;
  color: var(--text-white);
}

.quote .role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==== NEWS GRID ==== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(6, 182, 212, 0.3);
}

.post .thumb {
  height: 160px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
}

.post .pad {
  padding: 24px;
}

.post h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.post p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.post a {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==== FORMS ==== */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.input input,
.input textarea {
  padding: 14px 18px;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text-white);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.input input:focus,
.input textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.input textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==== FOOTER ==== */
footer {
  padding: 80px 0 40px;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
}

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

.footer-col h4,
.footer-grid > div h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-grid a {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-grid a:hover {
  color: var(--accent-cyan);
}

footer .brand {
  font-size: 1.2rem;
}

footer hr.sep {
  margin: 40px 0 0;
  border: none;
  border-top: 1px solid var(--border-light);
}

footer small {
  color: var(--text-muted);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-illustration {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .grid-3,
  .products-grid-3,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .hero-template {
    padding: 120px 0 60px;
  }
  
  .page-title,
  .products-hero {
    padding: 120px 0 50px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-quick {
    flex-direction: column;
  }
  
  .grid-2,
  .grid-3,
  .split,
  .products-grid-3,
  .steps,
  .testimonials,
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .purple-stats,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .callout {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .logo-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .logo-tile {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .purple-stats,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card .head {
    flex-direction: column;
    gap: 12px;
  }
  
  .product-card .actions {
    flex-direction: column;
  }
}

/* ==== SCROLLBAR ==== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bg-card-hover);
}

/* ==== SELECTION ==== */
::selection {
  background: rgba(6, 182, 212, 0.3);
  color: var(--text-white);
}
/* ==== BLUISH HERO UI MOCKUP (WCL + OBS + SCOUT) ==== */
.ui-mockup.bluish {
  position: relative;
  padding: 34px;
  border-radius: 22px;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(6,182,212,0.25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 40%, rgba(37,99,235,0.25), transparent 65%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35),
              0 0 60px rgba(6,182,212,0.18);
  backdrop-filter: blur(14px);
  margin-bottom: 235px;
}

.ui-mockup.bluish::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(6,182,212,0.35),
    rgba(37,99,235,0.18),
    rgba(255,255,255,0)
  );
  opacity: 0.35;
  pointer-events: none;
}

.ui-window {
  position: relative;
  border-radius: 18px;
  padding: 22px;
  background: rgba(15,23,42,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* Header */
.ui-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.ui-dots {
  display: inline-flex;
  gap: 8px;
}
.ui-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148,163,184,0.65);
}

.ui-header strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(226,232,240,0.95);
  letter-spacing: 0.02em;
}

/* Tabs */
.ui-tabs {
  display: inline-flex;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 6px;
  border-radius: 999px;
}

.ui-tab {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(226,232,240,0.75);
  background: transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.ui-tab:hover {
  transform: translateY(-1px);
  color: rgba(226,232,240,0.95);
}

.ui-tab.is-active {
  background: linear-gradient(
    135deg,
    rgba(37,99,235,0.55),
    rgba(6,182,212,0.45)
  );
  color: rgba(255,255,255,0.95);
  box-shadow: 0 10px 30px rgba(6,182,212,0.15);
}

/* Panels */
.ui-panel { display: none; }
.ui-panel.is-active { display: block; }

/* Grid */
.ui-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.ui-card {
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform .25s ease,
              border-color .25s ease,
              background .25s ease;
}

.ui-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(6,182,212,0.25);
}

.ui-card small {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  font-weight: 800;
  color: rgba(148,163,184,0.9);
}

.ui-card h4 {
  margin: 6px 0 4px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
}

.ui-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(226,232,240,0.70);
}

/* Pills */
.ui-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ui-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(226,232,240,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

/* Scoutletic accent */
.ui-tab[data-ui-tab="scout"].is-active {
  background: linear-gradient(
    135deg,
    rgba(34,197,94,0.55),
    rgba(6,182,212,0.35)
  );
  color: rgba(255,255,255,0.95);
  box-shadow: 0 10px 30px rgba(34,197,94,0.12);
}

/* Optional per-panel accents */
.ui-panel[data-ui-panel="obs"] .ui-card:hover { border-color: rgba(37,99,235,0.28); }
.ui-panel[data-ui-panel="wcl"] .ui-card:hover { border-color: rgba(6,182,212,0.28); }
.ui-panel[data-ui-panel="scout"] .ui-card:hover { border-color: rgba(34,197,94,0.28); }
/* ==== MOBILE RESPONSIVE FIXES FOR HERO MOCKUP ==== */

/* Make sure the illustration area can shrink nicely */
.hero-illustration {
  max-width: 100%;
}

/* Prevent horizontal scroll from wide mockup elements */
.ui-mockup,
.ui-window {
  max-width: 100%;
  overflow: hidden;
}

/* Tablet and down */
@media (max-width: 900px) {
  /* Stack hero content + illustration */
  .hero-template .hero-split {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  /* Give the mockup breathing room */
  .ui-mockup.bluish {
    padding: 18px;
  }

  .ui-window {
    padding: 16px;
  }

  /* Let tabs wrap to new line */
  .ui-header {
    grid-template-columns: auto 1fr !important;
    grid-auto-rows: auto;
  }

  .ui-tabs {
    grid-column: 1 / -1; /* full width row */
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  .ui-tab {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  /* Cards: 1 column instead of 2 */
  .ui-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}


/* Extra small portrait tweaks */
@media (max-width: 420px) {
  .hero-template { padding: 110px 0 56px; }
  .hero-actions .btn { width: 100%; }
  .ui-mockup.bluish { padding: 14px; }
  .ui-window { padding: 14px; }
  .ui-header { gap: 10px; }
  .ui-card { padding: 14px; }
  .ui-pills span { font-size: 0.75rem; padding: 8px 10px; }
}