/* Water Management System — WMS Design System (matches SaaS product) */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --text: #0A2540;
  --muted: #64748B;
  --primary: #4FC3F7;
  --primary-dark: #29B6F6;
  --secondary: #0A2540;
  --accent: #34A8EB;
  --success: #22C55E;
  --border: #E2E8F0;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }
main > section:not(#hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.font-heading { font-family: var(--font-heading); }

.display-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.label-upper {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-glass {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.nav-glass.scrolled {
  border-color: var(--border);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 0 rgba(10,37,64,0.05);
}

.mobile-nav-link {
  padding: 0.875rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.pricing-stack { width: 100%; }

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border-radius: 4px;
  background: #fff;
  text-align: center;
}
.pricing-card-head {
  width: 100%;
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.25rem;
}
.pricing-card-price {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  white-space: nowrap;
  margin: 0.125rem 0 0.25rem;
  letter-spacing: -0.02em;
}
.pricing-card-spacer {
  visibility: hidden;
  margin: 0 !important;
  line-height: 1.25;
  font-size: 1.125rem;
}
.pricing-card-list {
  flex: 1;
  width: 100%;
  max-width: 15.5rem;
  margin: 0 auto 1.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 12.5rem;
}
.pricing-card-list li {
  justify-content: flex-start;
  text-align: left;
}
.pricing-card-btn {
  margin-top: auto;
  width: 100%;
  max-width: 15.5rem;
}
.pricing-deploy-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #94a3b8;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-talk-inner {
  background: linear-gradient(135deg, #0a2540 0%, #0d3558 45%, #0a5080 100%);
  background-size: 200% 200%;
  animation: pricingGradient 8s ease infinite;
  border-radius: 8px;
  padding: 2rem 2rem;
  border: 1px solid rgba(79,195,247,0.3);
  box-shadow: 0 24px 60px rgba(10,37,64,0.2), 0 0 0 1px rgba(79,195,247,0.08) inset;
  position: relative;
  overflow: hidden;
}
@keyframes pricingGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.pricing-talk-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.pricing-talk-content {
  position: relative;
  z-index: 2;
}
.pricing-talk-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}
.pricing-talk-orb-1 {
  width: 220px; height: 220px;
  background: rgba(79,195,247,0.45);
  top: -60px; right: -40px;
  animation: pricingFloat1 7s ease-in-out infinite;
}
.pricing-talk-orb-2 {
  width: 160px; height: 160px;
  background: rgba(52,168,235,0.35);
  bottom: -50px; left: 10%;
  animation: pricingFloat2 9s ease-in-out infinite;
}
.pricing-talk-orb-3 {
  width: 100px; height: 100px;
  background: rgba(129,212,250,0.4);
  top: 40%; left: 45%;
  animation: pricingFloat3 6s ease-in-out infinite;
}
@keyframes pricingFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.08); }
}
@keyframes pricingFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(25px, -15px); }
}
@keyframes pricingFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 10px) scale(1.15); }
}
.pricing-talk-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,195,247,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,195,247,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 75%);
  animation: pricingGridDrift 20s linear infinite;
}
@keyframes pricingGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(32px, 32px); }
}
.pricing-talk-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: pricingShimmer 4s ease-in-out infinite;
}
@keyframes pricingShimmer {
  0% { left: -100%; }
  100% { left: 150%; }
}
.pricing-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 6px;
  transition: all 0.25s;
}
.pricing-call-btn:hover {
  background: #fff;
  color: var(--secondary);
}

