:root {
  --color-primary: #0F2027;
  --color-secondary: #1A3A40;
  --color-accent: #00F5A0;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { font-family: 'Work Sans', system-ui, sans-serif; text-rendering: optimizeLegibility; }
img { max-width: 100%; height: auto; }

:focus-visible {
  outline: 2px solid rgba(0, 245, 160, 0.9);
  outline-offset: 2px;
}

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%;
}

[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); }

.decor-grid-dots {
  background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 18px 18px;
}
.decor-grid-lines {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 38px 38px;
}
.decor-diagonal {
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 8px, transparent 8px, transparent 18px);
}
.decor-mesh {
  background:
    radial-gradient(1000px 450px at 15% 20%, rgba(0,245,160,0.20), transparent 55%),
    radial-gradient(900px 400px at 80% 15%, rgba(0,245,160,0.14), transparent 55%),
    radial-gradient(800px 380px at 60% 85%, rgba(26,58,64,0.35), transparent 55%);
}

.decor-subtle { opacity: 0.05; }
.decor-moderate { opacity: 0.10; }
.decor-bold { opacity: 0.20; }

.decor-gradient-blur { position: relative; isolation: isolate; }
.decor-gradient-blur::before,
.decor-gradient-blur::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 520px;
  height: 520px;
  filter: blur(60px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
  border-radius: 9999px;
}
.decor-gradient-blur::before {
  top: -220px;
  left: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(0,245,160,0.65), transparent 60%);
}
.decor-gradient-blur::after {
  bottom: -240px;
  right: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(0,245,160,0.35), transparent 60%);
}

.decor-corner-tr { position: relative; }
.decor-corner-tr::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 100% 0%, rgba(0,245,160,0.35), transparent 65%);
  pointer-events: none;
}

.decor-corner-bl { position: relative; }
.decor-corner-bl::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 0% 100%, rgba(0,245,160,0.28), transparent 65%);
  pointer-events: none;
}

.decor-glow-element { position: relative; }
.decor-glow-element::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: radial-gradient(circle at 50% 50%, rgba(0,245,160,0.22), transparent 60%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
  border-radius: 9999px;
}

.decor-rings-svg {
  background-image: url("data:image/svg+xml,%3Csvg width='900' height='900' viewBox='0 0 900 900' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.25'%3E%3Ccircle cx='450' cy='450' r='420' stroke='%2300F5A0' stroke-width='2'/%3E%3Ccircle cx='450' cy='450' r='320' stroke='%2300F5A0' stroke-width='2'/%3E%3Ccircle cx='450' cy='450' r='220' stroke='%2300F5A0' stroke-width='2'/%3E%3Ccircle cx='450' cy='450' r='120' stroke='%2300F5A0' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 900px 900px;
}

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  -webkit-appearance: none;
  appearance: none;
}

::selection {
  background: rgba(0, 245, 160, 0.25);
}

#cookie-consent .shadow-2xl {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.20),
    0 8px 20px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate] { transition: none; transform: none; }
}