:root{
  --color-primary:#2C3E50;
  --color-secondary:#3D5266;
  --color-accent:#48C9B0;
}

html{scroll-behavior:smooth;scroll-padding-top:7.25rem;}
body{font-family:'Work Sans',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Noto Sans','Helvetica Neue',Arial,sans-serif;}

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

/* Animation (from context: slide_right => opacity-0 -translate-x-8) */
[data-animate]{
  opacity:0;
  transform:translateX(-2rem);
  transition:opacity .6s ease-out, transform .6s ease-out;
  will-change:opacity, transform;
}
[data-animate].is-visible{
  opacity:1;
  transform:translateX(0);
}

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

/* Decorative backgrounds */
.decor-grid-dots{
  background-image: radial-gradient(rgba(72,201,176,.22) 1px, transparent 1px);
  background-size: 18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(44,62,80,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(44,62,80,.10) 1px, transparent 1px);
  background-size: 28px 28px;
}
.decor-diagonal{
  background-image: repeating-linear-gradient(135deg, rgba(72,201,176,.12) 0, rgba(72,201,176,.12) 1px, transparent 1px, transparent 12px);
}
.decor-mesh{
  background:
    radial-gradient(600px 250px at 15% 10%, rgba(72,201,176,.18), transparent 60%),
    radial-gradient(520px 260px at 85% 15%, rgba(44,62,80,.18), transparent 62%),
    radial-gradient(520px 320px at 50% 90%, rgba(72,201,176,.14), transparent 65%);
}

/* Intensity helpers */
.decor-subtle{opacity:.06;}
.decor-moderate{opacity:.10;}
.decor-bold{opacity:.18;}

/* Accent elements */
.decor-gradient-blur{position:relative;}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  filter:blur(40px);
  opacity:.35;
  pointer-events:none;
  z-index:0;
}
.decor-gradient-blur::before{
  width:320px;height:320px;
  left:-80px;top:-80px;
  background:radial-gradient(circle at center, rgba(72,201,176,.55), transparent 60%);
}
.decor-gradient-blur::after{
  width:380px;height:380px;
  right:-120px;bottom:-140px;
  background:radial-gradient(circle at center, rgba(44,62,80,.45), transparent 62%);
}

.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 top right, rgba(72,201,176,.25), transparent 60%);
  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 bottom left, rgba(72,201,176,.20), transparent 60%);
  pointer-events:none;
}

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

.decor-rings-svg{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%2348C9B0' stroke-opacity='0.25'%3E%3Ccircle cx='90' cy='90' r='24'/%3E%3Ccircle cx='90' cy='90' r='44'/%3E%3Ccircle cx='90' cy='90' r='64'/%3E%3C/g%3E%3C/svg%3E");
  background-size:180px 180px;
  background-repeat:no-repeat;
  background-position:center;
}

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

.cookie-toggle{position:relative;}
.cookie-toggle:focus-visible{outline:2px solid var(--color-accent); outline-offset:2px;}

a:focus-visible, button:focus-visible, input:focus-visible{
  outline:2px solid rgba(72,201,176,.65);
  outline-offset:2px;
}