:root{
  --bg:#0F1115;
  --bg-soft:#171A21;
  --surface:#1E232C;
  --surface-2:#242A34;
  --text:#F5F7FA;
  --muted:#A7B0BC;
  --line:#2B313C;
  --orange:#F28C28;
  --orange-dark:#FF6B00;
  --orange-soft:rgba(242,140,40,.14);
  --white:#FFFFFF;
  --shadow:0 12px 36px rgba(0,0,0,.28);
  --radius:20px;
  --container:1200px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea{
  font-family:inherit;
}

button{
  border:none;
  cursor:pointer;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(15,17,21,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:56px;
  height:56px;
  object-fit:contain;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}

.brand-copy strong{
  font-size:1rem;
  color:var(--text);
}

.brand-copy span{
  font-size:.84rem;
  color:var(--muted);
}

.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
}

.main-nav a{
  font-weight:500;
  color:var(--text);
  transition:.25s ease;
}

.main-nav a:hover{
  color:var(--orange);
}

.menu-toggle{
  display:none;
  background:none;
  font-size:1.65rem;
  color:var(--text);
}

/* TEXT HELPERS */
.kicker{
  display:inline-block;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.09em;
  color:var(--orange);
  margin-bottom:14px;
}

.kicker-light{
  color:#ffd3a4;
}

/* HERO */
.hero{
  background:linear-gradient(135deg, #0F1115 0%, #171A21 55%, #1E232C 100%);
  padding:84px 0 58px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:center;
}

.hero-copy h1{
  font-size:clamp(2.4rem, 5vw, 4.6rem);
  line-height:1.04;
  color:var(--text);
  max-width:820px;
  margin-bottom:18px;
}

.hero-copy p{
  color:var(--muted);
  font-size:1.07rem;
  max-width:720px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.hero-badges{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:28px;
}

.badge-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow);
}

.badge-card strong{
  display:block;
  margin-bottom:6px;
  color:var(--text);
}

.badge-card span{
  color:var(--muted);
  font-size:.95rem;
}

.hero-panel{
  background:linear-gradient(135deg, #1E232C 0%, #242A34 100%);
  color:var(--text);
  border:1px solid var(--line);
  border-radius:26px;
  padding:30px;
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.panel-chip{
  display:inline-block;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.08em;
  color:#ffd3a4;
  margin-bottom:12px;
}

.panel-head h3{
  font-size:1.5rem;
  line-height:1.2;
  margin-bottom:18px;
}

.panel-list{
  display:grid;
  gap:16px;
}

.panel-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.08);
}

.panel-item:first-child{
  border-top:none;
  padding-top:0;
}

.panel-item span{
  min-width:34px;
  height:34px;
  display:grid;
  place-items:center;
  background:var(--orange-soft);
  color:var(--white);
  border-radius:10px;
  font-weight:700;
}

.panel-item strong{
  display:block;
  margin-bottom:4px;
  color:var(--text);
}

.panel-item p{
  color:var(--muted);
  font-size:.94rem;
}

/* BUTTONS */
.btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:12px;
  font-weight:700;
  transition:.25s ease;
}

.btn-primary{
  background:var(--orange);
  color:var(--white);
}

.btn-primary:hover{
  background:var(--orange-dark);
}

.btn-light{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}

.btn-light:hover{
  border-color:var(--orange);
  color:var(--orange);
}

.btn-outline{
  background:transparent;
  color:var(--orange);
  border:1px solid rgba(242,140,40,.35);
}

.btn-outline:hover{
  background:rgba(242,140,40,.08);
}

.btn-dark-outline{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,.18);
}

.btn-dark-outline:hover{
  border-color:var(--orange);
  color:var(--orange);
}

.btn-full{
  width:100%;
}

/* TRUST */
.trust-strip{
  padding:0 0 30px;
  background:var(--bg);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.trust-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  text-align:center;
  box-shadow:var(--shadow);
}

.trust-card strong{
  display:block;
  color:var(--orange);
  font-size:1.25rem;
  margin-bottom:6px;
}

.trust-card span{
  color:var(--muted);
}

/* SECTIONS */
.section{
  padding:84px 0;
}

.section-soft{
  background:var(--bg-soft);
}

.section-head{
  margin-bottom:34px;
}

.section-head h2{
  font-size:clamp(1.9rem, 4vw, 3rem);
  line-height:1.08;
  color:var(--text);
  margin-bottom:12px;
}