.pricing-talk-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .pricing-talk-row {
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
  }
}
.pricing-talk-stack {
  flex: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pricing-talk-text {
  width: 100%;
}
.pricing-talk-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 640px) {
  .pricing-talk-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.pricing-server-visual {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  width: 100%;
  max-width: 160px;
  min-height: 100%;
  padding: 0.5rem 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .pricing-server-visual {
    width: 150px;
    max-width: none;
    padding: 0.25rem 0;
  }
}
.pricing-server-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,195,247,0.35) 0%, transparent 70%);
  animation: serverGlowPulse 3s ease-in-out infinite;
}
@keyframes serverGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.pricing-server-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  animation: serverFloat 5s ease-in-out infinite;
}
.pricing-server-unit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(79,195,247,0.35);
  border-radius: 8px;
  color: rgba(79,195,247,0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.pricing-server-unit svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
@keyframes serverFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.pricing-server-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: serverLedBlink 2s ease-in-out infinite;
}
.pricing-server-led.delay-1 { animation-delay: 0.4s; }
.pricing-server-led.delay-2 { animation-delay: 0.8s; }
.pricing-server-led.delay-3 { animation-delay: 1.2s; }
@keyframes serverLedBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #4ade80; }
  50% { opacity: 0.35; box-shadow: none; }
}
.pricing-server-label {
  position: relative;
  z-index: 1;
  margin-top: 0.625rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(79,195,247,0.75);
}

.footer-waves-wrap {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
#footer-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.footer-waves-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.92) 0%, rgba(10,37,64,0.55) 35%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.footer-waves-content { position: relative; z-index: 2; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600; font-size: 0.9375rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.btn-primary:hover {
  background: #0d3558;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10,37,64,0.2);
}

.btn-accent {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 600; font-size: 0.9375rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out-expo);
}
.btn-accent:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79,195,247,0.35);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
  font-weight: 600; font-size: 0.9375rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out-expo);
}
.btn-outline:hover { background: var(--secondary); color: #fff; }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  font-weight: 600; font-size: 0.9375rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out-expo);
}
.btn-outline-light:hover { background: #fff; color: var(--secondary); }

.hero-quality-badge {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(240,249,255,0.98) 100%);
  border: 2px solid var(--primary);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(10,37,64,0.22);
  max-width: calc(100% - 1rem);
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-quality-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  flex-shrink: 0;
}
.hero-quality-badge-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #16A34A;
  line-height: 1.2;
}
.hero-quality-badge-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(10,37,64,0.22); }
  50% { box-shadow: 0 8px 32px rgba(79,195,247,0.45); }
}

@media (min-width: 640px) {
  .hero-quality-badge { top: 0.75rem; right: 0.75rem; padding: 0.55rem 0.85rem; }
  .hero-quality-badge-title { font-size: 0.75rem; }
  .hero-quality-badge-label { font-size: 0.625rem; }
}
@media (min-width: 1024px) {
  .hero-quality-badge-title { font-size: 0.8125rem; }
}

