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

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Nunito Sans',system-ui,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%}

/* Premium focus */
:where(a,button,input,textarea,select):focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-accent) 25%, transparent);
  border-radius: 9999px;
}

/* Subtle glass + refined shadows */
.btn-cta{
  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-cta:hover{transform: translateY(-1px)}
.btn-cta:active{transform: translateY(0px)}

/* Animations (context: slide_right) */
[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);
}

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

/* Decorative elements */
.decor-grid-dots{
  background-image: radial-gradient(rgba(72,201,176,.20) 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: 40px 40px;
}
.decor-diagonal{
  background-image: repeating-linear-gradient(135deg, rgba(72,201,176,.12) 0, rgba(72,201,176,.12) 2px, transparent 2px, transparent 10px);
}
.decor-mesh{
  background-image:
    radial-gradient(1000px 500px at 10% 0%, rgba(72,201,176,.22), transparent 55%),
    radial-gradient(900px 450px at 90% 20%, rgba(44,62,80,.18), transparent 55%),
    radial-gradient(900px 450px at 55% 100%, rgba(61,82,102,.16), transparent 60%);
}

.decor-subtle{opacity:.08}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.20}

.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  filter: blur(56px);
  opacity:.35;
  pointer-events:none;
  z-index:0;
}
.decor-gradient-blur::before{
  top:-180px;
  left:-220px;
  background: radial-gradient(circle at 30% 30%, rgba(72,201,176,.65), transparent 60%);
}
.decor-gradient-blur::after{
  bottom:-220px;
  right:-240px;
  background: radial-gradient(circle at 70% 70%, rgba(44,62,80,.55), transparent 60%);
}

.decor-corner-tr::before,
.decor-corner-bl::before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(72,201,176,.22), transparent 60%);
  pointer-events:none;
  z-index:0;
}
.decor-corner-tr::before{top:-38px;right:-38px}
.decor-corner-bl::before{bottom:-38px;left:-38px}

.decor-glow-element{
  position:absolute;
  inset:auto;
  width:420px;
  height:420px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(72,201,176,.28), transparent 62%);
  filter: blur(30px);
  opacity:.8;
  pointer-events:none;
}

.decor-rings-svg{
  background-image: radial-gradient(circle at center, transparent 62%, rgba(72,201,176,.12) 63%, transparent 64%),
                    radial-gradient(circle at center, transparent 42%, rgba(72,201,176,.10) 43%, transparent 44%),
                    radial-gradient(circle at center, transparent 24%, rgba(72,201,176,.08) 25%, transparent 26%);
  background-size: 520px 520px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Inputs */
input::placeholder, textarea::placeholder{opacity:1}

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