
:root{
  --bg:#0e1117;
  --bg-2:#151a23;
  --bg-3:#1b212c;
  --panel:rgba(255,255,255,.04);
  --panel-2:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.08);
  --gold:#d6a55d;
  --gold-2:#f0d29e;
  --text:#f7efe4;
  --muted:#c6b79f;
  --muted-2:#a79579;
  --shadow:0 24px 70px rgba(0,0,0,.35);
  --radius:28px;
  --container:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(214,165,93,.14), transparent 18%),
    linear-gradient(180deg,#0a0d12 0%, #141923 100%);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(calc(100% - 32px),var(--container));margin:0 auto}
.site-bg{
  position:fixed; inset:auto auto 0 0; width:36vw; height:36vw;
  border-radius:50%; filter:blur(90px); z-index:-1; pointer-events:none;
}
.site-bg-a{left:-12vw; top:8vh; background:rgba(214,165,93,.08)}
.site-bg-b{right:-10vw; top:28vh; background:rgba(240,210,158,.05)}

.topbar{
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.02);
}
.topbar-inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:var(--muted);
  font-size:13px;
}

.site-header{
  position:sticky; top:0; z-index:80;
  background:rgba(10,13,18,.82);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-wrap{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  flex-direction:column;
  gap:6px;
  line-height:1;
}
.brand-logo{max-height:54px; max-width:220px; object-fit:contain}
.brand-top{
  color:var(--gold-2);
  font-size:13px;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.brand-main{
  color:var(--gold);
  font-size:34px;
  font-weight:900;
  letter-spacing:.08em;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:8px;
}
.main-nav a{
  padding:12px 14px;
  border-radius:999px;
  color:var(--muted);
  transition:.2s ease;
}
.main-nav a:hover{
  background:rgba(255,255,255,.05);
  color:#fff;
}
.main-nav .nav-cta{
  background:rgba(214,165,93,.12);
  color:var(--gold-2);
  border:1px solid rgba(214,165,93,.18);
}
.nav-toggle{
  display:none;
  width:52px;height:52px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:0; cursor:pointer;
}
.nav-toggle span{
  display:block; width:22px; height:2px; margin:5px auto;
  background:#fff; border-radius:2px;
}

.section{padding:88px 0}
.hero{padding-top:76px}
.hero-grid{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:34px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:13px;
  font-weight:900;
}
h1,h2,h3{line-height:1.08; margin:0 0 14px}
h1{font-size:clamp(40px,5vw,72px)}
h2{font-size:clamp(30px,3vw,48px)}
h3{font-size:clamp(21px,2vw,27px)}
.lead,.panel-lead{
  color:var(--muted);
  font-size:clamp(17px,1.7vw,21px);
  max-width:760px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:30px 0 22px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-full{width:100%}
.btn-primary{
  background:linear-gradient(180deg,var(--gold-2),var(--gold));
  color:#1f170d;
  box-shadow:0 16px 30px rgba(214,165,93,.22);
}
.btn-secondary{
  background:rgba(255,255,255,.05);
  color:#fff;
  border-color:rgba(255,255,255,.08);
}
.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:20px;
}
.hero-pills span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  color:var(--muted);
  font-size:14px;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.hero-stat{
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}
.hero-stat strong{
  display:block;
  margin-bottom:4px;
}
.hero-stat span{color:var(--muted); font-size:14px}

.hero-visual{
  position:relative;
  min-height:590px;
}
.visual-card{
  position:absolute;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(214,165,93,.1), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.visual-card img{width:100%; height:100%; object-fit:cover}
.visual-card-main{
  left:0; top:34px; width:72%; height:480px;
}
.visual-card-top{
  right:0; top:0; width:40%; height:220px;
}
.visual-card-bottom{
  right:0; bottom:0; width:48%; height:238px;
}

.metrics{padding-top:12px}
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.metric-card{
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}
.metric-card strong{
  display:block;
  margin-bottom:6px;
  font-size:18px;
}
.metric-card span{color:var(--muted)}

.section-soft{
  background:linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-dark{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{
  max-width:820px;
  margin-bottom:36px;
}
.section-head.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.section-head.narrow{max-width:700px}
.section-head p:last-child{color:var(--muted)}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-card{
  padding:24px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(214,165,93,.08), transparent 22%),
    rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  box-shadow:var(--shadow);
}
.service-icon{
  width:62px; height:62px;
  display:grid; place-items:center;
  border-radius:18px;
  background:rgba(214,165,93,.14);
  margin-bottom:14px;
  font-size:30px;
}
.service-card p{margin:0; color:var(--muted)}

.split-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}
.panel-card,
.contact-card{
  padding:28px;
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(214,165,93,.1), transparent 24%),
    rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  box-shadow:var(--shadow);
}
.step-list{
  display:grid;
  gap:14px;
  margin-top:20px;
}
.step-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}
.step-row span{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:14px;
  background:rgba(214,165,93,.14);
  color:var(--gold-2);
  font-weight:900;
  flex:0 0 auto;
}
.step-row p{margin:6px 0 0; color:var(--muted)}
.panel-image-card{position:relative; overflow:hidden}
.panel-image{width:100%; border-radius:20px}
.image-badge{
  position:absolute;
  left:20px; bottom:20px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(10,13,18,.78);
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  font-size:14px;
}

.flow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.flow-card{
  padding:24px;
  border-radius:26px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  box-shadow:var(--shadow);
}
.flow-no{
  width:46px;height:46px;
  display:grid; place-items:center;
  border-radius:16px;
  background:rgba(214,165,93,.14);
  color:var(--gold-2);
  font-weight:900;
  margin-bottom:14px;
}
.flow-card p{margin:0; color:var(--muted)}

.showcase-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.showcase-card{
  overflow:hidden;
  border-radius:28px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  box-shadow:var(--shadow);
}
.showcase-card img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit:cover;
}
.showcase-copy{padding:22px}
.showcase-copy p{margin:0; color:var(--muted)}

