:root{
  --black:#0b0b0d;
  --white:#ffffff;
  --gold:#c9a24f;
  --gold2:#e6c26b;
  --text:#1a1a1a;
  --muted:#6b6b6b;
  --border: rgba(255,255,255,.18);
  --shadow: 0 14px 30px rgba(0,0,0,.12);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial; color:var(--text); }
a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding-left:18px; }
html{ scroll-behavior:smooth; }

.container{ width:min(1200px, calc(100% - 32px)); margin-inline:auto; }

.topbar{
  background: var(--black);
  color: var(--white);
  font-size: 14px;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar__left{ display:flex; align-items:center; gap:10px; }
.topbar__label{ opacity:.85; margin-right:4px; }

.icon-btn{
  width:38px; height:38px;
  display:inline-flex;
  align-items:center; justify-content:center;
  border:1px solid var(--border);
  border-radius:999px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.icon-btn svg{ width:18px; height:18px; fill: var(--gold2); }
.icon-btn:hover{ transform: translateY(-2px) scale(1.03); border-color: rgba(201,162,79,.65); background: rgba(201,162,79,.12); }

.topbar__right{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.chip{
  padding:7px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  color: var(--white);
  opacity:.95;
}
.chip--gold{ border-color: rgba(201,162,79,.65); background: rgba(201,162,79,.12); }

.header{
  position: sticky;
  top:0;
  z-index:100;
  background: rgba(11,11,13,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.header--solid{ background: var(--black); }
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

.brand__logo{ width: 140px; height:auto; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav--simple{ gap:12px; }
.nav__link{
  color: var(--white);
  opacity:.9;
  font-weight:800;
  font-size:14px;
  padding:10px 8px;
  border-radius:12px;
  letter-spacing:.3px;
}
.nav__link:hover{ opacity:1; background: rgba(255,255,255,.08); }
.nav__link.is-active{ opacity:1; border-bottom:2px solid var(--gold); border-radius:0; padding-bottom:8px; }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: transparent;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background: var(--gold2);
  margin:4px auto;
  border-radius:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:16px;
  font-weight:900;
  border:1px solid transparent;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }
.btn--gold{ background: var(--gold); color:#171717; }
.btn--outline{ background: transparent; border-color: rgba(201,162,79,.7); color: var(--gold2); }

.link{ color: var(--gold); font-weight:900; padding:8px 6px; }

.lang-toggle{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(201,162,79,.55);
  background: rgba(201,162,79,.10);
  color: var(--gold2);
  font-weight: 900;
  line-height: 1;
}

/* HERO full width */
.hero-banner{
  width: 100%;
  position: relative;
  height: auto;
  aspect-ratio: 1920 / 1280; /* 3:2 */
  max-height: 80vh;
  overflow: hidden;
  background: #000;
}
.hero-banner__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15) 55%, rgba(0,0,0,.05));
  pointer-events:none;
  z-index: 1;
}
.hero-banner__img{
  position:absolute;
  inset:0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-text{
  background: var(--black);
  color: var(--white);
  padding: 26px 0 18px;
}
.hero-text__inner{ text-align:center; }
.hero-text h1{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.08;
}
.hero-text p{

  margin: 0 auto 18px;
  max-width: 900px;
  color: rgba(255,255,255,.78);
  line-height:1.6;
}

.hero-text__para{
  margin: 0 auto 18px;
  max-width: 980px;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  font-size: 15px;
}

.hero-text__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:center;
}

.certs{
  background:#fff;
  padding: 14px 0 6px;
}
.certs__inner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}
.badge{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fafafa;
  color:#444;
  font-weight:900;
  letter-spacing:.3px;
}

/* Sections */
.section{ padding: 34px 0; background:#fff; }
.section--soft{ background:#f4f4f4; }
.section__head{ text-align:center; margin-bottom: 16px; }
.section__head h2{ margin:0 0 6px; font-size: clamp(20px, 2.3vw, 32px); }
.section__head p{ margin:0; color: var(--muted); }

/* Placeholder images for services */
.ph{
  background: linear-gradient(135deg, #f1f1f1, #e8e8e8);
  position: relative;
}
.ph::after{
  content:"Replace image";
  position:absolute;
  inset:auto 14px 14px 14px;
  padding:8px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing:.3px;
}
.ph--1{ background: linear-gradient(135deg, #f1f1f1, #e6e6e6); }
.ph--2{ background: linear-gradient(135deg, #efefef, #dedede); }
.ph--3{ background: linear-gradient(135deg, #f6f6f6, #e9e9e9); }
.ph--4{ background: linear-gradient(135deg, #f0f0f0, #dcdcdc); }

/* Carousel */
.carousel{
  display:grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 14px;
  align-items:center;
}
.carousel__viewport{
  overflow:hidden;
  border-radius: 18px;
}
.carousel__track{
  display:flex;
  gap:18px;
  transition: transform .35s ease;
  will-change: transform;
  padding: 8px 2px 14px;
}
.service-card{
  min-width: min(780px, 100%);
  background:#fff;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 30px rgba(0,0,0,.10);
  display:grid;
  grid-template-columns: 1fr 1fr;
  transform: translateZ(0);
}
.service-card__img{ min-height: 320px; }
.service-card__body{
  padding: 18px 20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
}
.service-card__body h3{ margin:0; font-size: 20px; }
.service-card__body p{ margin:0; color: var(--muted); line-height:1.6; }
.mini-link{ color: var(--gold); font-weight:950; margin-top: 6px; }

.circle-btn{
  width:52px; height:52px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#0b0b0d;
  color: var(--gold2);
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .15s ease;
}
.circle-btn:hover{ transform: translateY(-2px); }

.center-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  padding-top: 10px;
  flex-wrap:wrap;
}


/* Stats / Counters */
.stats{ background:#fff; }
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 18px 14px;
  box-shadow: 0 16px 30px rgba(0,0,0,.08);
  text-align:center;
}
.stat-card__num{
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 950;
  color: var(--gold);
  letter-spacing:.3px;
}
.stat-card__label{
  margin-top: 6px;
  font-weight: 900;
  color:#333;
}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.price-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0,0,0,.08);
  position: relative;
  overflow:hidden;
  transition: transform .18s ease;
}
.price-card:hover{ transform: translateY(-4px); }
.price-card__tag{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201,162,79,.12);
  border: 1px solid rgba(201,162,79,.35);
  color:#5b4a22;
  font-weight: 950;
  font-size: 12px;
}
.price-card h3{ margin: 10px 0 6px; }
.price-card__price{
  font-size: 28px;
  font-weight: 950;
  color:#111;
  margin-bottom: 10px;
}
.price-card__price span{ font-size: 12px; color:#666; font-weight: 900; }
.price-card__list{ margin: 0 0 14px; color:#555; line-height:1.7; }
.price-card.is-featured{
  border-color: rgba(201,162,79,.55);
  box-shadow: 0 22px 40px rgba(201,162,79,.18);
}

/* Footer */
.footer{
  background: #0b0b0d;
  color:#fff;
  padding: 28px 0 14px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.footer__line{ margin: 8px 0; color: rgba(255,255,255,.82); }
.footer__muted{ color: rgba(255,255,255,.72); }
.footer__actions{ display:flex; gap:10px; flex-wrap:wrap; margin: 10px 0; }
.footer__social{ display:flex; gap:10px; margin-top: 12px; }
.footer__tiny{ color: rgba(255,255,255,.55); font-size: 12px; line-height:1.6; }

.payments{ display:flex; gap:8px; flex-wrap:wrap; margin-top: 10px; }
.pay{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.85);
  font-weight: 950;
  font-size: 12px;
  letter-spacing:.6px;
}

.footer__bottom{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding-top: 14px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  font-size: 13px;
  flex-wrap:wrap;
}
.footer__media-link{ color: var(--gold2); font-weight: 950; }

/* Media page */
.media-page{ padding: 24px 0 50px; }
.media-head h1{ margin: 0 0 6px; }
.media-head p{ margin:0; color: var(--muted); }

.tabs{
  display:flex;
  gap:10px;
  margin: 16px 0 12px;
}
.tab{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  font-weight: 950;
  cursor: pointer;
}
.tab.is-active{
  border-color: rgba(201,162,79,.55);
  background: rgba(201,162,79,.10);
}

.tab-panel{ display:none; }
.tab-panel.is-active{ display:block; }

.masonry{
  columns: 4 240px;
  column-gap: 14px;
}
.media-item{
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 30px rgba(0,0,0,.08);
  background:#fff;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform .18s ease;
}
.media-item:hover{ transform: translateY(-3px); }
.media-item__img{
  width:100%;
  display:block;
  transform: scale(1.02);
  transition: transform .25s ease;
}
.media-item:hover .media-item__img{ transform: scale(1.06); }

.media-item__cap{
  padding: 10px 12px;
  font-weight: 900;
  color:#333;
  font-size: 13px;
}

.video-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.video-card{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 30px rgba(0,0,0,.08);
  background:#fff;
  cursor: pointer;
  transition: transform .18s ease;
}
.video-card:hover{ transform: translateY(-3px); }
.video-card__thumb{
  height: 180px;
  background: linear-gradient(135deg, #f1f1f1, #e2e2e2);
  display:grid;
  place-items:center;
  font-weight: 950;
  color:#666;
}
.video-card__body{ padding: 10px 12px; font-weight: 900; }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 999;
}
.lightbox.is-open{ display:block; }
.lightbox__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.75);
}
.lightbox__content{
  position: relative;
  width: min(1000px, calc(100% - 24px));
  margin: 40px auto;
  background:#111;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
  overflow:hidden;
}
.lightbox__close{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-weight: 950;
  cursor:pointer;
}
.lightbox__stage{
  background:#000;
}
.lightbox__stage img{
  width:100%;
  height:auto;
  display:block;
}
.lightbox__stage iframe{
  width:100%;
  aspect-ratio: 16/9;
  border:0;
  display:block;
}

/* Reveal animation */
.reveal{ opacity:0; transform: translateY(14px); }
.reveal.is-in{ opacity:1; transform: translateY(0); transition: opacity .55s ease, transform .55s ease; }

/* Responsive */
@media (max-width: 980px){
  .pricing-grid{ grid-template-columns: repeat(2, 1fr); }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .video-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px){
  .nav-toggle{ display:block; }
  .nav{
    position: fixed;
    inset: 0 0 auto 0;
    top: 106px;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 8px;
    transform: translateY(-140%);
    transition: transform .2s ease;
    border-top:1px solid rgba(255,255,255,.08);
  }
  .nav.is-open{ transform: translateY(0); }

  .carousel{ grid-template-columns: 44px 1fr 44px; }
  .circle-btn{ width:44px; height:44px; }
  .service-card{ grid-template-columns: 1fr; }
  .service-card__img{ min-height: 240px; }

  .footer__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr; }
  .video-grid{ grid-template-columns: 1fr; }
}
.fade-img{ transition: opacity .22s ease; }
.fade-img.is-fading{ opacity: .12; }

.stats-grid{
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

