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

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Outfit',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

::selection{background:rgba(0,245,160,.25)}
a{outline-offset:4px}
img{max-width:100%;height:auto}

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:.5rem
}
form button[type="submit"]{white-space:normal;width:100%}

[data-animate]{
  opacity:0;
  transform:translateY(32px);
  transition:opacity .7s ease-out,transform .7s ease-out
}
[data-animate].is-visible{
  opacity:1;
  transform:translateY(0)
}
.rotate-180{transform:rotate(180deg)}

.focus-ring:focus{outline:none;box-shadow:0 0 0 4px rgba(0,245,160,.25)}
.glass{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px)
}

.decor-grid-dots{
  background-image:radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
  background-size:18px 18px
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size:48px 48px
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(0,245,160,.12) 0, rgba(0,245,160,.12) 6px, transparent 6px, transparent 18px)
}
.decor-mesh{
  background:
    radial-gradient(900px 400px at 10% 20%, rgba(0,245,160,.16), transparent 60%),
    radial-gradient(700px 500px at 80% 10%, rgba(15,32,39,.22), transparent 62%),
    radial-gradient(800px 520px at 60% 90%, rgba(26,58,64,.22), transparent 60%)
}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:560px;
  height:560px;
  border-radius:9999px;
  filter:blur(48px);
  opacity:.55;
  pointer-events:none
}
.decor-gradient-blur::before{
  top:-180px;
  left:-220px;
  background:radial-gradient(circle at 30% 30%, rgba(0,245,160,.40), transparent 60%)
}
.decor-gradient-blur::after{
  bottom:-240px;
  right:-220px;
  background:radial-gradient(circle at 60% 40%, rgba(26,58,64,.55), transparent 58%)
}
.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:0;right:0;
  width:180px;height:180px;
  background:linear-gradient(135deg, rgba(0,245,160,.20), transparent 70%);
  border-bottom-left-radius:24px;
  pointer-events:none
}
.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:0;left:0;
  width:200px;height:200px;
  background:linear-gradient(315deg, rgba(0,245,160,.18), transparent 70%);
  border-top-right-radius:24px;
  pointer-events:none
}
.decor-glow-element{
  position:absolute;
  inset:auto 0 0 0;
  margin:auto;
  width:min(520px,86vw);
  height:min(520px,86vw);
  border-radius:9999px;
  background:radial-gradient(circle at 50% 50%, rgba(0,245,160,.22), transparent 62%);
  filter:blur(6px);
  pointer-events:none
}
.decor-rings-svg{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='520' viewBox='0 0 520 520'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.14)' stroke-width='1'%3E%3Ccircle cx='260' cy='260' r='70'/%3E%3Ccircle cx='260' cy='260' r='120'/%3E%3Ccircle cx='260' cy='260' r='170'/%3E%3Ccircle cx='260' cy='260' r='220'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:520px 520px
}

.decor-subtle{opacity:.06}
.decor-moderate{opacity:.10}
.decor-bold{opacity:.18}

.card-premium{
  border:1px solid rgba(229,231,235,.9);
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  box-shadow:0 10px 30px rgba(17,24,39,.06)
}

input[type="text"], input[type="tel"], input[type="email"], textarea, select{
  outline:none
}
input:focus, textarea:focus, select:focus{
  box-shadow:0 0 0 4px rgba(0,245,160,.18)
}

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