:root{
  --color-primary:#1B4332;
  --color-secondary:#2D6A4F;
  --color-accent:#40C057;
}

html{scroll-behavior:smooth;scroll-padding-top:7rem}
body{font-family:'Outfit',system-ui,sans-serif}

::selection{background:rgba(64,192,87,.22);color:#0f172a}

img{max-width:100%;height:auto}
a,button{transition:all .2s ease}

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(18px);
  transition:opacity .6s ease-out, transform .6s ease-out;
}
[data-animate].is-visible{
  opacity:1;
  transform:translateY(0);
}

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

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

.decor-grid-dots{
  background-image:radial-gradient(rgba(15,23,42,.20) 1px, transparent 1px);
  background-size:18px 18px;
}
.bg-gray-950 .decor-grid-dots{
  background-image:radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
}

.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(15,23,42,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.08) 1px, transparent 1px);
  background-size:56px 56px;
}
.bg-gray-950 .decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.07) 1px, transparent 1px);
}

.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(64,192,87,.14) 0, rgba(64,192,87,.14) 2px, transparent 2px, transparent 12px);
}

.decor-mesh{
  background:
    radial-gradient(650px 320px at 20% 15%, rgba(64,192,87,.18), transparent 60%),
    radial-gradient(580px 320px at 78% 35%, rgba(45,106,79,.18), transparent 60%),
    radial-gradient(720px 420px at 50% 85%, rgba(27,67,50,.18), transparent 60%);
  filter:saturate(1.05);
}

.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:9999px;
  filter:blur(60px);
  opacity:.20;
  pointer-events:none;
}
.decor-gradient-blur::before{background:var(--color-accent);left:-160px;top:-200px}
.decor-gradient-blur::after{background:var(--color-secondary);right:-160px;bottom:-240px}

.decor-corner-tr::before{
  content:"";
  position:absolute;
  right:-140px;
  top:-140px;
  width:320px;
  height:320px;
  background:radial-gradient(circle at center, rgba(64,192,87,.35), transparent 65%);
  pointer-events:none;
}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  left:-160px;
  bottom:-160px;
  width:360px;
  height:360px;
  background:radial-gradient(circle at center, rgba(45,106,79,.28), transparent 65%);
  pointer-events:none;
}

.decor-glow-element{
  position:absolute;
  inset:auto;
  width:420px;
  height:420px;
  border-radius:9999px;
  background:radial-gradient(circle at 30% 30%, rgba(64,192,87,.35), transparent 60%);
  filter:blur(34px);
  pointer-events:none;
}

.decor-rings-svg{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='720' viewBox='0 0 720 720'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'%3E%3Ccircle cx='360' cy='360' r='80'/%3E%3Ccircle cx='360' cy='360' r='140'/%3E%3Ccircle cx='360' cy='360' r='210'/%3E%3Ccircle cx='360' cy='360' r='290'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:720px 720px;
}

.focus-ring{
  outline:none;
  box-shadow:0 0 0 4px rgba(64,192,87,.25);
}

.input-error{
  border-color:rgba(239,68,68,.65)!important;
  box-shadow:0 0 0 4px rgba(239,68,68,.12)!important;
}