:root{
  --yellow:#ffdf00;
  --black:#050505;
  --white:#ffffff;
  --soft:#f4f4f4;
  --gray:#777;
  --line:rgba(255,255,255,.14);
  --lineDark:rgba(0,0,0,.1);
  --radius:28px;
  --radius-sm:18px;
  --max:1180px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Arial,Helvetica,sans-serif;background:var(--white);color:var(--black);overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(100% - 32px,var(--max));margin:0 auto}

.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.92);backdrop-filter:blur(18px);border-bottom:1px solid #e8e8e8}
.header-inner{width:min(100% - 32px,var(--max));margin:0 auto;min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:22px}
.logo{font-weight:950;line-height:.85;letter-spacing:-1.5px;font-size:28px;text-transform:uppercase}
.logo span{display:block;color:var(--yellow)}
.main-nav{display:flex;align-items:center;gap:18px;font-size:13px;font-weight:900}
.main-nav a{opacity:.82;white-space:nowrap}.main-nav a:hover{opacity:1}
.header-actions{display:flex;align-items:center;gap:10px}
.lang-switch{display:flex;gap:6px;padding:4px;border-radius:999px;background:#f0f0f0;font-size:12px;font-weight:900}
.lang-switch a{padding:8px 10px;border-radius:999px}.lang-switch a.active{background:var(--black);color:var(--white)}
.mobile-toggle{display:none;width:46px;height:46px;border-radius:999px;border:0;background:var(--black);color:var(--white);font-size:22px;font-weight:900}
.mobile-panel{display:none;border-top:1px solid #eee;background:var(--white)}.mobile-panel.open{display:block}.mobile-panel a{display:block;padding:16px 22px;font-weight:900;border-bottom:1px solid #eee}

.btn{min-height:46px;display:inline-flex;align-items:center;justify-content:center;padding:0 22px;border-radius:999px;border:2px solid transparent;font-weight:950;cursor:pointer;transition:.2s ease;white-space:nowrap}
.btn:hover{transform:translateY(-1px)}.btn-yellow{background:var(--yellow);color:var(--black)}.btn-dark{background:var(--black);color:var(--white)}.btn-outline-white{color:var(--white);border-color:rgba(255,255,255,.5);background:rgba(255,255,255,.05)}

.section{padding:88px 0}.section-soft{background:var(--soft)}.section-dark{background:var(--black);color:var(--white)}
.section-title{font-size:clamp(40px,6vw,82px);line-height:.92;letter-spacing:-3px;margin-bottom:18px;text-transform:uppercase}
.section-text{color:var(--gray);max-width:720px;font-size:19px;line-height:1.55;margin-bottom:34px}.section-dark .section-text{color:#cfcfcf}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:28px;margin-bottom:34px}
.kicker{display:inline-flex;align-items:center;gap:10px;color:var(--yellow);font-size:13px;font-weight:950;text-transform:uppercase;letter-spacing:.14em;margin-bottom:18px}
.kicker::before{content:"";width:34px;height:3px;background:var(--yellow);border-radius:999px}

.split-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.big-card{border-radius:var(--radius);padding:40px;min-height:380px;display:flex;flex-direction:column;justify-content:space-between;background:var(--soft);border:1px solid #e2e2e2}
.big-card.dark{background:var(--black);color:var(--white);border-color:var(--black)}.big-card.yellow{background:var(--yellow);color:var(--black);border-color:var(--yellow)}
.big-card h2{font-size:clamp(38px,5vw,70px);line-height:.9;letter-spacing:-2px;text-transform:uppercase;margin-bottom:18px}.big-card p{font-size:18px;line-height:1.5;opacity:.8;margin-bottom:24px}

.footer{background:var(--black);color:var(--white);padding:54px 0 90px;border-top:1px solid var(--line)}
.footer-grid{display:grid;grid-template-columns:1.2fr repeat(3,1fr);gap:28px}.footer h3,.footer h4{margin-bottom:14px}.footer p,.footer a{color:#cfcfcf;line-height:1.8;display:block}
.sticky-book{position:fixed;left:14px;right:14px;bottom:14px;z-index:200;display:none;box-shadow:0 14px 40px rgba(0,0,0,.28)}
.whatsapp-float{position:fixed;right:18px;bottom:84px;z-index:210;background:#25D366;color:#fff;border-radius:999px;padding:14px 18px;font-weight:950;box-shadow:0 14px 40px rgba(0,0,0,.25)}

@media(max-width:1100px){.main-nav{display:none}.mobile-toggle{display:inline-flex;align-items:center;justify-content:center}}
@media(max-width:860px){.header-actions>.btn{display:none}.section{padding:68px 0}.section-head,.split-grid,.footer-grid{grid-template-columns:1fr;display:grid}.sticky-book{display:flex}}
@media(max-width:580px){.container,.header-inner{width:min(100% - 24px,var(--max))}.header-inner{min-height:68px}.logo{font-size:23px}.section-title{letter-spacing:-2px}.big-card{padding:26px}.whatsapp-float{right:14px;bottom:76px;font-size:0;width:54px;height:54px;padding:0;display:flex;align-items:center;justify-content:center}.whatsapp-float::after{content:'WA';font-size:14px}}
.hero{
  min-height:calc(100vh - 78px);
  display:flex;
  align-items:center;
  color:var(--white);
  position:relative;
  overflow:hidden;
}

.hero-inner{
  width:min(100% - 32px, var(--max));
  margin:0 auto;
  padding:110px 0;
  position:relative;
  z-index:2;
}

.hero h1{
  max-width:920px;
  font-size:clamp(56px,9vw,124px);
  line-height:.86;
  letter-spacing:-5px;
  margin-bottom:24px;
  text-transform:uppercase;
  color:var(--white);
}

.hero p{
  max-width:760px;
  color:#f2f2f2;
  font-size:clamp(18px,2vw,24px);
  line-height:1.45;
  margin-bottom:30px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:34px;
}

.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.stat-pill{
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.09);
  border-radius:999px;
  font-weight:850;
  color:#fff;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--yellow);
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:18px;
}

.kicker::before{
  content:"";
  width:34px;
  height:3px;
  background:var(--yellow);
  border-radius:999px;
}

.section-footer{
    text-align:center;
    margin-top:40px;
}

.user-pill{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:999px;
  background:#000;
  color:#fff;
  font-weight:950;
  text-decoration:none;
  white-space:nowrap;
}

.user-pill:hover{
  background:#222;
}

