
:root{
  --bg:#07110d;
  --bg2:#0c1712;
  --card:#102019;
  --card2:#172a21;
  --cream:#f3ead7;
  --cream2:#e4d3ad;
  --gold:#d6b36a;
  --gold2:#f0d890;
  --sage:#87a98f;
  --green:#1d4335;
  --green2:#255a45;
  --clay:#9a6045;
  --text:#f6f1e8;
  --muted:#d3c9b8;
  --soft:#aeb8ad;
  --line:rgba(214,179,106,.22);
  --line2:rgba(255,255,255,.09);
  --shadow:0 18px 50px rgba(0,0,0,.32);
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html,
body{
  max-width:100%;
  overflow-x:hidden;
  overscroll-behavior-x:none;
}

html{
  overflow-x:clip;
}

body{
  overflow-x:clip;
}

body > *{
  max-width:100%;
}

html{
  scroll-behavior:smooth;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  width:100%;
  max-width:100%;
  font-family:Inter,Arial,sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(214,179,106,.13), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(135,169,143,.10), transparent 25%),
    linear-gradient(180deg,#07110d,#0b1511 42%,#10160f);
  color:var(--text);
  overflow-x:hidden;
}

.header{
  position:sticky;
  top:0;
  z-index:100;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 5%;
  backdrop-filter:blur(16px);
  background:rgba(7,17,13,.80);
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:var(--text);
}

.brand-logo{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:50%;
  box-shadow:0 10px 30px rgba(214,179,106,.22);
}

.brand-text strong{
  display:block;
  letter-spacing:.18em;
  font-size:20px;
}

.brand-text small{
  color:var(--gold);
  letter-spacing:.25em;
}

.nav{
  display:flex;
  gap:28px;
}

.nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--gold),var(--sage));
  transition:.25s;
}

.nav a:hover::after{
  width:100%;
}

#lang{
  background:#122019;
  color:white;
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 14px;
}

.hero{
  min-height:88vh;
  display:flex;
  align-items:center;
  padding:82px 5% 70px;
  position:relative;
}

.premium-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(110deg,rgba(5,12,9,.88),rgba(9,25,18,.70),rgba(5,12,9,.82)),
    url('image/footer.jpg') center/cover;
  opacity:.45;
}

.hero::after{
  content:"";
  position:absolute;
  right:0;
  top:12%;
  width:min(420px,70vw);
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(214,179,106,.20),transparent 68%);
  filter:blur(3px);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:820px;
}

.kicker{
  color:var(--gold2);
  letter-spacing:.25em;
  text-transform:uppercase;
  font-weight:900;
}

.hero h1{
  font-size:clamp(48px,7vw,86px);
  line-height:.95;
  margin:16px 0;
}

.lead{
  font-size:21px;
  color:var(--cream);
  max-width:720px;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px;
  padding:15px 25px;
  font-weight:850;
  transition:.25s;
}

.btn.primary{
  background:linear-gradient(135deg,#d6b36a,#f2dd9e);
  color:#16120a;
  box-shadow:0 12px 35px rgba(214,179,106,.26);
}

.btn.secondary{
  border:1px solid var(--line);
  color:white;
  background:rgba(255,255,255,.04);
}

.btn:hover{
  transform:translateY(-3px);
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.hero-badges span{
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  padding:11px 17px;
  border-radius:999px;
  color:var(--cream);
}

.section{
  padding:72px 5%;
  position:relative;
}

.section:nth-of-type(odd):not(.hero){
  background:
    radial-gradient(circle at 8% 20%, rgba(214,179,106,.08), transparent 28%),
    linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,.01));
}

.section:nth-of-type(even):not(.hero){
  background:
    radial-gradient(circle at 90% 12%, rgba(135,169,143,.09), transparent 27%),
    linear-gradient(180deg,rgba(18,32,25,.62),rgba(10,18,14,.24));
}

.section h2{
  font-size:clamp(42px,5.8vw,68px);
  line-height:.98;
  margin:0 0 18px;
  letter-spacing:-.04em;
  color:var(--cream);
}

.section h2::after{
  content:"";
  display:block;
  width:92px;
  height:4px;
  margin-top:18px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--gold),var(--sage),transparent);
}

.section-copy p,
.section > p,
.contact p{
  max-width:820px;
  color:var(--muted);
  font-size:20px;
  line-height:1.72;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:30px;
}

.stats div{
  background:linear-gradient(180deg,rgba(243,234,215,.08),rgba(135,169,143,.08));
  border:1px solid var(--line);
  padding:24px;
  border-radius:28px;
  box-shadow:var(--shadow);
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:34px;
}

.card{
  background:
    linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025)),
    linear-gradient(135deg,var(--card),#17251d);
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.3s;
}