/* Responsive — tablet & mobile */
@media (max-width: 1023px) {
  :root { --nav-h: 72px; }
  .display-xl { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .pain-card { min-height: 340px; }
  .bento-card .p-8 { padding: 1.25rem; }
  .contact-modal-panel { max-height: 96vh; }
  .footer-cta-band .btn-accent,
  .footer-cta-band .btn-outline { width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 3rem 0; }
  .hero-text .display-xl { margin-bottom: 1.25rem; }
  .hero-visual { margin-top: 0.5rem; }
  .hero-mockup { margin-top: 0.5rem; }
  .split-panel-left, .split-panel-right { padding: 2rem !important; }
  .pricing-card, .glass-card { padding: 1.25rem; }
  .compare-table th, .compare-table td { padding: 0.75rem; font-size: 0.8125rem; }
  .contact-modal { padding: 0.5rem; align-items: flex-end; }
  .contact-modal-panel { border-radius: 8px 8px 0 0; max-height: 94vh; }
  .btn-accent, .btn-outline, .btn-primary, .btn-outline-light {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  .footer-cta-band p.font-heading { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-quality-badge { top: 0.5rem; right: 0.5rem; gap: 0.375rem; padding: 0.375rem 0.5rem; }
  .hero-quality-badge-icon { width: 1.5rem; height: 1.5rem; }
  .hero-quality-badge-title { font-size: 0.5625rem; }
  .hero-stats-row .w-px { display: none; }
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.5rem 0;
  color: var(--muted);
  font-weight: 500; font-size: 0.9375rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--accent); }

.glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 24px rgba(10,37,64,0.07);
}

.hero-mockup { perspective: 1200px; transform-style: preserve-3d; }
.hero-dashboard {
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.8s var(--ease-out-expo);
}
.hero-mockup:hover .hero-dashboard { transform: rotateY(-4deg) rotateX(2deg); }

.float-card { animation: float 6s ease-in-out infinite; }
.float-card:nth-child(2) { animation-delay: -2s; }
.float-card:nth-child(3) { animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.logo-track { display: flex; animation: marquee 40s linear infinite; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (min-width: 1024px) {
  .split-panel-left { clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); }
  .split-panel-right { clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
}

.feature-offset { margin-top: -4rem; }
@media (max-width: 1023px) { .feature-offset { margin-top: 0; } }

.laptop-frame {
  background: linear-gradient(145deg, #0A2540 0%, #1a3a5c 50%, #0A2540 100%);
  border-radius: 12px 12px 0 0;
  padding: 12px 12px 0;
  box-shadow: 0 40px 80px rgba(10,37,64,0.22);
}
.laptop-base {
  height: 14px;
  background: linear-gradient(180deg, #1a3a5c, #0A2540);
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
  width: 108%;
  margin-left: -4%;
}

.timeline-line {
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 50%, var(--border) 100%);
}
.timeline-dot {
  width: 14px; height: 14px;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}

.phone-frame {
  background: #0A2540;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 32px 64px rgba(10,37,64,0.2);
}
.phone-notch {
  width: 80px; height: 24px;
  background: #0A2540;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative; z-index: 2;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-number-text {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--primary);
  opacity: 0.25;
}

.pricing-featured {
  border: 2px solid var(--primary);
  position: relative;
  background: linear-gradient(180deg, rgba(79,195,247,0.08) 0%, #fff 40%);
}
.pricing-featured::before {
  content: 'Recommended';
  position: absolute; top: -1px; left: 50%; transform: translate(-50%, -50%);
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 4px;
}

.pricing-toggle {
  display: inline-flex;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px;
}
.pricing-toggle button {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  color: var(--muted);
  transition: all 0.25s;
}
.pricing-toggle button.active {
  background: var(--secondary);
  color: var(--primary);
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger { cursor: pointer; }
.faq-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), opacity 0.4s;
  opacity: 0;
}
.faq-item.open .faq-content { opacity: 1; }
.faq-icon { transition: transform 0.4s var(--ease-out-expo); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.reveal { opacity: 0; transform: translateY(32px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-scale { opacity: 0; transform: scale(0.95); }

.chart-bar {
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 1s var(--ease-out-expo);
}
.chart-bar.animated { transform: scaleY(1); }

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
.mobile-menu.open { transform: translateX(0); }

.section-pad { padding: clamp(4rem, 10vw, 8rem) 0; }

.hover-lift { transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(10,37,64,0.08); }

/* Hero — lightweight layout + static water bg */
.hero-section { min-height: calc(100vh - var(--nav-h)); min-height: calc(100dvh - var(--nav-h)); }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 10% 0%, rgba(255,255,255,0.95) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(79,195,247,0.18) 0%, transparent 50%),
    linear-gradient(165deg, #f0f9ff 0%, #e3f4fc 45%, #cceeff 100%);
}
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  opacity: 0.55;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%2334A8EB' fill-opacity='0.12' d='M0,64 C240,96 480,32 720,64 C960,96 1200,32 1440,64 L1440,120 L0,120 Z'/%3E%3Cpath fill='%234FC3F7' fill-opacity='0.18' d='M0,80 C360,48 720,112 1080,80 C1260,64 1380,72 1440,80 L1440,120 L0,120 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.375rem 0.875rem 0.375rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(79,195,247,0.3);
  border-radius: 999px;
}
.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
}
.hero-accent-text {
  background: linear-gradient(120deg, #0A2540, #34A8EB 50%, #4FC3F7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-heading { perspective: 800px; }
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero-line-text {
  display: block;
  transform: translateY(110%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-line-text { transform: none; }
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem 1.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10,37,64,0.08);
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-stat-divider {
  width: 1px;
  height: 2.25rem;
  background: rgba(10,37,64,0.1);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.hero-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 16px 40px rgba(10,37,64,0.1);
  aspect-ratio: 16 / 7;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero-mockup {
  position: relative;
}
.hero-mockup-tilt {
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--hero-rx, 0deg)) rotateY(var(--hero-ry, 0deg));
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.hero-float-card {
  position: absolute;
  z-index: 2;
  transform: translate(var(--hero-px, 0px), var(--hero-py, 0px));
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.hero-float-card-inner {
  background: rgba(255,255,255,0.96);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: heroWidgetFloat 5s ease-in-out infinite;
}
.hero-float-card-1 { top: -0.75rem; left: 0.5rem; --hero-px: 0px; --hero-py: 0px; }
.hero-float-card-2 { bottom: -0.75rem; right: 0.5rem; }
.hero-float-card-3 { top: 42%; right: -0.25rem; }
.hero-float-card-1 .hero-float-card-inner { animation-delay: 0s; }
.hero-float-card-2 .hero-float-card-inner { animation-delay: -2.5s; }
.hero-float-card-3 .hero-float-card-inner { animation-delay: -1.2s; }
@keyframes heroWidgetFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float-card-inner { animation: none; }
  .hero-mockup-tilt, .hero-float-card { transition: none; }
}
@media (max-width: 767px) {
  .hero-section { min-height: auto; }
  .hero-stats { gap: 1rem 1.25rem; margin-top: 1.5rem; padding-top: 1.25rem; }
  .hero-stat-divider { display: none; }
}

.grid-pattern {
  background-image:
    linear-gradient(rgba(10,37,64,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,37,64,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.module-cat-card {
  border-left: 3px solid var(--primary);
  background: var(--bg-alt);
}

.water-visual {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.water-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Discount badges */
.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.discount-badge.gold {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  box-shadow: 0 4px 12px rgba(245,158,11,0.35);
}
.price-old {
  font-size: 1.125rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
}
.price-save {
  font-size: 0.8125rem;
  color: #16A34A;
  font-weight: 600;
}

/* Pain point cards */
.pain-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 420px;
}
.pain-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.6s var(--ease-out-expo);
}
.pain-card:hover img { transform: scale(1.04); }
.pain-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,37,64,0.92) 100%);
}
.pain-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #fff;
}
.pain-tag {
  display: inline-block;
  background: rgba(239,68,68,0.9);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

/* Before & After WMS — problem vs solution */
.vs-bg-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(79,195,247,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.vs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .vs-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }
}
.vs-panel {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10,37,64,0.1);
}
.vs-panel-problem {
  background: #0f172a;
  border: 1px solid rgba(239,68,68,0.15);
}
.vs-panel-solution {
  background: #fff;
  border: 1px solid rgba(79,195,247,0.25);
}
.vs-panel-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}
.vs-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}
.vs-panel:hover .vs-panel-visual img { transform: scale(1.03); }
.vs-panel-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.1) 0%, rgba(15,23,42,0.75) 100%);
}
.vs-panel-visual-overlay-light {
  background: linear-gradient(180deg, transparent 0%, rgba(10,37,64,0.08) 100%);
}
.vs-panel-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 1;
}
.vs-panel-tag-problem {
  background: rgba(239,68,68,0.92);
  color: #fff;
}
.vs-panel-tag-solution {
  background: rgba(52,168,235,0.95);
  color: #fff;
}
.vs-panel-body {
  padding: 1.75rem 1.5rem 1.25rem;
  flex: 1;
}
.vs-panel-body-light { background: #fff; }
.vs-panel-problem .vs-panel-body {
  background: linear-gradient(180deg, #0f172a 0%, #0a2540 100%);
}
.vs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vs-list-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.vs-list-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}
.vs-list-item p {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
}
.vs-list-problem strong { color: #fff; }
.vs-list-problem p { color: rgba(255,255,255,0.6); }
.vs-list-solution strong { color: var(--secondary); }
.vs-list-solution p { color: var(--muted); }
.vs-list-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.vs-list-icon-bad { background: rgba(239,68,68,0.15); color: #f87171; }
.vs-list-icon-good { background: rgba(79,195,247,0.2); color: #34A8EB; }
.vs-thumb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}
.vs-thumb {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.vs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.vs-thumb figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.375rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.vs-panel-problem .vs-thumb figcaption {
  background: rgba(15,23,42,0.85);
  color: rgba(255,255,255,0.8);
}
.vs-panel-solution .vs-thumb figcaption {
  background: rgba(255,255,255,0.92);
  color: var(--muted);
}
.vs-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}
@media (min-width: 1024px) {
  .vs-bridge {
    align-self: center;
    padding: 0 1rem;
  }
}
.vs-bridge-track {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 1023px) {
  .vs-bridge-track {
    flex-direction: column;
    gap: 0.375rem;
  }
  .vs-bridge-line {
    width: 2px !important;
    height: 2rem !important;
  }
}
.vs-bridge-line {
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #34A8EB);
  border-radius: 2px;
  flex-shrink: 0;
}
.vs-bridge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.2);
  flex-shrink: 0;
}
.vs-bridge-dot-end {
  background: #34A8EB;
  box-shadow: 0 0 0 3px rgba(52,168,235,0.25);
}
.vs-bridge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(79,195,247,0.25);
  white-space: nowrap;
}

