:root{
  --bg:#03070d;
  --bg-soft:#07111b;
  --panel:#0a1521;
  --panel2:#0d1a28;
  --gold:#f6b51f;
  --gold2:#ffd86d;
  --blue:#60c8ff;
  --text:#f7f8fb;
  --muted:#aeb9c7;
  --line:#2a3b50;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,Arial,Helvetica,sans-serif;
  line-height:1.55;
}
a{text-decoration:none;color:inherit}
.topbar{
  height:80px;
  display:flex;
  align-items:center;
  gap:28px;
  padding:0 4vw;
  background:rgba(3,7,13,.97);
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid #152131;
}
.brand{display:flex;align-items:center;gap:12px;margin-right:auto}
.brand-badge{
  width:48px;height:48px;border:1px solid var(--gold);border-radius:50%;
  display:grid;place-items:center;background:#08121c;font-size:21px;
}
.brand-text strong{display:block;font-family:Georgia,'Times New Roman',serif;letter-spacing:.1em;font-size:21px}
.brand-text small{display:block;color:#d2d9e2;font-size:10px;letter-spacing:.09em}
.nav{display:flex;gap:26px;font-size:14px}
.nav a:hover{color:var(--gold)}
.quote-top{
  padding:14px 18px;border:1px solid var(--gold);border-radius:8px;
  color:var(--gold);text-transform:uppercase;font-weight:800;font-size:13px;
}
.menu-toggle{display:none;background:none;border:0;color:white;font-size:28px}

.hero{
  min-height:760px;
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-image:url('assets/hero-desktop.webp');
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}
.hero-shade{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg,rgba(2,6,11,.18),rgba(2,6,11,.25) 58%,rgba(2,6,11,.82)),
    radial-gradient(circle at center,rgba(2,6,11,.08),rgba(2,6,11,.44) 78%);
}
.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:1020px;
  padding:90px 25px 70px;
}
.hero-logo{
  width:130px;height:130px;margin:0 auto 18px;
  display:grid;place-items:center;border-radius:50%;
  border:3px solid var(--gold);
  background:rgba(4,9,15,.82);
  font-size:46px;
  box-shadow:0 0 38px rgba(246,181,31,.38);
}
.eyebrow{
  margin:0 0 16px;
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.18em;
}
.eyebrow::before,.eyebrow::after{
  content:"";display:inline-block;width:30px;height:2px;background:var(--gold);
  vertical-align:middle;margin:0 12px;
}
h1,h2,h3{margin-top:0}
h1{
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(54px,7vw,92px);
  line-height:.98;
  text-transform:uppercase;
  margin:14px 0 24px;
  font-weight:500;
  text-shadow:0 5px 30px #000;
}
h1 span,h1 em{display:block}
h1 em{font-style:normal;color:var(--gold)}
.trade-line{
  display:flex;justify-content:center;gap:36px;flex-wrap:wrap;
  padding:16px 0;border-block:1px solid rgba(255,255,255,.22);
  text-transform:uppercase;font-weight:800;letter-spacing:.05em;
}
.hero-copy{
  max-width:690px;margin:22px auto 0;color:#e2e8ef;font-size:18px;
}
.hero-actions{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.button{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:8px;
  text-transform:uppercase;
  font-weight:900;
  font-size:14px;
  transition:transform .2s,filter .2s;
}
.button:hover{transform:translateY(-2px);filter:brightness(1.08)}
.primary{background:linear-gradient(135deg,#ffc928,#f49a00);color:#111;border:1px solid transparent}
.secondary{background:rgba(4,10,17,.76);border:1px solid var(--gold)}

.zone-strip{
  max-width:1180px;
  margin:38px auto 0;
  padding:20px 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px 20px;
  flex-wrap:wrap;
  background:#07111b;
  border:1px solid var(--line);
  border-radius:10px;
  color:#d8e0e9;
}
.zone-strip strong{
  color:white;
  margin-right:10px;
  white-space:nowrap;
}
.zone-strip span{
  position:relative;
  padding-left:15px;
  white-space:nowrap;
}
.zone-strip span::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--gold);
}

.benefits{
  max-width:1120px;
  margin:34px auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#07111b;
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
}
.benefits article{
  min-height:160px;
  padding:28px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-right:1px solid var(--line);
}
.benefits article:last-child{border-right:0}
.benefits span{font-size:34px;margin-bottom:10px}
.benefits strong{font-family:Georgia,'Times New Roman',serif;font-size:19px}
.benefits small{color:var(--muted);margin-top:4px}

.section{padding:100px 6vw}
.services{background:radial-gradient(circle at 20% 0,#101b29,transparent 36%),var(--bg)}
.section-head{max-width:900px;margin:0 auto 52px;text-align:center}
.section-head h2{
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(42px,5vw,68px);
  line-height:1.06;
  text-transform:uppercase;
  font-weight:500;
  margin:8px 0 18px;
}
.section-head h2 em{font-style:normal;color:var(--gold)}
.section-head>p:last-child{color:var(--muted);font-size:18px}
.service-grid{
  max-width:1140px;margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-grid article{
  min-height:245px;
  padding:32px 26px;
  text-align:center;
  background:linear-gradient(180deg,var(--panel2),#070d14);
  border:1px solid #334a62;
  border-radius:12px;
  box-shadow:0 14px 42px rgba(0,0,0,.36);
}
.service-grid article:nth-child(odd){border-color:#6a521c}
.service-grid article>span{font-size:42px}
.service-grid h3{
  margin:15px 0 12px;
  font-family:Georgia,'Times New Roman',serif;
  font-size:24px;
  text-transform:uppercase;
  font-weight:500;
}
.service-grid p{color:var(--muted);margin:0}

.sector{
  padding:72px 7vw;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:35px;
  background:linear-gradient(90deg,#0a1521,#050b12);
  border-block:1px solid var(--line);
}
.sector>div{max-width:780px}
.sector h2{
  font-family:Georgia,'Times New Roman',serif;
  font-size:48px;
  font-weight:500;
  margin:8px 0 12px;
}
.sector p{color:var(--muted);font-size:17px}

.contact{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:52px;
  background:#050b12;
}
.contact-copy h2{
  font-family:Georgia,'Times New Roman',serif;
  font-size:52px;
  font-weight:500;
  margin:10px 0;
}
.contact-copy p{color:var(--muted)}
.contact-links{display:grid;gap:12px;margin-top:26px}
.contact-links a{
  padding:14px;
  border:1px solid var(--line);
  background:#08131f;
  border-radius:7px;
}
.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  padding:28px;
  background:#08131f;
  border:1px solid var(--line);
  border-radius:12px;
}
label{display:grid;gap:7px;font-weight:700}
input,select,textarea{
  width:100%;
  background:#030912;
  border:1px solid #32465f;
  border-radius:6px;
  color:white;
  padding:13px;
  font:inherit;
}
.full{grid-column:1/-1}

footer{
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  padding:30px;
  color:#a4afbb;
  border-top:1px solid var(--line);
}
.floating-call,.floating-whatsapp{
  position:fixed;right:17px;width:52px;height:52px;border-radius:50%;
  display:grid;place-items:center;z-index:70;box-shadow:0 8px 25px #0009;
}
.floating-call{bottom:80px;background:var(--gold);color:#111}
.floating-whatsapp{bottom:17px;background:#25d366}

@media(max-width:900px){
  .nav,.quote-top{display:none}
  .menu-toggle{display:block}
  .nav.open{
    display:flex;
    position:absolute;
    top:80px;
    left:0;
    right:0;
    flex-direction:column;
    padding:22px;
    background:#03070d;
  }
  .hero-actions{grid-template-columns:1fr}
  .benefits{grid-template-columns:1fr 1fr}
  .service-grid{grid-template-columns:1fr 1fr}
  .contact{grid-template-columns:1fr}
}

@media(max-width:700px){
  .topbar{height:68px;padding:0 14px}
  .brand-badge{width:42px;height:42px}
  .brand-text strong{font-size:17px}
  .hero{min-height:820px}
  .hero-bg{
    background-image:url('assets/hero-mobile.webp');
    background-position:center;
  }
  .hero-content{padding:60px 18px 48px}
  .hero-logo{width:96px;height:96px;font-size:34px}
  .eyebrow{font-size:10px}
  .eyebrow::before,.eyebrow::after{width:16px;margin:0 6px}
  h1{font-size:44px}
  .trade-line{gap:10px;flex-direction:column}
  .hero-copy{font-size:16px}
  .zone-strip{
    margin:24px 14px 0;
    padding:18px 16px;
    justify-content:flex-start;
    gap:10px 16px;
  }
  .zone-strip strong{
    width:100%;
    margin-right:0;
  }
  .benefits{grid-template-columns:1fr;margin-top:24px;border-radius:0}
  .benefits article{border-right:0;border-bottom:1px solid var(--line)}
  .benefits article:last-child{border-bottom:0}
  .service-grid{grid-template-columns:1fr}
  .sector{flex-direction:column;align-items:flex-start}
  .contact-form{grid-template-columns:1fr}
  .full{grid-column:auto}
  .section{padding:72px 20px}
}