.trust-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}
.trust-list{
  display:grid;
  gap:12px;
}
.trust-list div{
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}
.trust-list strong{
  display:block;
  margin-bottom:4px;
}
.trust-list span{color:var(--muted)}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
}
.contact-list{
  display:grid;
  gap:12px;
  margin-top:22px;
}
.contact-list div{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
}
.contact-list strong{
  display:block;
  margin-bottom:4px;
}
.contact-list span{color:var(--muted)}

.contact-form{
  display:grid;
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
label{
  display:block;
  margin-bottom:6px;
  font-size:14px;
  color:var(--muted);
}
input,select,textarea{
  width:100%;
  min-height:50px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05);
  color:#fff;
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input::placeholder,textarea::placeholder{color:#b7a88e}
.alert{
  padding:14px 16px;
  border-radius:16px;
  margin-bottom:16px;
  font-weight:700;
}
.alert-success{
  background:rgba(78,196,134,.18);
  border:1px solid rgba(78,196,134,.28);
  color:#ddffeb;
}
.alert-error{
  background:rgba(216,104,104,.18);
  border:1px solid rgba(216,104,104,.28);
  color:#ffdada;
}

.site-footer{
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .7fr .7fr;
  gap:22px;
  padding:24px 0;
}
.footer-brand{display:flex; flex-direction:column; gap:6px; line-height:1}
.footer-logo{max-height:46px; max-width:220px; object-fit:contain}
.site-footer p,.site-footer a,.site-footer li{color:var(--muted)}
.site-footer ul{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  display:grid;
  gap:10px;
}
.footer-bottom{
  padding:16px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.06);
  color:var(--muted-2);
}

.mobile-sticky{display:none}

@media (max-width: 1100px){
  .hero-grid,
  .split-grid,
  .trust-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }
  .hero-stats,
  .metrics-grid,
  .services-grid,
  .flow-grid,
  .showcase-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .hero-visual{min-height:440px}
  .visual-card-main{width:66%; height:380px}
  .visual-card-top{width:40%; height:180px}
  .visual-card-bottom{width:46%; height:180px}
}
@media (max-width: 820px){
  .topbar-inner{
    justify-content:center;
    text-align:center;
  }
  .nav-toggle{display:block}
  .main-nav{
    position:absolute;
    top:84px;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:14px;
    border-radius:24px;
    background:rgba(11,14,19,.97);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:var(--shadow);
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:14px 16px}
  .section{padding:62px 0}
  .hero{padding-top:56px}
  .hero-visual{
    min-height:auto;
    display:grid;
    gap:14px;
  }
  .visual-card{
    position:relative;
    width:100% !important;
    height:auto !important;
    left:auto !important; right:auto !important; top:auto !important; bottom:auto !important;
  }
  .hero-stats,
  .metrics-grid,
  .services-grid,
  .flow-grid,
  .showcase-grid,
  .grid-2,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .brand-main{font-size:28px}
  .mobile-sticky{
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:90;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    padding:10px;
    border-radius:24px;
    background:rgba(11,14,19,.95);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    box-shadow:var(--shadow);
  }
  .mobile-sticky a{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    font-weight:800;
    text-align:center;
    font-size:14px;
  }
  .mobile-sticky a:nth-child(1),
  .mobile-sticky a:nth-child(3){
    background:rgba(255,255,255,.05);
    color:#fff;
  }
  .mobile-sticky a:nth-child(2){
    background:linear-gradient(180deg,var(--gold-2),var(--gold));
    color:#1d150b;
  }
  body{padding-bottom:96px}
}
