:root{
  --vm-bg:#0f1012;
  --vm-surface:#17191d;
  --vm-surface-2:#1e2126;
  --vm-white:#ffffff;
  --vm-text:#d7dbe2;
  --vm-muted:#9ca4af;
  --vm-line:rgba(255,255,255,.09);
  --vm-gold:#d6972d;
  --vm-gold-2:#f0b34d;
  --vm-light:#f6f6f7;
  --vm-dark:#111214;
  --vm-shadow:0 18px 40px rgba(0,0,0,.18);
  --vm-radius:24px;
  --vm-radius-sm:16px;
  --vm-shell:1200px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body.vm-page{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--vm-white);
  background:var(--vm-light);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.vm-shell{
  width:min(calc(100% - 40px), var(--vm-shell));
  margin:0 auto;
}

.vm-topbar{
  background:#0b0c0e;
  color:rgba(255,255,255,.88);
  font-size:13px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.vm-topbar__inner{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.vm-topbar__social,
.vm-topbar__info{
  display:flex;
  align-items:center;
  gap:18px;
}

.vm-topbar__social a{
  color:rgba(255,255,255,.84);
  font-weight:700;
  text-transform:lowercase;
  transition:color .25s ease, transform .25s ease;
}

.vm-topbar__social a:hover{
  color:var(--vm-gold-2);
  transform:translateY(-1px);
}

.vm-topbar__info span{
  color:rgba(255,255,255,.84);
}

.vm-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.vm-header__inner{
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.vm-brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}

.vm-brand img{
  width:auto;
  max-width:240px;
  max-height:56px;
  object-fit:contain;
}

.vm-menu-btn{
  display:none;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  color:#111;
  width:42px;
  height:42px;
  border-radius:10px;
  cursor:pointer;
  font-size:20px;
}

.vm-nav{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.vm-nav a{
  position:relative;
  color:#17181a;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  transition:color .25s ease;
}

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

.vm-nav a:hover,
.vm-nav a.is-active{
  color:var(--vm-gold);
}

.vm-nav a:hover::after,
.vm-nav a.is-active::after{
  width:100%;
}

.vm-hero{
  position:relative;
  min-height:72vh;
  display:grid;
  align-items:center;
  overflow:hidden;
  background:#111;
}

.vm-hero__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.06);
  animation:vmHeroZoom 14s ease-in-out infinite alternate;
}

.vm-hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.46) 38%, rgba(0,0,0,.72) 100%);
}

.vm-hero__content{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:110px 0 90px;
}

.vm-kicker{
  display:inline-flex;
  align-items:center;
  padding:10px 15px;
  border-radius:999px;
  margin-bottom:18px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.vm-kicker--dark{
  background:rgba(214,151,45,.08);
  border:1px solid rgba(214,151,45,.16);
  color:#bf7f16;
}

.vm-hero h1{
  margin:0 0 18px;
  font-size:clamp(2.5rem, 5vw, 5rem);
  line-height:.98;
  font-weight:800;
  letter-spacing:-.03em;
  max-width:900px;
  color:#fff;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
}

.vm-hero p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.88);
  font-size:18px;
  line-height:1.85;
}

.vm-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.vm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

.vm-btn--gold{
  color:#111;
  background:linear-gradient(135deg, var(--vm-gold), var(--vm-gold-2));
  box-shadow:0 14px 28px rgba(214,151,45,.28);
}

.vm-btn--gold:hover{
  box-shadow:0 18px 35px rgba(214,151,45,.35);
}