/* Widget marquee slider */
.widget-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.widget-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: widgetSlide 35s linear infinite;
}
.widget-marquee-track.reverse { animation-direction: reverse; animation-duration: 42s; }
@keyframes widgetSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.widget-slide-card {
  flex-shrink: 0;
  width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(10,37,64,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.widget-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,37,64,0.12);
}

/* Comparison table */
.compare-table { border-collapse: separate; border-spacing: 0; width: 100%; }
.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.9375rem;
}
.compare-table th { background: var(--bg-alt); font-weight: 600; }
.compare-table .col-wms { background: rgba(79,195,247,0.08); }
.compare-table .check-yes { color: #16A34A; font-weight: 700; }
.compare-table .check-no { color: #94A3B8; }

/* Hero glow — legacy, kept for compat */
.hero-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at 70% 40%, rgba(79,195,247,0.15), transparent 60%);
  pointer-events: none;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* Contact modal */
.contact-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.contact-modal.open { opacity: 1; visibility: visible; }
.contact-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,37,64,0.55);
  backdrop-filter: blur(8px);
}
.contact-modal-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 920px; max-height: 92vh; overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 40px 80px rgba(10,37,64,0.2);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s var(--ease-out-expo);
}
.contact-modal.open .contact-modal-panel { transform: translateY(0) scale(1); }

