:root{
  --bg:#050505;
  --bg2:#0b0b0b;
  --fg:#f2f2f2;
  --muted:#bdbdbd;
  --line:rgba(255,255,255,.10);
  --card:#111;
  --card2:#0f0f0f;
  --white:#ffffff;

  --max: 1120px;
  --pad: 28px;
  --radius: 18px;

  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: radial-gradient(1200px 600px at 50% -10%, rgba(255,255,255,.06), transparent 60%),
              linear-gradient(180deg, #000, var(--bg) 40%, #000);
  color:var(--fg);
  font-family:var(--sans);
}

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

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}

.topbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:50;
  background: linear-gradient(180deg, rgba(0,0,0,.70), rgba(0,0,0,.25) 55%, rgba(0,0,0,0));
  backdrop-filter: blur(6px);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand img{
  width:54px; height:auto;
  display:block;
}
.brand .wordmark{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand .wordmark strong{
  font-family:var(--serif);
  letter-spacing:.3px;
  font-size:18px;
}
.brand .wordmark span{
  font-size:11px;
  color:var(--muted);
  letter-spacing:.8px;
  text-transform:uppercase;
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:14px;
  letter-spacing:.3px;
}
.nav a{
  padding:10px 2px;
  border-bottom:1px solid transparent;
}
.nav a.active{
  border-bottom:1px solid rgba(255,255,255,.55);
}
.nav a:hover{
  border-bottom:1px solid rgba(255,255,255,.25);
}

.lang{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:18px;
  font-size:13px;
  color:var(--muted);
}
.lang a{
  color:var(--muted);
  padding:8px 8px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
}
.lang a.current{
  color:#fff;
  border-color: rgba(255,255,255,.38);
}

.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.35);
  color:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mobile-panel{
  display:none;
  border-top:1px solid rgba(255,255,255,.10);
  padding:14px var(--pad) 18px;
  background:rgba(0,0,0,.58);
}
.mobile-panel a{
  display:block;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:15px;
}
.mobile-panel .row{
  display:flex; gap:10px; padding-top:12px;
}

main{
  padding-top:92px;
}

.hero{
  padding:74px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:42px;
  align-items:center;
}
.quote{
  font-family:var(--serif);
  font-size:34px;
  line-height:1.12;
  letter-spacing:.2px;
  max-width:720px;
}
.quote small{
  display:block;
  margin-top:14px;
  font-family:var(--sans);
  color:var(--muted);
  font-size:14px;
  letter-spacing:.2px;
}
.hero-img{
  width:100%;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
}
.hero-img img{
  width:100%;
  height:auto;
  display:block;
}

.section{
  padding:62px 0;
}
.section-title{
  font-family:var(--serif);
  font-size:46px;
  letter-spacing:.4px;
  margin:0 0 18px;
}
.section-sub{
  color:var(--muted);
  max-width:820px;
  line-height:1.75;
  font-size:16px;
}

.divider{
  margin:36px 0 0;
  height:1px;
  background:rgba(255,255,255,.12);
  max-width:var(--max);
}

.story h2{
  font-family:var(--serif);
  font-size:40px;
  margin:0 0 16px;
}
.story p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.85;
  font-size:16px;
}

.ref-grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap:34px;
  align-items:center;
  margin-top:26px;
}
.ref-photo{
  width:100%;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:var(--card2);
}
.ref-photo img{width:100%; height:auto; display:block}
.ref-quote{
  padding:22px 22px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background:rgba(255,255,255,.03);
}
.ref-quote blockquote{
  margin:0;
  font-family:var(--serif);
  font-size:28px;
  line-height:1.2;
}
.ref-quote .who{
  margin-top:14px;
  color:var(--muted);
  line-height:1.6;
}

.logos{
  display:flex;
  align-items:center;
  gap:44px;
  flex-wrap:wrap;
  padding-top:22px;
}
.logos img{
  height:34px;
  width:auto;
  opacity:.92;
  filter: grayscale(100%) contrast(1.05);
}
.logos img.png{
  height:42px;
  filter:none;
  opacity:.95;
}

.cards-wrap{
  margin-top:22px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
}
.carousel{
  display:flex;
  gap:14px;
  overflow:auto;
  padding-bottom:8px;
  scroll-snap-type:x mandatory;
}
.carousel::-webkit-scrollbar{height:10px}
.carousel::-webkit-scrollbar-thumb{background:rgba(255,255,255,.12); border-radius:99px}
.card{
  min-width: 320px;
  max-width: 360px;
  scroll-snap-align:start;
  padding:18px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.stars{
  letter-spacing:2px;
  font-size:14px;
  color:#ffd36a;
}
.card .name{
  margin-top:10px;
  font-weight:600;
}
.card .meta{
  margin-top:6px;
  color:var(--muted);
  font-size:12px;
}
.card .text{
  margin-top:12px;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
  white-space:pre-line;
}

.side-cta{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:22px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.side-cta h3{
  font-family:var(--serif);
  font-size:28px;
  margin:0 0 10px;
}
.side-cta p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.30);
}
.btn.primary{
  background:#fff;
  color:#000;
  border-color:#fff;
}
.btn.primary:hover{
  background:#f2f2f2;
}

.page-head{
  padding:44px 0 18px;
}
.page-head h1{
  font-family:var(--serif);
  font-size:56px;
  margin:0 0 12px;
}
.page-head p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  max-width:820px;
}

.form-shell{
  margin:18px 0 0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background: rgba(255,255,255,.03);
  padding:18px;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.field label{
  display:block;
  font-size:13px;
  color:#fff;
  margin:0 0 8px;
}
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background:#fff;
  color:#000;
  outline:none;
  font-size:14px;
}
.field textarea{min-height:110px; resize:vertical}

.field .hint{
  margin-top:8px;
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}

.hr{
  height:1px;
  background:rgba(255,255,255,.10);
  margin:18px 0;
}

.checkbox-cols{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:18px;
}
.checkbox-cols h4{
  margin:0 0 10px;
  font-size:14px;
  font-weight:600;
}
.chk{
  display:flex; align-items:flex-start; gap:10px;
  margin:10px 0;
  color:var(--muted);
  font-size:14px;
}
.chk input{margin-top:3px}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:66px;
  padding:26px 0 40px;
  color:var(--muted);
  font-size:13px;
}
.footer a{color:var(--muted); text-decoration:underline}
.footer .row{
  display:flex; gap:18px; flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:22px}
  .quote{font-size:28px}
  .ref-grid{grid-template-columns:1fr}
  .cards-wrap{grid-template-columns:1fr}
  .checkbox-cols{grid-template-columns:1fr}
  .nav{display:none}
  .burger{display:flex}
  .brand{min-width:auto}
}

@media (max-width: 560px){
  .section-title{font-size:38px}
  .page-head h1{font-size:44px}
  .form-grid{grid-template-columns:1fr}
  .container{padding:0 18px}
}