/* =========================================
   GLOBAL RESET
========================================= */

*,
*::before,
*::after{
box-sizing:border-box;
margin:0;
padding:0;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',system-ui,Arial;
background:#0b0b0c;
color:#e6e6e6;
line-height:1.6;
}


/* =========================================
   CONTAINER
========================================= */

.container{
width:min(92%, 1280px);
margin:auto;
}


/* =========================================
   TOP BAR
========================================= */

.topbar{
background:#111;
border-bottom:1px solid #222;
font-size:13px;
}

.topbar__inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:6px 0;
}

.topbar__link{
color:#d4a017;
text-decoration:none;
}


/* =========================================
   HEADER
========================================= */

.header{
background:#0b0b0c;
border-bottom:1px solid #1c1c1c;
position:sticky;
top:0;
z-index:100;
}

.header{
backdrop-filter:blur(10px);
background:rgba(11,11,12,0.92);
}

.header__inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 0;
gap:24px;
}

/* =========================================
   BRAND
========================================= */

.brand{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
}

.brand__logo{
height:38px;
}

.brand__name{
font-weight:700;
letter-spacing:.5px;
}

.brand__sub{
font-size:12px;
color:#aaa;
}


/* =========================================
   NAVIGATION
========================================= */

.nav__menu{
display:flex;
gap:24px;
}

.nav__link{
text-decoration:none;
color:#ddd;
font-size:14px;
}

.nav__link:hover{
color:#d4a017;
}

/* Mobile menu open state (added by script.js) */
.nav__menu--open{
  display:flex !important;
  position:absolute;
  right:4%;
  top:70px;
  flex-direction:column;
  gap:14px;
  background:#0b0b0c;
  border:1px solid #222;
  padding:14px;
  width:min(260px, 92vw);
  z-index:999;
}

.nav__toggle{
  display:none;
  background:none;
  border:1px solid #222;
  color:#eee;
  padding:10px 12px;
  cursor:pointer;
}

.nav__toggleLines{
  display:block;
  width:20px;
  height:2px;
  background:#eee;
  position:relative;
}
.nav__toggleLines::before,
.nav__toggleLines::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background:#eee;
}
.nav__toggleLines::before{ top:-6px; }
.nav__toggleLines::after{ top:6px; }

.no-scroll{ overflow:hidden; }

/* Show hamburger on mobile */
@media (max-width:650px){
  .nav__toggle{ display:inline-block; }
}

/* =========================================
   BUTTONS
========================================= */

.btn{
display:inline-block;
padding:14px 24px;
font-weight:700;
font-size:15px;
border-radius:6px;
text-decoration:none;
cursor:pointer;
transition:all .25s ease;
letter-spacing:.3px;
}

.btn--primary{
background:#d4a017;
color:#000;
box-shadow:0 8px 22px rgba(212,160,23,0.18);
}

.btn--primary:hover{
background:#e6b800;
}

.btn--ghost{
border:1px solid #2f2f2f;
color:#eee;
background:transparent;
}

.btn--ghost:hover{
border-color:#d4a017;
color:#d4a017;
}

.btn--block{
width:100%;
text-align:center;
}


/* =========================================
   HERO
========================================= */

.hero{
padding:120px 0 110px;
}