/* Demo scroll popup */
.demo-popup {
  position: fixed; inset: 0; z-index: 110;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.demo-popup.open { opacity: 1; visibility: visible; }
.demo-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,37,64,0.62);
  backdrop-filter: blur(10px);
}
.demo-popup-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 880px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(10,37,64,0.28);
  padding: 1.75rem 1.5rem;
  transform: translateY(28px) scale(0.96);
  transition: transform 0.45s var(--ease-out-expo);
}
.demo-popup.open .demo-popup-panel { transform: translateY(0) scale(1); }
.demo-popup-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.demo-popup-close:hover { color: var(--secondary); background: var(--bg-alt); }
.demo-popup-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .demo-popup-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 2rem; }
  .demo-popup-panel { padding: 2rem 2.25rem; }
}
.demo-popup-visual {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.demo-popup-phone {
  position: relative; width: 200px;
  border-radius: 28px; padding: 10px;
  background: linear-gradient(145deg, #0A2540, #123a5c);
  box-shadow: 0 24px 48px rgba(10,37,64,0.35);
}
.demo-popup-phone-notch {
  width: 72px; height: 18px; margin: 0 auto 8px;
  background: #06182a; border-radius: 0 0 12px 12px;
}
.demo-popup-phone-screen {
  display: block; width: 100%; height: 280px;
  object-fit: cover; border-radius: 18px;
}
.demo-popup-badge {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #34A8EB; background: rgba(52,168,235,0.12);
  border: 1px solid rgba(52,168,235,0.25);
  padding: 0.35rem 0.75rem; border-radius: 999px;
}

/* Android QR modal */
.android-qr-modal {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.android-qr-modal.open { opacity: 1; visibility: visible; }
.android-qr-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,37,64,0.55);
  backdrop-filter: blur(8px);
}
.android-qr-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 360px;
  background: #fff; border-radius: 12px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 32px 64px rgba(10,37,64,0.22);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease-out-expo);
}
.android-qr-modal.open .android-qr-panel { transform: translateY(0) scale(1); }
.android-qr-close {
  position: absolute; top: 0.85rem; right: 0.85rem;
  color: var(--muted);
}
.android-qr-close:hover { color: var(--secondary); }
.android-qr-icon-wrap {
  width: 3rem; height: 3rem; margin: 0 auto 0.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(52,168,235,0.12); color: #34A8EB;
}
.android-qr-image {
  display: block; margin: 0 auto;
  border-radius: 8px; border: 1px solid #e8edf2;
  padding: 0.5rem; background: #fff;
}

