/* 1:1 Flyer → Website (clean sections, same vibe) */
:root{
  --text:#ffffff;
  --muted: rgba(255,255,255,.85);
  --line: rgba(255,255,255,.22);
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --blue1:#0a5cc0;
  --blue2:#0b2d63;
  --green1:#4fe06e;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(900px 600px at 20% 0%, rgba(255,255,255,.18), transparent 60%), #061a35;
}

.wrap{width:min(1120px, 92vw); margin:0 auto}
a{color:inherit}

.top{
  position:sticky; top:0; z-index:60;
  background: linear-gradient(180deg, rgba(2,20,48,.85), rgba(2,20,48,.55));
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.top__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:10px 0}
.logo{display:flex; flex-direction:column; gap:2px}
.logo__name{font-weight:1000; letter-spacing:.2px; font-size:18px}
.logo__sub{font-weight:900; color:rgba(255,255,255,.85); font-size:12px; letter-spacing:1.4px}
.top__right{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.top__link{text-decoration:none; font-weight:800; font-size:13px; color:rgba(255,255,255,.9)}
.top__link:hover{text-decoration:underline}

.nav{display:flex; gap:14px; padding:8px 0 12px}
.nav a{text-decoration:none; font-weight:900; font-size:13px; color:rgba(255,255,255,.9)}
.nav a:hover{color:#fff; text-decoration:underline}

.btn{
  border:1px solid rgba(116,255,170,.55);
  background: linear-gradient(180deg, rgba(79,224,110,.45), rgba(79,224,110,.22));
  color:#073615;
  font-weight:1000;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}
.btn:hover{filter:brightness(1.05)}
.btn--ghost{
  border:1px solid var(--line);
  background: rgba(255,255,255,.10);
  color:#fff;
}
.btn--wide{width:100%}

.burger{
  display:none;
  width:44px; height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.10);
  cursor:pointer;
}
.burger span{display:block; width:18px; height:2px; background:#fff; margin:4px auto; border-radius:10px}

.drawer{border-top:1px solid var(--line); background: rgba(2,20,48,.92)}
.drawer__inner{padding:14px 0; display:grid; gap:10px}
.drawer__a{text-decoration:none; padding:10px 12px; border:1px solid var(--line); border-radius:14px; background: rgba(255,255,255,.08); font-weight:1000}
.drawer__line{height:1px; background:var(--line); margin:6px 0}

.hero{
  position:relative;
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
  padding:22px 0 0;
}
.hero__bubbles{
  position:absolute; inset:0;
  background: url("assets/bubbles.png") center/800px 520px repeat;
  opacity:.65;
  pointer-events:none;
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:stretch;
  padding-bottom:24px;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius:22px;
  box-shadow: var(--shadow);
}
.hero__left{padding:18px 18px 16px}
.hero__left h1{
  margin:0 0 10px;
  font-size:38px;
  line-height:1.05;
  text-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.accent{color:#c8ffdb}
.hero__text{margin:0 0 10px; color:var(--muted); font-weight:800}
.ticks{list-style:none; padding:0; margin:10px 0 0; display:grid; gap:6px; font-weight:900}
.ticks li::before{content:"✓"; margin-right:10px; color:#baffcc}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.hero__right{
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.08);
}
.hero__right img{width:100%; height:100%; object-fit:cover; display:block; min-height:330px}

.wave{
  height:64px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.14));
  border-top:1px solid rgba(255,255,255,.10);
}
.wave--down{margin-top:0}
.wave--up{transform: scaleY(-1)}

.services{
  position:relative;
  background: url("assets/services-bg.jpg") center/cover no-repeat;
  padding:34px 0 0;
}
.services__bubbles{
  position:absolute; inset:0;
  background: url("assets/bubbles.png") center/800px 520px repeat;
  opacity:.55;
  pointer-events:none;
}
.services .wrap{position:relative}
h2{
  margin:0 0 16px;
  font-size:32px;
  text-shadow: 0 14px 28px rgba(0,0,0,.25);
}
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.sCard{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.sCard img{width:100%; height:140px; object-fit:cover; display:block}
.sCard__body{padding:12px}
.sCard__title{font-weight:1000}
.sCard__meta{margin-top:6px; color:rgba(255,255,255,.88); font-weight:800; font-size:13px}
.sCard__btn{
  margin-top:10px;
  display:inline-flex;
  text-decoration:none;
  border-radius:999px;
  padding:9px 12px;
  font-weight:1000;
  background: linear-gradient(180deg, rgba(79,224,110,.46), rgba(79,224,110,.20));
  border:1px solid rgba(116,255,170,.55);
  color:#073615;
}
.sCard__btn:hover{filter:brightness(1.05)}

.why{
  background: url("assets/why-bg.jpg") center/cover no-repeat;
  padding:42px 0;
}
.why__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:center;
}
.whyCards{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:14px}
.whyCard{
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius:18px;
  padding:14px;
  box-shadow: var(--shadow);
}
.whyIcon{width:42px;height:42px;border-radius:14px;display:grid;place-items:center;
  background: rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.22); font-weight:1000}