.card:nth-child(2n){
  background:
    linear-gradient(180deg,rgba(214,179,106,.07),rgba(255,255,255,.025)),
    linear-gradient(135deg,#12231b,#1a2d23);
}

.card:nth-child(3n){
  background:
    linear-gradient(180deg,rgba(135,169,143,.09),rgba(255,255,255,.02)),
    linear-gradient(135deg,#102019,#16291f);
}

.card:hover{
  transform:translateY(-7px);
  border-color:rgba(214,179,106,.48);
}

.product-image{
  width:100%;
  height:235px;
  object-fit:cover;
  display:block;
}

.card h3,
.card p{
  padding-left:24px;
  padding-right:24px;
}

.card h3{
  margin-top:22px;
  color:var(--gold2);
  font-size:24px;
  line-height:1.15;
}

.card p{
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
  padding-bottom:24px;
}

.small{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.small div{
  background:
    linear-gradient(135deg,rgba(214,179,106,.12),rgba(135,169,143,.07));
  border:1px solid var(--line);
  padding:24px;
  border-radius:24px;
  font-weight:850;
  color:var(--cream);
  font-size:19px;
  box-shadow:0 14px 36px rgba(0,0,0,.20);
}

.list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  list-style:none;
  padding:0;
  margin-top:30px;
}

.list li{
  background:rgba(243,234,215,.055);
  border:1px solid var(--line2);
  border-left:4px solid var(--gold);
  padding:20px;
  border-radius:18px;
  font-size:18px;
  color:var(--cream);
}

.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:start;
}

.contact a{
  color:var(--gold2);
  font-weight:800;
}

form{
  background:
    linear-gradient(180deg,rgba(214,179,106,.08),rgba(135,169,143,.055)),
    linear-gradient(135deg,var(--card),#17271f);
  border:1px solid var(--line);
  border-radius:30px;
  padding:28px;
  box-shadow:var(--shadow);
  display:grid;
  gap:15px;
  align-self:start;
}

input,textarea{
  width:100%;
  background:#0f1a15;
  border:1px solid rgba(255,255,255,.10);
  color:white;
  border-radius:16px;
  padding:16px;
  font:inherit;
  font-size:16px;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(214,179,106,.12);
}

textarea{
  min-height:145px;
}

.float{
  position:fixed;
  right:12px;
  bottom:85px;

  background:#25D366;
  color:#fff;
  padding:14px 18px;

  border-radius:999px;
  text-decoration:none;
  font-weight:900;

  box-shadow:0 12px 30px rgba(0,0,0,.35);
  z-index:99;

  max-width:calc(100vw - 24px);
}

footer{
  text-align:center;
  padding:34px 5%;
  border-top:1px solid var(--line);
  color:#b8b0a0;
  background:rgba(0,0,0,.18);
}

img{
  max-width:100%;
  height:auto;
}


main,
header,
section,
footer,
form,
.contact-card,
.hero-content,
.section-copy,
.section-heading,
.card,
.stats div,
.benefits div,
.doc-list li{
  max-width:100%;
  min-width:0;
}

p,
h1,
h2,
h3,
a,
span,
li,
input,
textarea,
button{
  overflow-wrap:anywhere;
}

@media(max-width:980px){
  .grid,
  .small,
  .list,
  .stats,
  .contact{
    grid-template-columns:1fr;
  }

  .header{
    flex-direction:column;
    gap:16px;
  }

  .nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
  }

  .hero{
    min-height:auto;
    padding-top:120px;
  }

  .hero h1{
    font-size:48px;
  }

  .section{
    padding:58px 5%;
  }

  .section h2{
    font-size:40px;
  }

  .section-copy p,
  .section > p,
  .contact p{
    font-size:18px;
  }

  .product-image{
    height:220px;
  }
}


@media(max-width:520px){
  .header{
    padding:12px 16px;
  }

  .brand{
    max-width:100%;
  }

  .brand-logo{
    width:48px;
    height:48px;
    flex:0 0 auto;
  }

  .brand-text strong{
    font-size:17px;
    letter-spacing:.14em;
  }

  .brand-text small{
    letter-spacing:.18em;
  }

  .nav{
    width:100%;
    gap:12px 14px;
  }

  .nav a{
    font-size:14px;
  }

  .hero{
    padding-left:16px;
    padding-right:16px;
  }

  .hero::after{
    right:0;
    width:180px;
    height:180px;
    opacity:.55;
  }

  .actions{
    width:100%;
  }

  .actions .btn{
    width:100%;
  }

  .float{
    right:12px;
    bottom:12px;
    padding:13px 18px;
    font-size:15px;
    max-width:calc(100% - 24px);
  }

  .hero,
  .section,
  footer{
    width:100%;
    max-width:100%;
    overflow:hidden;
  }

  .hero-badges span,
  .btn,
  input,
  textarea{
    max-width:100%;
  }
}

@media(max-width:380px){
  .brand{
    gap:10px;
  }

  .brand-text strong{
    font-size:15px;
    letter-spacing:.10em;
  }

  .brand-text small{
    font-size:10px;
    letter-spacing:.12em;
  }

  .nav{
    gap:10px;
  }

  .nav a{
    font-size:13px;
  }
}

html,
body{
  overflow-x:hidden;
}

@media (max-width:980px){
  .hero::after{
    display:none;
  }
}