/* Google Play style button */
.play-store-btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(10,37,64,0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--secondary);
  font-size: 0.75rem;
  line-height: 1.1;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.play-store-btn:hover {
  border-color: rgba(52,168,235,0.45);
  box-shadow: 0 8px 24px rgba(52,168,235,0.15);
  transform: translateY(-1px);
}
.play-store-btn--light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.play-store-btn--light:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(79,195,247,0.5);
}
.play-store-icon { width: 1.35rem; height: 1.35rem; flex-shrink: 0; color: #34A8EB; }
.play-store-icon--lg { width: 1.75rem; height: 1.75rem; }
.play-store-btn-text { display: flex; flex-direction: column; text-align: left; }
.play-store-btn-text strong { font-size: 0.9rem; font-weight: 700; line-height: 1.2; }

.footer-play-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem; font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-play-btn:hover {
  background: rgba(52,168,235,0.18);
  border-color: rgba(79,195,247,0.45);
  color: #fff;
}

@media (max-width: 640px) {
  .demo-popup { padding: 0; align-items: flex-end; }
  .demo-popup-panel { border-radius: 12px 12px 0 0; max-height: 92vh; overflow-y: auto; }
  .demo-popup-phone { width: 160px; }
  .demo-popup-phone-screen { height: 220px; }
}

.contact-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,195,247,0.2);
}
.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }

/* Modern footer */
.site-footer {
  background: transparent;
  color: rgba(255,255,255,0.72);
  position: relative;
  overflow: hidden;
}
.site-footer::before { display: none; }
.footer-cta-band {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 0;
}
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  transition: all 0.25s;
}
.footer-social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(79,195,247,0.1);
  transform: translateY(-2px);
}
.footer-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }
.legal-page { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 4rem; }
.legal-page h1 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.5rem; }
.legal-page h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--secondary); margin: 2rem 0 0.75rem; }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.75; margin-bottom: 0.75rem; }
.legal-page ul { padding-left: 1.25rem; list-style: disc; }

/* Platform bento grid */
.bento-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(120px, auto); }
}
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(10,37,64,0.1); }
.bento-span-7 { grid-column: span 12; }
.bento-span-5 { grid-column: span 12; }
.bento-span-6 { grid-column: span 12; }
.bento-span-4 { grid-column: span 12; }
@media (min-width: 768px) {
  .bento-span-7 { grid-column: span 7; }
  .bento-span-5 { grid-column: span 5; }
  .bento-span-6 { grid-column: span 6; }
  .bento-span-4 { grid-column: span 4; }
}
.bento-img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; }
.theme-swatch {
  width: 2.5rem; height: 2.5rem; border-radius: 6px;
  border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.feature-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--secondary);
}

/* Security section */
.security-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .security-grid { grid-template-columns: repeat(3, 1fr); } }
.security-card {
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: transform 0.35s var(--ease-out-expo), border-color 0.35s, background 0.35s;
}
.security-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79,195,247,0.35);
  background: rgba(79,195,247,0.06);
}
.security-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.security-visual img { display: block; width: 100%; }

