:root {
  --color-primary: #0F2027;
  --color-secondary: #1A3A40;
  --color-accent: #00F5A0;
  --color-bg-light: #ECFDF5;
  --color-bg-alt: #D1FAE5;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { font-family: 'Manrope', system-ui, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

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

/* Button fixes */
button, .btn, [class*="btn-"], a[href="#order_form"] {
  white-space: nowrap;
  min-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

form button[type="submit"] {
  white-space: normal;
  width: 100%;
}

/* Focus visibility */
:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--color-accent) 70%, white);
  outline-offset: 2px;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rotate-180 { transform: rotate(180deg); }

/* Premium micro-surfaces */
.glass {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(229,231,235,0.9);
  backdrop-filter: blur(10px);
}

.cta-btn {
  letter-spacing: -0.01em;
  transform: translateZ(0);
}
.cta-btn:active { transform: translateY(1px); }

/* Decorative backgrounds (subtle, premium) */
.decor-subtle { opacity: .06; }
.decor-moderate { opacity: .10; }
.decor-bold { opacity: .18; }

.decor-grid-dots {
  background-image: radial-gradient(circle at 1px 1px, rgba(15,32,39,0.22) 1px, transparent 0);
  background-size: 18px 18px;
}

.decor-grid-lines {
  background-image:
    linear-gradient(to right, rgba(15,32,39,0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,32,39,0.10) 1px, transparent 1px);
  background-size: 26px 26px;
}

.decor-diagonal {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(0,245,160,0.20) 0px,
    rgba(0,245,160,0.20) 1px,
    transparent 1px,
    transparent 12px
  );
}

.decor-mesh {
  background:
    radial-gradient(700px 260px at 10% 20%, rgba(0,245,160,0.20), transparent 60%),
    radial-gradient(800px 320px at 90% 30%, rgba(209,250,229,0.18), transparent 58%),
    radial-gradient(900px 380px at 50% 120%, rgba(26,58,64,0.25), transparent 55%);
}

.decor-gradient-blur::before,
.decor-gradient-blur::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  filter: blur(70px);
  opacity: .28;
  z-index: 0;
  pointer-events: none;
  border-radius: 9999px;
}
.decor-gradient-blur::before {
  left: -120px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(0,245,160,0.8), transparent 55%);
}
.decor-gradient-blur::after {
  right: -160px;
  bottom: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(209,250,229,0.8), transparent 55%);
}

.decor-corner-tr::before,
.decor-corner-bl::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  pointer-events: none;
  opacity: .12;
  z-index: 0;
}
.decor-corner-tr::before {
  top: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0,245,160,0.7), transparent 60%);
  border-bottom-left-radius: 9999px;
}
.decor-corner-bl::after {
  bottom: 0;
  left: 0;
  background: linear-gradient(315deg, rgba(0,245,160,0.6), transparent 60%);
  border-top-right-radius: 9999px;
}

.decor-glow-element {
  position: absolute;
  inset: auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(0,245,160,0.35), transparent 60%);
  filter: blur(40px);
  opacity: .55;
  border-radius: 9999px;
  pointer-events: none;
}

/* Cookie banner tweaks */
#cookie-consent .shadow-2xl { box-shadow: 0 25px 80px rgba(15,32,39,0.22); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; transition: none; }
  .cta-btn { transition: none !important; }
}