:root{
  --bg: #0b0c0f;
  --panel: #12141a;
  --panel2:#0f1116;
  --text: #f4f4f5;
  --muted:#b7bac6;
  --accent:#ff6a2a; /* brand orange */
  --accent2:#ff8a52;
  --line: rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
  --max: 1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #06070a;
  color: var(--text);
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.sr-only{position:absolute; left:-9999px}

.topbar{
  background: #07080b;
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.topbar__left{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.topbar__link{color:var(--muted); font-weight:600; font-size:13px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,106,42,.12);
  border: 1px solid rgba(255,106,42,.22);
  color: var(--accent2);
  padding:6px 10px;
  border-radius: 999px;
  font-size:12px;
  font-weight:700;
}

.header{
  position:sticky; top:0;
  background: rgba(10,11,14,.80);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand__logo{height:56px; width:auto; border-radius:10px}
.nav{display:flex; align-items:center}
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
}
.nav__toggleBars{
  display:block; width:22px; height:2px; background: var(--text);
  position:relative;
}
.nav__toggleBars:before,.nav__toggleBars:after{
  content:""; position:absolute; left:0; width:22px; height:2px; background: var(--text);
}
.nav__toggleBars:before{top:-7px}
.nav__toggleBars:after{top:7px}

.nav__menu{display:flex; align-items:center; gap:16px}
.nav__link{
  color: var(--muted);
  font-weight:700;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
.nav__link:hover{color:var(--text); background: rgba(255,255,255,.04)}
.nav__cta{margin-left:6px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight:800;
  letter-spacing: .2px;
  cursor:pointer;
}
.btn--small{padding:10px 12px; font-size:13px}
.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #120903;
  box-shadow: 0 14px 35px rgba(255,106,42,.24);
}
.btn--primary:hover{filter:brightness(1.03)}
.btn--secondary{
  background: rgba(255,255,255,.06);
  border-color: var(--line);
  color: var(--text);
}
.btn--secondary:hover{background: rgba(255,255,255,.09)}
.btn--ghost{
  background: rgba(255,106,42,.10);
  border-color: rgba(255,106,42,.22);
  color: var(--accent2);
}
.btn--ghost:hover{background: rgba(255,106,42,.16)}

.hero{
  padding: 44px 0 26px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(255,106,42,.18), transparent 55%),
    radial-gradient(900px 420px at 90% 35%, rgba(255,255,255,.06), transparent 60%);
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:center;
}
.hero h1{font-size:46px; line-height:1.03; margin:0 0 12px}
.hero p{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}
.accent{color:var(--accent2)}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap}
.hero__trust{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.trustCard{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: 16px;
  padding:12px 14px;
  min-width: 210px;
}
.trustCard__title{font-weight:900; font-size:13px; color:var(--accent2)}
.trustCard__text{color:var(--muted); font-weight:700; font-size:13px; margin-top:4px}

.hero__imageWrap{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.hero__imageWrap img{
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
}

.section{padding: 52px 0}
.section--dark{background: #07080b}
.section--soft{
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 70%),
    #07080b;
}
.section__head{margin-bottom: 18px}
.section__head h2{
  margin:0 0 10px;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-weight: 900;
}
.section__head p{margin:0; color:var(--muted); font-weight:600}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}

.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.card--highlight{
  border-color: rgba(255,106,42,.22);
  background: rgba(255,106,42,.08);
}
.card--dark{
  background: rgba(255,255,255,.03);
}

.card h3{margin:0 0 8px; font-size:18px}
.card h4{margin:16px 0 8px}
.card p{margin:0 0 10px; color:var(--muted); line-height:1.6}

/* Blog */
.blogGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.blogCard{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
}

.blogCard__thumb{
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
}

.blogCard__body{
  padding:16px;
}

.blogMeta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
  color: var(--muted);
  font-weight:700;
  font-size:12px;
}

.blogTitle{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.25;
}

.blogExcerpt{
  margin:0 0 12px;
  color: var(--muted);
  line-height:1.65;
  font-weight:600;
}

.blogReadMore{
  margin-top:auto;
  padding: 0 16px 16px;
}

.blogArticle{
  max-width: 820px;
  margin: 0 auto;
}

.blogArticle h1{
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.1;
}

.blogArticle h2{
  margin: 24px 0 10px;
}

