:root{
  --bg:#0b0c0f;
  --bg2:#0f1218;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#e9e9ee;
  --muted:#b8bcc7;
  --gold:#c7a04a;
  --gold2:#e1c06a;
  --line:rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 500px at 10% 10%, rgba(199,160,74,.18), transparent 60%),
              radial-gradient(900px 600px at 80% 30%, rgba(130,162,255,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: linear-gradient(180deg, rgba(10,11,14,.92), rgba(10,11,14,.60));
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}

.brand__logoWrap{
  width:54px;
  height:54px;
  border-radius:14px;
  background: radial-gradient(50px 50px at 30% 20%, rgba(199,160,74,.22), transparent 60%),
              rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.brand__logo{
  width:46px;
  height:46px;
  object-fit:contain;
  display:block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

.brand__name{
  letter-spacing:.18em;
  font-weight:700;
  font-size:14px;
  line-height:1.1;
}
.brand__tag{
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav__link{
  color:rgba(233,233,238,.85);
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
  transition:.2s ease;
}
.nav__link:hover{
  background:rgba(255,255,255,.06);
  color:#fff;
}

.topbar__actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.lang{
  display:flex;
  gap:6px;
  padding:4px;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.lang__btn{
  border:0;
  cursor:pointer;
  border-radius:10px;
  padding:8px 10px;
  font-weight:700;
  font-size:12px;
  color:rgba(233,233,238,.75);
  background:transparent;
}
.lang__btn.is-active{
  background: rgba(199,160,74,.22);
  color: #fff;
  border:1px solid rgba(199,160,74,.35);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
  user-select:none;
}
.btn--gold{
  background: linear-gradient(180deg, rgba(225,192,106,.95), rgba(199,160,74,.92));
  color:#101114;
  border:1px solid rgba(225,192,106,.35);
  box-shadow: 0 14px 35px rgba(199,160,74,.18);
}
.btn--gold:hover{transform: translateY(-1px); filter:saturate(1.05)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: #fff;
}
.btn--ghost:hover{background: rgba(255,255,255,.10)}
.btn--small{padding:10px 12px; border-radius:12px; font-size:13px}
.btn--block{width:100%}

.hamburger{
  display:none;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}
.hamburger span{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  margin:4px 0;
  opacity:.9;
}

.mobileMenu{
  display:none;
  padding:10px 0 14px;
  border-top:1px solid rgba(255,255,255,.06);
}
.mobileMenu__link{
  display:block;
  padding:12px 0;
  color:rgba(233,233,238,.90);
}
.mobileMenu__cta{
  color: var(--gold2);
  font-weight:800;
}

.hero{
  position:relative;
  padding:48px 0 26px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:start;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(233,233,238,.88);
  font-size:13px;
}

.hero__title{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero__subtitle{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width: 56ch;
}
.hero__ctaRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.trustRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.trust{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.trust__icon{
  width:26px; height:26px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(199,160,74,.18);
  border:1px solid rgba(199,160,74,.22);
  color:#fff;
  font-weight:900;
}
.trust__text{font-size:13px; color:rgba(233,233,238,.88)}

.hero__right{
  position:relative;
}

.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.card--glass{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  backdrop-filter: blur(10px);
}
.card__header{
  padding:18px 18px 10px;
}
.card__title{
  margin:0;
  font-size:20px;
  letter-spacing:.02em;
}
.card__sub{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.form{
  padding: 0 18px 18px;
}
.form--compact{padding-top:8px}
.form__row{margin-top:12px}
.form__row--2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.form__label{
  display:block;
  margin-bottom:8px;
  color:rgba(233,233,238,.85);
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
}
.form__input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
.form__input:focus{
  border-color: rgba(199,160,74,.50);
  box-shadow: 0 0 0 4px rgba(199,160,74,.12);
}
.form__textarea{resize:vertical; min-height: 88px}
.form__actions{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:14px;
}
.form__hint{
  margin:12px 0 0;
  color:rgba(233,233,238,.65);
  font-size:12px;
  line-height:1.5;
}

.section{
  padding:54px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:18px}
.section__title{
  margin:0;
  font-size:28px;
  letter-spacing:-.01em;
}
.section__sub{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.6;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.feature{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.feature__icon{
  width:44px;height:44px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(199,160,74,.18);
  border:1px solid rgba(199,160,74,.25);
  margin-bottom:12px;
}
.feature__title{font-weight:800; margin:0 0 6px}
.feature__text{color:var(--muted); margin:0; line-height:1.6}

.whyCard{
  padding:20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.whyCard__title{
  font-weight:900;
  font-size:18px;
  margin:0 0 10px;
}
.whyCard__text{margin:0 0 10px; color:var(--muted); line-height:1.65}
.whyList{
  margin:0;
  padding-left:18px;
  color:rgba(233,233,238,.85);
}
.whyList li{margin:8px 0}

.contactGrid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:14px;
  align-items:start;
}
.contactCard{
  padding:20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.contactCard--form{background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04))}
.contactCard__badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(199,160,74,.18);
  border:1px solid rgba(199,160,74,.25);
  font-weight:900;
  letter-spacing:.08em;
  font-size:11px;
}
.contactCard__title{
  margin:14px 0 8px;
  font-size:18px;
  font-weight:900;
}
.contactCard__text{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.6;
}
.contactCard__actions{display:grid; gap:10px}
.miniNote{margin-top:12px; color:rgba(233,233,238,.65); font-size:12px; line-height:1.5}

.footer{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
}
.footer__brand{font-weight:900; letter-spacing:.14em}
.footer__small{color:var(--muted); margin-top:6px; font-size:12px}
.footer__link{color:rgba(233,233,238,.80)}
.footer__link:hover{color:#fff}

.floatWA{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(225,192,106,.95), rgba(199,160,74,.92));
  color:#101114;
  border:1px solid rgba(225,192,106,.35);
  box-shadow: 0 18px 45px rgba(199,160,74,.22);
  z-index:60;
}
.floatWA span{font-weight:1000; letter-spacing:.06em}

.hero__glow{
  position:absolute;
  left:0;
  right:0;
  bottom:-60px;
  height:120px;
  background: radial-gradient(500px 100px at 25% 50%, rgba(199,160,74,.22), transparent 65%);
  pointer-events:none;
  filter: blur(10px);
}

/* ROSETTE */
.rosette{
  position:absolute;
  top:-14px;
  right:14px;
  width:150px;
  height:150px;
  pointer-events:none;
}
.rosette__ring{
  position:absolute;
  inset:0;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(225,192,106,.30), transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(199,160,74,.24), transparent 55%),
    rgba(255,255,255,.06);
  border:1px solid rgba(199,160,74,.35);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  filter: saturate(1.05);
}
.rosette__body{
  position:absolute;
  inset:18px;
  border-radius:999px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:10px;
}
.rosette__title{
  font-size:11px;
  letter-spacing:.2em;
  font-weight:1000;
  color: rgba(225,192,106,.95);
}
.rosette__line{font-size:13px; margin-top:6px; color:rgba(233,233,238,.92)}
.rosette__line--strong{font-size:14px; font-weight:900}
.rosette__ribbons{
  position:absolute;
  left:50%;
  bottom:-12px;
  transform: translateX(-50%);
  display:flex;
  gap:10px;
}
.rosette__ribbons span{
  width:26px;
  height:36px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, rgba(225,192,106,.90), rgba(199,160,74,.85));
  border:1px solid rgba(225,192,106,.25);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}
.rosette__ribbons span:nth-child(2){
  transform: translateY(4px);
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:18px}
  .hero__title{font-size:38px}
  .rosette{top:-10px}
  .contactGrid{grid-template-columns:1fr}
}
@media (max-width: 820px){
  .nav{display:none}
  .topbar__actions{display:none}
  .hamburger{display:block}
  .mobileMenu.is-open{display:block}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .form__row--2{grid-template-columns:1fr}
  .brand{min-width:auto}
}