.vm-btn--ghost{
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.vm-btn--ghost:hover{
  background:rgba(255,255,255,.14);
}

.vm-section{
  padding:96px 0;
}

.vm-section--compact{
  padding-top:56px;
}

.vm-section--light{
  background:var(--vm-light);
  color:#111;
}

.vm-section--dark{
  background:
    radial-gradient(circle at top right, rgba(214,151,45,.16) 0%, rgba(214,151,45,0) 28%),
    linear-gradient(180deg, #111214 0%, #17191d 100%);
  color:#fff;
}

.vm-section-head{
  max-width:850px;
  margin:0 auto 38px;
  text-align:center;
}

.vm-section-head h2{
  margin:0 0 16px;
  font-size:clamp(2rem, 4vw, 3.4rem);
  line-height:1.06;
  letter-spacing:-.03em;
}

.vm-section-head p{
  margin:0 auto;
  max-width:760px;
  color:#5f6670;
  font-size:17px;
  line-height:1.9;
}

.vm-grid{
  display:grid;
  gap:26px;
}

.vm-grid--3{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.vm-service-card{
  position:relative;
  overflow:hidden;
  min-height:100%;
  padding:30px;
  border-radius:var(--vm-radius);
  background:linear-gradient(180deg, #17191d 0%, #202329 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.07);
  box-shadow:var(--vm-shadow);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.vm-service-card::before{
  content:"";
  position:absolute;
  inset:-80% auto auto -30%;
  width:60%;
  height:220%;
  transform:rotate(22deg);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transition:transform .9s ease;
}

.vm-service-card:hover{
  transform:translateY(-10px);
  border-color:rgba(214,151,45,.28);
  box-shadow:0 24px 46px rgba(0,0,0,.22);
}

.vm-service-card:hover::before{
  transform:rotate(22deg) translateX(260%);
}

.vm-service-card__icon{
  width:60px;
  height:60px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  border-radius:18px;
  background:linear-gradient(135deg, var(--vm-gold), var(--vm-gold-2));
  color:#111;
  font-size:26px;
  box-shadow:0 12px 26px rgba(214,151,45,.25);
}

.vm-service-card h3{
  margin:0 0 14px;
  font-size:24px;
  line-height:1.2;
}

.vm-service-card p{
  margin:0 0 18px;
  color:rgba(255,255,255,.82);
  line-height:1.85;
  font-size:15px;
}

.vm-service-card ul{
  margin:0;
  padding-left:18px;
  color:rgba(255,255,255,.74);
  line-height:1.85;
  font-size:15px;
}

.vm-project-card{
  overflow:hidden;
  border-radius:var(--vm-radius);
  background:#fff;
  color:#111;
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 16px 34px rgba(0,0,0,.08);
  transition:transform .35s ease, box-shadow .35s ease;
}

.vm-project-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 46px rgba(0,0,0,.14);
}

.vm-project-card__image{
  position:relative;
  height:260px;
  overflow:hidden;
}

.vm-project-card__image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.12) 100%);
}

.vm-project-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.vm-project-card:hover .vm-project-card__image img{
  transform:scale(1.08);
}

.vm-project-card__body{
  padding:24px 24px 28px;
}

.vm-tag{
  display:inline-flex;
  align-items:center;
  padding:8px 13px;
  border-radius:999px;
  margin-bottom:14px;
  background:rgba(214,151,45,.12);
  color:#b97712;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.vm-project-card h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.2;
}

.vm-project-card p{
  margin:0;
  color:#616872;
  line-height:1.85;
  font-size:15px;
}

.vm-split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.vm-split__text h2{
  margin:0 0 16px;
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.05;
  letter-spacing:-.03em;
}

.vm-split__text p{
  margin:0 0 26px;
  color:rgba(255,255,255,.8);
  line-height:1.9;
  font-size:17px;
}

.vm-split__panel{
  display:grid;
  gap:18px;
}

.vm-stat{
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  box-shadow:var(--vm-shadow);
}

.vm-stat strong{
  display:block;
  margin-bottom:8px;
  font-size:22px;
  color:#fff;
}

.vm-stat span{
  display:block;
  color:rgba(255,255,255,.75);
  line-height:1.8;
}

.vm-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:34px;
  border-radius:28px;
  background:linear-gradient(135deg, #121316 0%, #1c1f25 100%);
  color:#fff;
  box-shadow:var(--vm-shadow);
}

.vm-cta h2{
  margin:10px 0 10px;
  font-size:clamp(1.8rem, 4vw, 2.8rem);
  line-height:1.08;
}

.vm-cta p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.8);
  line-height:1.85;
}

.vm-reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .8s ease, transform .8s ease;
}

.vm-reveal.is-visible{
  opacity:1;
  transform:none;
}

@keyframes vmHeroZoom{
  from{ transform:scale(1.04); }
  to{ transform:scale(1.11); }
}

@media (max-width: 1100px){
  .vm-grid--3{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .vm-split{
    grid-template-columns:1fr;
  }

  .vm-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .vm-nav{
    gap:18px;
  }
}

@media (max-width: 820px){
  .vm-topbar__inner{
    flex-direction:column;
    justify-content:center;
    padding:10px 0;
  }

  .vm-header__inner{
    min-height:82px;
  }

  .vm-menu-btn{
    display:inline-grid;
    place-items:center;
  }

  .vm-nav{
    position:absolute;
    top:100%;
    left:20px;
    right:20px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:14px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    border:1px solid rgba(0,0,0,.06);
  }

  .vm-nav.is-open{
    display:flex;
  }

  .vm-nav a{
    width:100%;
    padding:14px 10px;
    border-bottom:1px solid rgba(0,0,0,.06);
  }

  .vm-nav a:last-child{
    border-bottom:none;
  }

  .vm-nav a::after{
    display:none;
  }

  .vm-hero{
    min-height:66vh;
  }

  .vm-hero__content{
    padding:90px 0 70px;
  }

  .vm-grid--3{
    grid-template-columns:1fr;
  }

  .vm-section{
    padding:76px 0;
  }

  .vm-project-card__image{
    height:230px;
  }

  .vm-brand img{
    max-width:180px;
    max-height:48px;
  }
}

@media (max-width: 560px){
  .vm-shell{
    width:min(calc(100% - 28px), var(--vm-shell));
  }

  .vm-topbar__social,
  .vm-topbar__info{
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .vm-hero h1{
    font-size:clamp(2rem, 10vw, 3rem);
  }

  .vm-hero p,
  .vm-section-head p,
  .vm-split__text p,
  .vm-cta p{
    font-size:15px;
  }

  .vm-service-card,
  .vm-project-card__body,
  .vm-stat,
  .vm-cta{
    padding:22px;
  }
}