:root{
  --yellow:#F6D04D;
  --blue:#456BE0;
  --green:#6EE7B7;
  --bg:#F4F0EB;
  --text:#2F2F6F;
  --shadow: 0 10px 30px rgba(47,47,111,0.14);
  --shadow-soft: 0 8px 24px rgba(47,47,111,0.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Outfit","Nunito",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background: linear-gradient(120deg, rgba(246,208,77,0.25), rgba(69,107,224,0.18), rgba(110,231,183,0.18), rgba(244,240,235,1));
  background-size: 400% 400%;
  animation: bgShift 18s ease-in-out infinite;
  overflow-x:hidden;
}

@keyframes bgShift{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}

a{ color:inherit; }
a:hover{ text-decoration:none; }

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:var(--bg);
  border-radius:12px;
  box-shadow:var(--shadow);
  z-index:1000;
}

.site-header{
  position:sticky;
  top:0;
  z-index:200;
  backdrop-filter: blur(10px);
  background: rgba(244,240,235,0.72);
  border-bottom: 1px solid rgba(47,47,111,0.10);
}
.header-inner{
  max-width:1100px;
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand-mark{
  width:40px;
  height:40px;
  border-radius:14px;
  background: rgba(246,208,77,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  box-shadow: var(--shadow-soft);
}
.brand-name{
  font-weight:800;
  letter-spacing:0.2px;
  font-size:18px;
  line-height:1.1;
}
.brand-tagline{
  font-size:12px;
  opacity:0.78;
  margin-top:2px;
}

.nav-desktop{
  margin-left:auto;
  display:flex;
  gap:10px;
  align-items:center;
}
.nav-desktop a{
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  opacity:0.9;
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}
.nav-desktop a:hover{
  background: rgba(69,107,224,0.10);
  transform: translateY(-1px);
  opacity:1;
}
.nav-desktop a.active{
  background: rgba(246,208,77,0.35);
  opacity:1;
}

.burger{
  width:42px;
  height:42px;
  border:0;
  border-radius:14px;
  background: rgba(69,107,224,0.10);
  cursor:pointer;
  display:none;
  align-items:center;
  justify-content:center;
  padding:0;
  position:relative;
}
.burger span{
  position:absolute;
  width:18px;
  height:2px;
  background: var(--text);
  border-radius:2px;
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
}
.burger span:nth-child(1){ top:14px; }
.burger span:nth-child(2){ top:20px; }
.burger span:nth-child(3){ top:26px; }
.burger.is-open span:nth-child(1){ top:20px; transform:rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ top:20px; transform:rotate(-45deg); }

.drawer-overlay{
  position:fixed;
  inset:0;
  background: rgba(47,47,111,0.36);
  z-index:300;
}

.mobile-drawer{
  position:fixed;
  top:0;
  left:0;
  height:100%;
  width:320px;
  max-width:85vw;
  background: rgba(244,240,235,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  z-index:350;
  transform: translateX(-110%);
  transition: transform 0.22s ease;
  padding:14px;
}
.mobile-drawer.open{
  transform: translateX(0);
}
.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:6px 4px 12px;
}
.drawer-title{
  font-weight:800;
  font-size:16px;
}
.icon-btn{
  border:0;
  background: rgba(69,107,224,0.12);
  width:38px;
  height:38px;
  border-radius:14px;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  color:var(--text);
}
.nav-mobile{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.nav-mobile a{
  text-decoration:none;
  padding:12px 12px;
  border-radius:16px;
  transition: background 0.18s ease, transform 0.18s ease;
}
.nav-mobile a:hover{
  background: rgba(110,231,183,0.18);
  transform: translateX(2px);
}
.nav-mobile a.active{
  background: rgba(246,208,77,0.35);
}

.main-container{
  max-width:1100px;
  margin:0 auto;
  padding:18px 16px 110px;
}

.tile{
  background: rgba(244,240,235,0.82);
  border: 1px solid rgba(47,47,111,0.10);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding:18px;
  margin:14px 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tile:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.tile.subtle{
  background: rgba(244,240,235,0.65);
}

.link-tile{
  display:block;
  text-decoration:none;
}
.link-tile h2{ margin-top:0; }

.hero-title{
  font-size:38px;
  margin:6px 0 10px;
  letter-spacing:-0.2px;
}
.hero-subtitle{
  margin:0 0 16px;
  opacity:0.9;
  max-width:70ch;
}
.hero-tiles{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.page-head h1{
  margin:0 0 6px;
  font-size:30px;
}
.muted{ opacity:0.82; }

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.mini-card{
  background: rgba(255,255,255,0.35);
  border:1px solid rgba(47,47,111,0.10);
  border-radius: 16px;
  padding:14px;
}
.mini-card h3{
  margin:0 0 8px;
  font-size:18px;
}
.mini-card p{ margin:0; opacity:0.9; }

.steps{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background: rgba(255,255,255,0.30);
  border:1px solid rgba(47,47,111,0.10);
  border-radius:16px;
  padding:12px;
}
.step-n{
  width:34px;
  height:34px;
  border-radius:14px;
  background: rgba(110,231,183,0.30);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}
.step-title{ font-weight:800; }
.step-text{ opacity:0.9; }

.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 0;
}
.tag{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(47,47,111,0.12);
  background: rgba(69,107,224,0.08);
  font-size:13px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:30px;
  border:1px solid rgba(47,47,111,0.14);
  text-decoration:none;
  cursor:pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
  font-weight:700;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: rgba(246,208,77,0.95);
}
.btn-secondary{
  background: rgba(69,107,224,0.16);
}

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.field-label{
  font-weight:700;
  font-size:13px;
  opacity:0.9;
}
.input, .select, .textarea{
  border:1px solid rgba(47,47,111,0.16);
  background: rgba(255,255,255,0.55);
  border-radius:16px;
  padding:12px 12px;
  font-family: inherit;
  color: var(--text);
  outline:none;
}
.input:focus, .select:focus, .textarea:focus{
  border-color: rgba(69,107,224,0.55);
  box-shadow: 0 0 0 4px rgba(69,107,224,0.12);
}

.contact-form{
  max-width:760px;
  margin:0 auto;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.form-status{
  margin-top:12px;
  min-height:22px;
  font-weight:700;
}

.site-footer{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background: rgba(244,240,235,0.82);
  border-top: 1px solid rgba(47,47,111,0.10);
  backdrop-filter: blur(10px);
  z-index:190;
}
.footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer-brand{ font-weight:800; }
.footer-small{ font-size:12px; opacity:0.82; }
.footer-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footer-links a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:14px;
  transition: background 0.18s ease, transform 0.18s ease;
}
.footer-links a:hover{
  background: rgba(246,208,77,0.25);
  transform: translateY(-1px);
}

.empty-state{
  padding:14px;
  border-radius:16px;
  border:1px dashed rgba(47,47,111,0.22);
  background: rgba(255,255,255,0.28);
  text-align:center;
  opacity:0.9;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:500;
}
.lightbox-backdrop{
  position:absolute;
  inset:0;
  background: rgba(47,47,111,0.56);
}
.lightbox-panel{
  position:relative;
  margin:6vh auto 0;
  width:min(920px, 92vw);
  background: rgba(244,240,235,0.95);
  border-radius: 22px;
  border:1px solid rgba(47,47,111,0.12);
  box-shadow: var(--shadow);
  padding:18px 16px 16px;
  display:grid;
  place-items:center;
}
.lightbox-image{
  width:100%;
  height:auto;
  max-height:68vh;
  object-fit:contain;
  border-radius:18px;
  border:1px solid rgba(47,47,111,0.10);
  background: rgba(255,255,255,0.35);
}
.lightbox-close{
  position:absolute;
  top:10px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:16px;
  border:0;
  background: rgba(69,107,224,0.14);
  font-size:24px;
  cursor:pointer;
  color: var(--text);
}
.lightbox-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius:18px;
  border:0;
  background: rgba(246,208,77,0.40);
  cursor:pointer;
  font-size:28px;
  color: var(--text);
}
.lightbox-prev{ left:10px; }
.lightbox-next{ right:10px; }
.lightbox-caption{
  margin-top:10px;
  font-size:13px;
  opacity:0.85;
  text-align:center;
  max-width:80ch;
}

/* Responsive */
@media (max-width: 920px){
  .hero-title{ font-size:32px; }
  .grid-3{ grid-template-columns: 1fr; }
  .hero-tiles{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav-desktop{ display:none; }
  .burger{ display:flex; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
}