.hero__inner{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero__title{
font-family:'Space Mono',monospace;
font-size:clamp(54px, 8vw, 92px);
line-height:0.98;
letter-spacing:1.5px;
margin-bottom:24px;
text-transform:uppercase;
}

.hero__desc{
color:#a8adb4;
margin-bottom:32px;
font-size:20px;
line-height:1.7;
max-width:700px;
}

.hero__buttons{
display:flex;
gap:14px;
flex-wrap:wrap;
margin-bottom:25px;
}

.hero__trust{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.trust{
background:#111;
padding:14px 18px;
border:1px solid #1f1f1f;
font-size:13px;
min-width:180px;
}

.trust__title{
display:block;
font-weight:600;
}

.trust__sub{
color:#888;
font-size:12px;
}


/* =========================================
   HERO IMAGE
========================================= */

.mediaCard{
border:1px solid #222;
background:#111;
}

.mediaCard img{
width:100%;
height:460px;
object-fit:cover;
display:block;
filter: brightness(0.92) contrast(1.06);
}

.mediaCard__meta{
display:flex;
justify-content:space-between;
padding:8px 12px;
font-size:11px;
color:#777;
border-top:1px solid #222;
}


/* =========================================
   SECTIONS
========================================= */

.section{
padding:110px 0;
border-top:1px solid #141414;
}

.section__title{
font-family:'Space Mono',monospace;
font-size:clamp(30px, 4vw, 42px);
margin-bottom:14px;
letter-spacing:1px;
line-height:1.15;
}

.section__desc{
color:#9fa3a9;
max-width:720px;
margin-bottom:40px;
font-size:18px;
line-height:1.7;
}

.section:nth-of-type(even){
background:linear-gradient(180deg, rgba(255,255,255,0.012) 0%, rgba(255,255,255,0.00) 100%);
}

/* =========================================
   CARDS GRID
========================================= */

.grid{
display:grid;
gap:24px;
}

.grid--3{
grid-template-columns:repeat(3,1fr);
}

.card{
background:linear-gradient(180deg, #101010 0%, #0d0d0d 100%);
border:1px solid #1f1f1f;
padding:20px;
transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.card:hover{
transform:translateY(-6px);
border-color:#2f2f2f;
box-shadow:0 18px 40px rgba(0,0,0,0.35);
}

.card__img{
display:flex;
align-items:center;
justify-content:center;
height:220px;
background:#0b0b0c;
border-bottom:1px solid #1f1f1f;
margin-bottom:18px;
overflow:hidden;
}

.card__img img{
width:100%;
height:auto;
max-height:220px;
object-fit:contain;
background:#0b0b0c;
padding:10px;
filter:brightness(0.92) contrast(1.06);
transition:transform .3s ease;
}

.card:hover .card__img img{
transform:scale(1.03);
}

.card__title{
font-size:19px;
margin-bottom:12px;
line-height:1.3;
}

.card__text{
font-size:15px;
color:#9ca3ab;
margin-bottom:20px;
line-height:1.7;
}


/* =========================================
   SPLIT SECTION
========================================= */

.split{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.split__img{
width:100%;
border:1px solid #222;
}

.bullets{
list-style:square;
padding-left:20px;
color:#bbb;
margin-top:20px;
}

.miniTag{
margin-top:20px;
font-size:12px;
color:#777;
letter-spacing:1px;
}


/* =========================================
   CHIPS (AREAS)
========================================= */

.chips{
display:flex;
gap:12px;
flex-wrap:wrap;
margin:20px 0;
}

.chip{
border:1px solid #333;
padding:8px 12px;
font-size:13px;
}


/* =========================================
   CALL OUT
========================================= */

.callout{
margin-top:30px;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
background:#101010;
border:1px solid #222;
padding:20px;
}


/* =========================================
   FORM
========================================= */

.form{
background:#101010;
border:1px solid #222;
padding:25px;
}

.form__row{
display:flex;
gap:20px;
margin-bottom:18px;
flex-wrap:wrap;
}

.form__field{
display:flex;
flex-direction:column;
flex:1;
font-size:13px;
}

.form__field span{
margin-bottom:6px;
color:#999;
}

.form__field input,
.form__field textarea,
.form__field select{
background:#0b0b0c;
border:1px solid #333;
padding:10px;
color:#eee;
font-size:14px;
}

.form__field input:focus,
.form__field textarea:focus{
outline:none;
border-color:#d4a017;
}

.form__actions{
margin-top:20px;
}

.form__note{
font-size:12px;
color:#777;
margin-top:10px;
}


/* =========================================
   WORKFLOW
========================================= */

.workflow{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:30px;
}

.step__num{
font-family:'Space Mono',monospace;
color:#d4a017;
font-size:32px;
margin-bottom:10px;
}

.step__title{
margin-bottom:8px;
}

.step__text{
font-size:14px;
color:#aaa;
}

.workflow__cta{
margin-top:40px;
text-align:center;
}


/* =========================================
   REVIEWS
========================================= */

.review{
background:#101010;
border:1px solid #222;
padding:20px;
}

.stars{
color:#d4a017;
margin-bottom:10px;
}

.review__text{
font-size:14px;
margin-bottom:14px;
}

.review__meta{
font-size:13px;
color:#bbb;
}

.review__job{
font-size:12px;
color:#777;
margin-top:6px;
}


/* =========================================
   FAQ
========================================= */

.faq__item{
border-bottom:1px solid #222;
}

.faq__q{
width:100%;
text-align:left;
background:none;
border:none;
color:#eee;
padding:16px 0;
font-size:16px;
cursor:pointer;
display:flex;
justify-content:space-between;
}

.faq__a{
display:none;
padding-bottom:16px;
color:#aaa;
}


/* =========================================
   CONTACT
========================================= */

.contact{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact__box{
background:#101010;
border:1px solid #222;
padding:25px;
}

.contact__row{
display:flex;
justify-content:space-between;
margin-bottom:14px;
}

.contact__label{
color:#888;
}

.contact__value{
color:#eee;
text-decoration:none;
}

.contact__actions{
margin-top:20px;
display:flex;
gap:10px;
flex-wrap:wrap;
}


/* =========================================
   FOOTER
========================================= */

.footer{
border-top:1px solid #1a1a1a;
background:#0b0b0c;
padding:30px 0;
}

.footer__inner{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.footer__link{
margin-right:16px;
text-decoration:none;
color:#aaa;
font-size:14px;
}

.footer__link:hover{
color:#d4a017;
}

.footer__fine{
font-size:12px;
color:#777;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:1000px){

.hero__inner{
grid-template-columns:1fr;
}

.grid--3{
grid-template-columns:1fr 1fr;
}

.workflow{
grid-template-columns:1fr 1fr;
}

.contact{
grid-template-columns:1fr;
}

}

@media (max-width:650px){

.grid--3{
grid-template-columns:1fr;
}

.nav__menu{
display:none;
}

.hero__title{
font-size:40px;
}

}
/* ===== WHY SECTION IMAGE UPGRADE ===== */

.split__media {
  position: relative;
}

.split__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.split__img:hover {
  transform: scale(1.03);
}

.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  border-radius: 12px;
}