.whyTitle{margin-top:10px; font-weight:1000}
.whyText{margin-top:6px; color:rgba(255,255,255,.86); font-weight:700; font-size:13px; line-height:1.4}
.why__right{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
}
.why__right img{width:100%; height:100%; object-fit:cover; display:block; min-height:280px}

.prices{
  padding:44px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.tableWrap{
  border:1px solid rgba(255,255,255,.20);
  border-radius:18px;
  overflow:auto;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
table{width:100%; border-collapse:collapse; min-width:740px}
th,td{padding:12px 12px; border-bottom:1px solid rgba(255,255,255,.12); text-align:left; vertical-align:top}
th{font-size:13px}
td{color:rgba(255,255,255,.88); font-weight:700; font-size:14px}
.fine{margin:12px 0 0; color:rgba(255,255,255,.86); font-weight:700}

.contact{
  background: url("assets/contact-bg.jpg") center/cover no-repeat;
  padding:42px 0 0;
}
.contactGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:12px;
  align-items:start;
}
.map{overflow:hidden}
.map iframe{width:100%; height:360px; border:0; display:block}
.form{padding:14px}
.formRow{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
label{display:grid; gap:6px; font-weight:900; font-size:13px; color:rgba(255,255,255,.92)}
input,select,textarea{
  border:1px solid rgba(255,255,255,.22);
  border-radius:14px;
  background: rgba(0,0,0,.18);
  color:#fff;
  padding:10px 12px;
  outline:none;
}
textarea{resize:vertical}
.contactMini{display:grid; gap:6px; margin-top:10px}
.contactMini a{text-decoration:none; font-weight:900; color:rgba(255,255,255,.92)}
.contactMini a:hover{text-decoration:underline}
.ok{margin-top:10px; padding:10px 12px; border-radius:14px; border:1px solid rgba(116,255,170,.55); background: rgba(79,224,110,.18); font-weight:1000}

.foot{
  margin-top:22px;
  background: rgba(2,20,48,.70);
  border-top:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.foot__inner{display:flex; justify-content:space-between; gap:12px; padding:16px 0; flex-wrap:wrap; font-weight:900}
.foot__links{display:flex; gap:14px}
.foot__links a{text-decoration:none; color:rgba(255,255,255,.85)}
.foot__links a:hover{color:#fff; text-decoration:underline}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .why__grid{grid-template-columns:1fr}
  .whyCards{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .map iframe{height:300px}
}
@media (max-width: 640px){
  .nav{display:none}
  .burger{display:inline-block}
  .top__link{display:none}
  .hero__left h1{font-size:30px}
  .cards{grid-template-columns:1fr}
  .formRow{grid-template-columns:1fr}
}