.blogArticle p, .blogArticle li{
  color: var(--muted);
  line-height: 1.75;
  font-weight: 600;
}

.blogArticle ul{
  padding-left: 18px;
}

.breadcrumbs{
  margin: 10px 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.breadcrumbs a{ color: var(--accent2); }

@media (max-width: 980px){
  .blogGrid{ grid-template-columns: 1fr; }
}

.checklist{margin:10px 0 0; padding:0; list-style:none}
.checklist li{
  padding-left: 26px;
  margin:10px 0;
  position:relative;
  color: var(--muted);
  font-weight:600;
}
.checklist li:before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color: var(--accent2);
  font-weight:900;
}

.tags{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 14px}
.tag{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.16);
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  color: var(--text);
}

.cards4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.serviceCard{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  display:flex; flex-direction:column;
}
.serviceCard img{height:160px; width:100%; object-fit:cover}
.serviceCard__body{padding:14px 14px 16px}
.serviceCard__body h3{margin:0 0 6px; font-size:16px}
.serviceCard__body p{margin:0 0 10px; color:var(--muted); line-height:1.55; font-weight:600}
.link{color:var(--accent2); font-weight:900}

.team{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.teamCard{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
}
.teamCard img{
  height: 220px;
  width: 100%;
  object-fit: cover;
  object-position: center top;  /* keeps the face/head visible */
}
.teamCard__body{padding:14px}
.teamCard__body h3{margin:0 0 6px}
.teamCard__body p{margin:0; color:var(--muted); font-weight:700}

.center{display:flex; justify-content:center; margin-top:18px}

.quote{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}
.quote__head{
  display:flex; gap:12px; align-items:center; margin-bottom:10px
}
.quote__head img{
  width:52px; height:52px;
  border-radius: 14px;
  object-fit:cover;
  border:1px solid var(--line);
}
.quote__head h3{margin:0}
.quote__text{margin:0; color:var(--text); line-height:1.7; font-weight:600}
.muted{color:var(--muted)}
.small{font-size:12px}

.form label{display:block; margin:12px 0; font-weight:800}
input, select, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline:none;
  font-weight:650;
}
textarea{resize:vertical}
.hr{border:none; border-top:1px solid var(--line); margin:16px 0}

.accordion .acc__item{
  width:100%;
  text-align:left;
  padding:14px 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight:900;
  display:flex; justify-content:space-between; align-items:center;
  cursor:pointer;
  margin-bottom:10px;
}
.acc__panel{
  display:none;
  padding:0 14px 14px;
  color: var(--muted);
  font-weight:650;
  line-height:1.65;
}
.acc__icon{color: var(--accent2); font-size:18px}
.faqImg{border-radius: 16px; border:1px solid var(--line); margin:10px 0; height:190px; width:100%; object-fit:cover}

.footer{
  background:#05060a;
  border-top:1px solid var(--line);
}
.footer__inner{
  padding:26px 0;
  display:flex; justify-content:space-between; gap:22px;
  flex-wrap:wrap;
}
.footer__logo{height:52px; width:auto; border-radius:10px}
.footer__cols{display:flex; gap:28px; flex-wrap:wrap}
.footer__cols h4{margin:0 0 10px}
.footer__cols a, .footer__cols span{display:block; color:var(--muted); font-weight:700; margin:8px 0}
.footer__bottom{border-top:1px solid var(--line)}
.footer__bottomInner{padding:12px 0; display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; color:var(--muted); font-weight:700}

@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr}
  .hero__imageWrap img{height:320px}
  .cards4{grid-template-columns: repeat(2, 1fr)}
  .team{grid-template-columns: repeat(2, 1fr)}
  .grid2{grid-template-columns:1fr}
  .nav__toggle{display:inline-flex}
  .nav__menu{
    display:none;
    position:absolute;
    right:18px; top:74px;
    flex-direction:column;
    align-items:stretch;
    background: rgba(10,11,14,.96);
    border:1px solid var(--line);
    border-radius: 18px;
    padding:12px;
    min-width: 220px;
  }
  .nav__menu.is-open{display:flex}
  .nav__cta{margin-left:0}
}
@media (max-width: 520px){
  .hero h1{font-size:36px}
  .cards4{grid-template-columns: 1fr}
  .team{grid-template-columns: 1fr}
}