.section-head p{
  color:var(--muted);
  max-width:760px;
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:20px;
}

.about-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
  box-shadow:var(--shadow);
}

.about-card.highlight{
  background:linear-gradient(135deg, #1E232C 0%, #242A34 100%);
  color:var(--text);
  border-color:var(--line);
}

.about-card.highlight p{
  color:var(--muted);
}

.about-card h3{
  margin-bottom:10px;
  color:var(--text);
}

.about-card p{
  color:var(--muted);
}

/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.service-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.25s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  border-color:rgba(242,140,40,.4);
}

.service-card img{
  width:100%;
  height:235px;
  object-fit:cover;
  cursor:pointer;
}

.service-body{
  padding:22px;
}

.service-body h3{
  margin-bottom:8px;
  color:var(--text);
}

.service-body p{
  color:var(--muted);
}

/* PROCESS */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.process-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px;
  box-shadow:var(--shadow);
}

.process-card span{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:var(--orange-soft);
  color:var(--orange);
  font-weight:800;
  margin-bottom:14px;
}

.process-card h3{
  margin-bottom:8px;
  color:var(--text);
}

.process-card p{
  color:var(--muted);
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.gallery-item{
  border-radius:20px;
  overflow:hidden;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .3s ease;
}

.gallery-item:hover img{
  transform:scale(1.04);
}

/* CTA */
.cta-section{
  background:var(--bg);
}

.cta-box{
  background:linear-gradient(135deg, #1A1F27 0%, #242A34 100%);
  color:var(--text);
  border:1px solid var(--line);
  border-radius:24px;
  padding:36px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.cta-box h2{
  font-size:2rem;
  margin-bottom:10px;
  color:var(--text);
}

.cta-box p{
  color:var(--muted);
}

.cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:26px;
  align-items:start;
}

.contact-copy h2{
  font-size:2rem;
  color:var(--text);
  margin-bottom:12px;
}

.contact-copy p{
  color:var(--muted);
  margin-bottom:20px;
}

.contact-points{
  display:grid;
  gap:12px;
  color:var(--text);
}

.contact-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px;
  box-shadow:var(--shadow);
}

.form-row{
  margin-bottom:14px;
}

.form-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

input,
textarea{
  width:100%;
  border:1px solid var(--line);
  background:#151922;
  border-radius:12px;
  padding:15px 16px;
  font-size:.97rem;
  color:var(--text);
  outline:none;
}

input::placeholder,
textarea::placeholder{
  color:#8893A1;
}

input:focus,
textarea:focus{
  border-color:var(--orange);
}

/* FOOTER */
.site-footer{
  border-top:1px solid var(--line);
  padding:26px 0 38px;
  background:var(--bg);
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.footer-wrap strong{
  color:var(--text);
}

.footer-wrap p{
  color:var(--muted);
  margin-top:6px;
}

/* MODALS */
.modal,
.img-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:100;
  padding:20px;
}

.modal.active,
.img-modal.active{
  display:flex;
}

.modal-box{
  width:min(650px, 100%);
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
  position:relative;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}

.modal-small{
  width:min(430px,100%);
}

.modal-box h3{
  color:var(--text);
  margin-bottom:10px;
}

.modal-box p{
  color:var(--muted);
  margin-bottom:18px;
}

.modal-close,
.img-close{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border-radius:10px;
  background:#2A303A;
  color:var(--text);
  font-size:1.2rem;
}

#imgModalContent{
  max-width:min(1100px, 92vw);
  max-height:88vh;
  border-radius:18px;
}

.img-close{
  top:20px;
  right:20px;
  background:#2A303A;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .hero-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 768px){
  .menu-toggle{
    display:block;
  }

  .main-nav{
    display:none;
    position:absolute;
    top:82px;
    left:16px;
    right:16px;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:18px;
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    box-shadow:var(--shadow);
  }

  .main-nav.open{
    display:flex;
  }

  .hero{
    padding-top:62px;
  }

  .hero-badges,
  .trust-grid,
  .services-grid,
  .process-grid,
  .gallery-grid,
  .form-2{
    grid-template-columns:1fr;
  }

  .hero-copy h1{
    font-size:2.2rem;
  }

  .hero-actions,
  .cta-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .footer-wrap{
    flex-direction:column;
    align-items:flex-start;
  }
}