/* =========================================================
   FORGE HAVEN - FIXED FULL CSS (NO GLOBAL CLASH)
   ========================================================= */

/* ===== GLOBAL ===== */
*{margin:0;padding:0;box-sizing:border-box;font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif}
html{scroll-behavior:smooth}

/* ✅ KEEP ONLY ONE :root */
:root{
  --accent:#3bdc2a;
  --accent2:#2fb81f;
  --bg:#0b0b0b;
  --panel:#151515;
  --text:#ffffff;
  --muted:#cfcfcf;
}

body{
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* ===== LOADER ===== */
#loader{
  position:fixed; inset:0; z-index:999999;
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(900px 500px at 20% 10%, rgba(59,220,42,.15), transparent 60%), #0b0b0b;
  transition:opacity .5s ease, visibility .5s ease;
}
#loader.hide{opacity:0;visibility:hidden}

.loader-box{
  text-align:center;
  padding:26px 26px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(15,15,15,.75);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 60px rgba(0,0,0,.55);
}
.loader-title{
  font-size:22px;
  font-weight:900;
  letter-spacing:.5px;
  color:var(--accent);
  margin-bottom:14px;
}
.loader-ring{
  width:70px;height:70px;border-radius:50%;
  margin:0 auto 14px;
  border:3px solid rgba(255,255,255,.10);
  border-top-color:var(--accent);
  animation:spin 1s linear infinite;
}
.loader-bars{
  display:flex; gap:8px; justify-content:center; align-items:flex-end;
  height:22px;
}
.loader-bars span{
  width:6px; border-radius:6px;
  background:var(--accent);
  animation:bounce 1s ease-in-out infinite;
}
.loader-bars span:nth-child(2){animation-delay:.1s}
.loader-bars span:nth-child(3){animation-delay:.2s}
.loader-bars span:nth-child(4){animation-delay:.3s}
.loader-text{color:var(--muted);font-size:13px;margin-top:10px}
@keyframes spin{to{transform:rotate(360deg)}}
@keyframes bounce{
  0%,100%{height:6px;opacity:.55}
  50%{height:22px;opacity:1}
}

/* ===== WATER BACKGROUND CANVAS ===== */
#waterCanvas{
  position:fixed; inset:0;
  z-index:0;
  pointer-events:none;
  opacity:.65;
}

/* ===== HEADER ===== */
.header{
  position:fixed; top:0; left:0; width:100%;
  background:rgba(15,15,15,.85);
  backdrop-filter: blur(10px);
  padding:15px 10%;
  display:flex; align-items:center; justify-content:space-between;
  z-index:9999;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.logo{ font-size:22px; font-weight:900; color:var(--accent); letter-spacing:.5px; }

.nav a{
  color:#fff; text-decoration:none; margin-left:24px;
  position:relative; display:inline-block; padding:6px 0;
  opacity:.92;
}
.nav a:hover{ color:var(--accent); opacity:1; }
.nav a.active{ color:var(--accent); opacity:1; }
.nav a.active::after{
  content:""; position:absolute; left:0; bottom:-6px;
  height:2px; width:100%; background:var(--accent); border-radius:2px;
}

/* ===== BRAND LOGO (HEADER) ===== */
.logo-img{width:160px;height:auto;max-height:60px;display:block}
@media (max-width:768px){.logo-img{width:140px}}
@media (max-width:480px){.logo-img{width:120px}}

/* ===== MOBILE MENU ===== */
.menu-btn{
  display:none; background:transparent; border:none; color:#fff;
  font-size:26px; cursor:pointer;
}
@media (max-width:768px){
  .header{ padding:12px 6%; }
  .menu-btn{ display:block; }

  .nav{
    position:fixed; left:0; top:60px; width:100%;
    background:rgba(15,15,15,.95);
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex; flex-direction:column;

    max-height:0; overflow:hidden; opacity:0;
    transform:translateY(-8px);
    transition:max-height .28s ease, opacity .28s ease, transform .28s ease;
    pointer-events:none;
    padding:0 6%;
  }

  .nav.show{
    max-height:260px; opacity:1; transform:translateY(0);
    pointer-events:auto; padding:14px 6%;
  }

  .nav a{ margin:10px 0; }
  .nav a.active::after{ width:60px; }
}
/* Services page nav should always show */
.nav.always-show{ display:flex !important; }

/* ===== HERO (HOME) ===== */
.hero{
  position:relative;
  min-height:100vh;
  padding-top:110px;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center;
  text-align:left;
  z-index:1;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(900px 520px at 18% 22%, rgba(59,220,42,.20), transparent 60%);
  pointer-events:none;
  z-index:-1;
}
.wrap{ width:min(1100px, 92%); margin:0 auto; }
.hero h1{
  font-size:56px;
  line-height:1.05;
  max-width:720px;
  text-shadow: 0 8px 30px rgba(0,0,0,.65);
}
.hero p{
  margin-top:12px;
  color:var(--muted);
  line-height:1.7;
  max-width:720px;
}
.buttons{ margin-top:26px; }

/* ===== BUTTONS ===== */
.btn{
  display:inline-block; padding:12px 28px;
  background:var(--accent); color:#000; font-weight:900;
  border-radius:30px; text-decoration:none; margin-right:10px;
  transition:.2s;
}
.btn:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(59,220,42,.18); }
.btn.outline{
  background:transparent; border:2px solid var(--accent); color:var(--accent);
}
.btn.outline:hover{ background:rgba(59,220,42,.10); }
.btn.small{ padding:8px 18px; font-size:14px; }

/* ===== SECTION TITLES ===== */
.section-title{
  font-size:38px;
  margin-bottom:10px;
}
.section-sub{
  color:rgba(255,255,255,.68);
  line-height:1.7;
  max-width:780px;
  margin:0 auto 42px;
}

/* ===== SERVICES GRID (shared) ===== */
.services{
  position:relative;
  padding:120px 10% 90px;
  text-align:left;
  z-index:1;
}
.services .wrap{ width:auto; }
.services h2{ font-size:38px; margin-bottom:18px; }
.services .hint{ color:rgba(255,255,255,.68); max-width:780px; line-height:1.7; margin-bottom:28px; }

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:28px;
}

/* ✅ Global .card stays for services ONLY */
.card{
  background:var(--panel);
  padding:30px;
  border-radius:18px;
  transition:.25s;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 16px 45px rgba(0,0,0,.30);
}
.card i{ font-size:34px; color:var(--accent); margin-bottom:14px; }
.card h3{ margin-bottom:10px; font-size:18px; }
.card p{ color:rgba(255,255,255,.68); margin-bottom:18px; line-height:1.55; font-size:14px; }

.card:hover{
  transform:translateY(-8px);
  background:var(--accent);
  color:#000;
}
.card:hover i,
.card:hover p{ color:#000; }

/* ===== TEAM (HOME) ===== */
.team{
  position:relative;
  padding:110px 10%;
  text-align:center;
  z-index:1;
}
.team h2{ font-size:40px; margin-bottom:8px; }
.team-sub{ color:rgba(255,255,255,.68); margin-bottom:50px; }

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
  align-items:stretch;
}

.team-card{
  background:var(--panel);
  border-radius:22px;
  padding:38px 26px 30px;
  box-shadow:0 18px 45px rgba(0,0,0,.35);
  transition:.25s ease;
  border:1px solid rgba(255,255,255,.06);
}
.team-card:hover{ transform:translateY(-8px); background:#1b1b1b; }

.team-card-link{ text-decoration:none; color:inherit; display:block; }

/* ✅ Global .avatar stays for TEAM only */
.avatar{
  width:140px; height:140px;
  margin:0 auto 18px;
  border-radius:50%;
  overflow:hidden;
  border:5px solid rgba(255,255,255,0.10);
  box-shadow:0 12px 28px rgba(0,0,0,.35);
}
.avatar img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}

.role{
  display:block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#bdbdbd;
  margin-bottom:8px;
}

.team-card h3{ font-size:22px; margin-bottom:10px; }
.team-card p{ color:#bdbdbd; font-size:14px; line-height:1.7; margin-bottom:18px; }

.team-social{
  display:flex;
  justify-content:center;
  gap:12px;
}
.team-social a{
  width:40px; height:40px;
  border-radius:50%;
  background:#222;
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  transition:.2s;
}
.team-social a:hover{ background:var(--accent); color:#000; }

/* ===== CONTACT (HOME) ===== */
.contact{
  position:relative;
  padding:90px 10%;
  text-align:center;
  background:transparent;
  z-index:1;
}
.contact::before{
  content:"";
  position:absolute;
  inset:-40px 0 -40px 0;
  background: radial-gradient(circle at 50% 15%, rgba(59,220,42,.10), transparent 60%);
  pointer-events:none;
  z-index:-1;
}

.contact h2{ font-size:38px; }
.contact p{ margin:15px auto 25px; color:rgba(255,255,255,.68); max-width:760px; line-height:1.7; }

.contact-grid{
  margin:30px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
  max-width:980px;
}

.contact-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  border-radius:16px;
  text-decoration:none;
  color:#fff;

  background: rgba(15,15,15,.55);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.contact-card i{ font-size:26px; color:var(--accent); }
.contact-card h3{ font-size:16px; margin-bottom:4px; }
.contact-card span{ font-size:13px; color:rgba(255,255,255,.72); }

.contact-card:hover{
  transform:translateY(-6px);
  border-color: rgba(59,220,42,.35);
  background: rgba(59,220,42,.10);
}
.contact-card:hover i, .contact-card:hover span{ color:#fff; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-btn{
  position:fixed;
  bottom:25px; right:25px;
  width:56px; height:56px;
  background:#25d366;
  color:#fff;
  font-size:26px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  z-index:1200;
  box-shadow:0 6px 18px rgba(0,0,0,.35);
  transition:.2s;
  text-decoration:none;
}
.whatsapp-btn:hover{ transform:scale(1.08); }

/* ===== SERVICES PAGE EXTRA ===== */
.page-hero{
  position:relative;
  min-height:45vh;
  padding-top:110px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:1;
}
.page-hero h1{ font-size:48px; margin-bottom:10px; }
.page-hero p{ color:var(--muted); line-height:1.7; max-width:720px; }

.filter-row{
  margin-top:22px;
  display:flex;
  gap:12px;
  width:min(850px, 92%);
}
.filter-row input,
.filter-row select{
  flex:1;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.10);
  background:var(--panel);
  color:#fff;
  outline:none;
}
.filter-row select{ flex:0.45; }

.services-page{
  position:relative;
  padding:40px 10% 100px;
  z-index:1;
}

@media (max-width:768px){
  .filter-row{ flex-direction:column; }
  .page-hero h1{ font-size:36px; }
  .services-page{ padding:30px 6% 90px; }
  .hero h1{ font-size:40px; }
  .services{ padding:110px 6% 80px; }
  .team{ padding:90px 6%; }
}

/* ===== MAINTENANCE NEON BANNER ===== */
.maintenance-banner{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(59,220,42,0.25);
  background:rgba(10,10,10,0.55);
  backdrop-filter:blur(10px);
  margin-bottom:18px;
  box-shadow:0 0 18px rgba(59,220,42,0.18);
}
.maintenance-dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 10px rgba(59,220,42,0.9), 0 0 24px rgba(59,220,42,0.45);
  animation:maintPulse 1.4s ease-in-out infinite;
}
.maintenance-text{
  font-weight:900;
  letter-spacing:0.3px;
  color:#dfffe0;
  text-shadow:
    0 0 8px rgba(59,220,42,0.75),
    0 0 20px rgba(59,220,42,0.35);
}
@keyframes maintPulse{
  0%,100%{transform:scale(1); opacity:0.85}
  50%{transform:scale(1.25); opacity:1}
}

/* ===== PROFILE PAGE ===== */
.profile-page{ background:#0b0b0b; color:#fff; padding:40px 20px; }
.profile{ max-width:800px; margin:auto; background:#111; padding:30px; border-radius:20px; }
.profile-img{ width:120px; height:120px; border-radius:50%; object-fit:cover; border:3px solid #7CFF6B; }
.back-link{ color:#7CFF6B; text-decoration:none; display:inline-block; margin-bottom:20px; }

/* ===== PROFILE V2 ===== */
.profile-v2{ min-height:100vh; background:#000; color:#fff; overflow-x:hidden; }
.bg-video{
  position:fixed; inset:0; width:100%; height:100%;
  object-fit:cover;
  filter: blur(18px) brightness(.45) saturate(1.1);
  transform: scale(1.08);
  z-index:-2;
}
.bg-overlay{
  position:fixed; inset:0;
  background: radial-gradient(circle at top, rgba(124,255,107,.12), rgba(0,0,0,.75));
  z-index:-1;
}
.back-link-v2{
  position:fixed; top:18px; left:18px;
  color:#7CFF6B; text-decoration:none; font-weight:600;
  z-index:5;
}
.profile-wrap-v2{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:90px 20px 50px;
}
.profile-card-v2{
  width:min(1100px, 96vw);
  background: rgba(15,15,15,.75);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border-radius:26px;
  padding:34px;
  box-shadow: 0 35px 90px rgba(0,0,0,.65);
}
.profile-top{ display:flex; gap:26px; align-items:center; }
.profile-photo img{
  width:170px; height:170px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #7CFF6B;
  box-shadow:0 0 0 8px rgba(124,255,107,.12);
}
.profile-head h1{ margin:0; font-size:42px; letter-spacing:.2px; }
.designation{ margin:8px 0 14px; color:#7CFF6B; font-weight:700; }
.quick-tags{ display:flex; flex-wrap:wrap; gap:10px; }
.quick-tags span{
  font-size:13px; padding:8px 12px; border-radius:999px;
  background: rgba(124,255,107,.12);
  border:1px solid rgba(124,255,107,.25);
}
.profile-grid-v2{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-top:22px; }
.block{
  background: rgba(12,12,12,.65);
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:18px;
}
.block.full{ grid-column:1 / -1; }
.block h2{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:#cfcfcf;
}
.block p, .block li{ color:#e5e5e5; line-height:1.7; }
.block ul{ margin:0; padding-left:18px; }
.block-head{ display:flex; align-items:baseline; justify-content:space-between; gap:12px; }
.muted{ color:#a9a9a9; font-size:12px; }

.cert-grid{ display:grid; grid-template-columns: repeat(5, 1fr); gap:12px; margin-top:14px; }
.cert-card{
  text-decoration:none; color:#fff;
  background: rgba(124,255,107,.08);
  border:1px solid rgba(124,255,107,.22);
  border-radius:14px;
  padding:14px 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition: transform .15s ease, background .15s ease;
}
.cert-card span{ font-size:12px; color:#7CFF6B; font-weight:700; }
.cert-card:hover{ transform: translateY(-2px); background: rgba(124,255,107,.12); }

.review-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:14px; }
.review-card{
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:16px;
}
.stars{ color:#7CFF6B; font-weight:900; letter-spacing:1px; margin-bottom:8px; }
.reviewer{ margin-top:10px; color:#bdbdbd; font-size:13px; }

@media (max-width: 980px){
  .cert-grid{ grid-template-columns: repeat(3, 1fr); }
  .review-grid{ grid-template-columns: 1fr; }
  .profile-grid-v2{ grid-template-columns:1fr; }
  .profile-head h1{ font-size:34px; }
}
@media (max-width: 520px){
  .profile-top{ flex-direction:column; text-align:center; }
  .quick-tags{ justify-content:center; }
  .profile-photo img{ width:150px; height:150px; }
}

/* ===== Animated Name & Role ===== */
.name-animate{
  background: linear-gradient(90deg, #ffffff, #7CFF6B, #ffffff);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: nameShift 3.5s linear infinite;
  text-shadow: 0 0 18px rgba(124,255,107,.18);
}
.role-animate{ animation: glowPulse 2.2s ease-in-out infinite; }

@keyframes nameShift{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 200% 50%; }
}
@keyframes glowPulse{
  0%, 100%{ text-shadow: 0 0 0 rgba(124,255,107,0); }
  50%{ text-shadow: 0 0 18px rgba(124,255,107,.35); }
}

/* ===== Forge Haven Footer (Pro) ===== */
.fh-footer{
  position:relative;
  padding:48px 18px 26px;
  background:#000;
  border-top:1px solid rgba(124,255,107,.14);
  overflow:hidden;
}
.fh-footer-bg{
  position:absolute;
  inset:-80px -40px -40px -40px;
  background:
    radial-gradient(circle at 50% 15%, rgba(124,255,107,.12), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(124,255,107,.06), transparent 60%),
    linear-gradient(180deg, #000, #050505);
  z-index:0;
}
.fh-footer-wrap{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
}
.fh-social-row{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-bottom:26px;
}
.fh-social-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-radius:16px;
  text-decoration:none;
  color:#eaeaea;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.fh-social-link:hover{
  transform: translateY(-2px);
  border-color: rgba(124,255,107,.35);
  background: rgba(124,255,107,.06);
}
.fh-arrow{
  color:#7CFF6B;
  font-weight:900;
  animation: fhArrow 1.6s ease-in-out infinite;
}
@keyframes fhArrow{
  0%,100%{ transform: translateX(0); opacity:.85; }
  50%{ transform: translateX(4px); opacity:1; }
}
.fh-footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:22px;
  padding:24px 0 18px;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.fh-col h4{ margin:0 0 10px; font-size:18px; letter-spacing:.2px; }
.fh-col h5{
  margin:0 0 10px;
  font-size:13px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:#cfcfcf;
}
.fh-col a{
  display:block;
  color:#d8d8d8;
  text-decoration:none;
  margin:8px 0;
  transition: color .18s ease;
}
.fh-col a:hover{ color:#7CFF6B; }
.fh-muted{ color:#b8b8b8; line-height:1.65; margin:0; }
.fh-help{ margin-top:14px; }
.fh-label{ font-size:12px; color:#a9a9a9; margin-bottom:6px; }
.fh-mail{ color:#7CFF6B; text-decoration:none; font-weight:700; }
.fh-footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:16px;
}
.fh-footer-bottom p{ margin:0; color:#cfcfcf; font-size:13px; }
.fh-brand{
  color:#7CFF6B;
  font-weight:800;
  text-shadow: 0 0 16px rgba(124,255,107,.25);
  animation: fhGlow 2.8s ease-in-out infinite;
}
@keyframes fhGlow{
  0%,100%{ text-shadow:0 0 0 rgba(124,255,107,0); }
  50%{ text-shadow:0 0 18px rgba(124,255,107,.55); }
}
.fh-top{
  color:#7CFF6B;
  text-decoration:none;
  font-weight:700;
  padding:10px 14px;
  border-radius:14px;
  background: rgba(124,255,107,.08);
  border:1px solid rgba(124,255,107,.2);
  transition: transform .18s ease, background .18s ease;
}
.fh-top:hover{ transform: translateY(-2px); background: rgba(124,255,107,.12); }
@media (max-width: 980px){
  .fh-social-row{ grid-template-columns: repeat(2, 1fr); }
  .fh-footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .fh-social-row{ grid-template-columns: 1fr; }
  .fh-footer-grid{ grid-template-columns: 1fr; }
  .fh-footer-bottom{ flex-direction:column; text-align:center; }
}

/* ===== FAQ ===== */
.faq-wrap{
  max-width:980px;
  margin:34px auto 0;
  text-align:center;
}
.faq-title{
  font-size:22px;
  margin:0 0 8px;
}
.faq-sub{
  color:rgba(255,255,255,.68);
  margin:0 0 16px;
  font-size:14px;
}
.faq-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (max-width: 720px){
  .faq-grid{ grid-template-columns: 1fr; }
}
.faq-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(15,15,15,.55);
  backdrop-filter: blur(10px);
  color:#fff;
  text-align:left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.faq-item:hover{
  transform: translateY(-2px);
  border-color: rgba(59,220,42,.35);
  background: rgba(59,220,42,.08);
}
.faq-plus{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(59,220,42,.10);
  border:1px solid rgba(59,220,42,.22);
  color: var(--accent);
  font-weight:900;
}

/* ===== FAQ MODAL ===== */
.faq-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
}
.faq-modal.show{ display:block; }

.faq-modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
}
.faq-modal-box{
  position:relative;
  max-width:720px;
  width: calc(100% - 26px);
  margin: 12vh auto 0;
  border-radius:22px;
  padding:22px 20px 18px;
  background: rgba(15,15,15,.85);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 40px 120px rgba(0,0,0,.70);
}
.faq-close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.faq-close:hover{
  transform: translateY(-2px);
  border-color: rgba(59,220,42,.30);
  background: rgba(59,220,42,.08);
}
.faq-modal-title{
  margin:0 44px 10px 0;
  font-size:18px;
  color:#fff;
}
.faq-modal-answer{
  margin:0;
  color: rgba(255,255,255,.78);
  line-height:1.7;
  font-size:14px;
}

/* ===== WHY CHOOSE US (NEON + AUTO ROTATE READY) ===== */
.why{
  position:relative;
  padding:40px 10% 70px;
  z-index:1;
}
.why .wrap{ width:auto; }
.why-head{ text-align:center; margin-bottom:18px; }
.why-head h2{ font-size:30px; margin:0 0 8px; }
.why-head p{ margin:0; color:rgba(255,255,255,.68); font-size:14px; }

.why-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:18px;
}
.why-pill{
  user-select:none;
  cursor: default;
  pointer-events:auto;
  -webkit-tap-highlight-color: transparent;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(59,220,42,.18);
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(10px);
  color:#eaeaea;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.why-pill:hover,
.why-pill:active{
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(59,220,42,.55);
  background: rgba(59,220,42,.10);
  box-shadow:
    0 0 0 1px rgba(59,220,42,.25),
    0 0 16px rgba(59,220,42,.35),
    0 0 42px rgba(59,220,42,.18),
    0 18px 55px rgba(0,0,0,.45);
}
.why-pill.is-active{
  color:#dfffe0;
  border-color: rgba(59,220,42,.70);
  background: rgba(59,220,42,.12);
  box-shadow:
    0 0 0 1px rgba(59,220,42,.35),
    0 0 20px rgba(59,220,42,.45),
    0 0 60px rgba(59,220,42,.22),
    0 22px 70px rgba(0,0,0,.55);
  text-shadow:
    0 0 10px rgba(59,220,42,.55),
    0 0 24px rgba(59,220,42,.30);
  animation: whyNeonPulse 1.6s ease-in-out infinite;
}
@keyframes whyNeonPulse{
  0%,100%{ filter: brightness(1); }
  50%{ filter: brightness(1.18); }
}
@media (max-width:768px){
  .why{ padding:36px 6% 60px; }
  .why-head h2{ font-size:26px; }
}

/* =========================================================
   REACH SECTION (SCOPED)
   ✅ No .card/.avatar override here
   ========================================================= */
.reach-section{
  position:relative;
  padding: 90px 0;
  overflow:hidden;
  background:
    radial-gradient(900px 420px at 30% 50%, rgba(59,220,42,.08), transparent 60%),
    radial-gradient(700px 420px at 65% 55%, rgba(120,0,255,.08), transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,0), rgba(10,10,10,.35));
}
.reach-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 14px);
  opacity:.35;
  pointer-events:none;
}
.reach-section .reach-wrap{
  position:relative;
  width:min(1200px, 92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items:center;
  z-index:1;
}
.reach-section .reveal{
  opacity:0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reach-section .reveal.is-visible{ opacity:1; transform:none; }

.reach-section .reach-left{
  position:relative;
  padding-left: 22px;
}
.reach-section .accent-bar{
  position:absolute;
  left:0; top:6px;
  width:5px; height:78px;
  border-radius:99px;
  background: linear-gradient(180deg, rgba(255,91,46,.95), rgba(255,91,46,0));
  box-shadow: 0 0 18px rgba(255,91,46,.25);
}
.reach-section .reach-left h2{
  color:#fff;
  letter-spacing:.5px;
  font-weight:800;
  line-height:1.05;
  margin:0 0 18px;
  font-size: clamp(34px, 3.2vw, 54px);
}

.reach-section .node-area{
  position:relative;
  width:min(520px, 100%);
  height:320px;
}
.reach-section .wires{ position:absolute; inset:0; }
.reach-section .wire{
  stroke: rgba(59,220,42,.35);
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-dasharray: 10 10;
  animation: reachDash 3.5s linear infinite;
  filter: drop-shadow(0 0 10px rgba(59,220,42,.18));
}
.reach-section .dot{
  fill: rgba(59,220,42,.9);
  filter: drop-shadow(0 0 10px rgba(59,220,42,.35));
  animation: reachPulse 1.6s ease-in-out infinite;
}
@keyframes reachDash{ to{ stroke-dashoffset: -120; } }
@keyframes reachPulse{
  0%,100%{ transform: scale(1); opacity:.9; }
  50%{ transform: scale(1.35); opacity:1; }
}

.reach-section .node{
  position:absolute;
  width:46px; height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:800;
  color:#0b0f16;
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
  animation: reachFloat 3.2s ease-in-out infinite;
}
.reach-section .node-up{ background: var(--accent); animation-delay:.0s; }
.reach-section .node-fb{ background: #2bff7a; animation-delay:.2s; }
.reach-section .node-in{ background: #38b6ff; animation-delay:.35s; }
.reach-section .node-r { background: #7a2cff; color:#fff; animation-delay:.15s; }
@keyframes reachFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.reach-section .spark{
  position:absolute;
  left: 360px;
  bottom: 24px;
  width:64px; height:64px;
  border-radius:18px;
  background: rgba(255,91,46,.12);
  border:1px solid rgba(255,91,46,.25);
  box-shadow: 0 0 30px rgba(255,91,46,.12);
}
.reach-section .spark::before{
  content:"";
  position:absolute; inset:16px;
  border-radius:12px;
  background: radial-gradient(circle at 40% 40%, rgba(255,91,46,.75), rgba(255,91,46,.05));
  animation: reachSpark 1.8s ease-in-out infinite;
}
@keyframes reachSpark{
  0%,100%{ transform: rotate(0deg) scale(1); opacity:.9; }
  50%{ transform: rotate(18deg) scale(1.05); opacity:1; }
}

.reach-section .reach-right{ display:flex; justify-content:flex-end; }
.reach-section .device{
  width:min(520px, 100%);
  height: 360px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  box-shadow: 0 30px 70px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  overflow:hidden;
  position:relative;
}
.reach-section .list-mask{
  position:absolute;
  inset: 26px 22px 26px 22px;
  border-radius: 20px;
  overflow:hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
          mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}
.reach-section .track{
  display:flex;
  flex-direction:column;
  gap: 14px;
  animation: reachScrollUp 9s linear infinite;
}
@keyframes reachScrollUp{
  from{ transform: translateY(0); }
  to{ transform: translateY(-50%); }
}

/* ✅ Reach cards use r-* (NO clash with .card/.avatar) */
.reach-section .r-card{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(10,14,22,.72);
  border:1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 35px rgba(0,0,0,.35);
}
.reach-section .r-avatar{
  width:34px; height:34px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.10);
}
.reach-section .r-txt b{ color:#fff; font-size:14px; letter-spacing:.2px; }
.reach-section .r-txt span{ display:block; margin-top:2px; color:rgba(255,255,255,.55); font-size:12px; }
.reach-section .r-tag{
  margin-left:auto;
  width:22px; height:22px;
  border-radius:6px;
  background: rgba(255,91,46,.9);
  box-shadow: 0 0 18px rgba(255,91,46,.18);
}
.reach-section .device:hover .track{ animation-play-state: paused; }

@media (max-width: 900px){
  .reach-section .reach-wrap{ grid-template-columns: 1fr; }
  .reach-section .reach-right{ justify-content:flex-start; }
}
@media (prefers-reduced-motion: reduce){
  .reach-section .track,
  .reach-section .wire,
  .reach-section .dot,
  .reach-section .node{
    animation: none !important;
  }
}


/* =========================================================
   2026 PRESERVATION UPGRADE — keeps original Forge Haven visual identity
   ========================================================= */
:root{--line:rgba(255,255,255,.08);--soft:rgba(255,255,255,.68);}
.eyebrow{display:inline-block;color:var(--accent);font-size:11px;font-weight:900;letter-spacing:1.8px;text-transform:uppercase;margin-bottom:14px}
.business-sectors{position:relative;z-index:1;padding:100px 10% 90px;border-top:1px solid rgba(255,255,255,.04)}
.business-sectors .wrap{width:auto}.sector-heading{max-width:760px;margin-bottom:32px}.sector-heading h2{font-size:38px;line-height:1.12;margin-bottom:12px}.sector-heading p{color:var(--soft);line-height:1.75}
.sector-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.sector-card{position:relative;display:grid;grid-template-columns:auto 1fr auto;gap:18px;align-items:center;min-height:154px;padding:26px;border-radius:20px;text-decoration:none;color:#fff;background:linear-gradient(145deg,rgba(24,24,24,.95),rgba(14,14,14,.92));border:1px solid var(--line);box-shadow:0 18px 48px rgba(0,0,0,.28);overflow:hidden;transition:.25s ease}
.sector-card::after{content:"";position:absolute;width:160px;height:160px;border:1px solid rgba(59,220,42,.14);border-radius:50%;right:-90px;bottom:-105px;transition:.3s ease}
.sector-card:hover{transform:translateY(-5px);border-color:rgba(59,220,42,.42);box-shadow:0 24px 60px rgba(0,0,0,.38),0 0 28px rgba(59,220,42,.05)}.sector-card:hover::after{transform:scale(1.2)}
.sector-icon{width:50px;height:50px;border-radius:14px;display:flex;align-items:center;justify-content:center;color:#000;background:var(--accent);font-size:20px;box-shadow:0 0 24px rgba(59,220,42,.18)}
.sector-copy span{font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:var(--accent);font-weight:800}.sector-copy h3{font-size:20px;margin:5px 0 7px}.sector-copy p{font-size:13px;line-height:1.6;color:var(--soft)}.sector-arrow{color:var(--accent);font-size:14px}
.sector-jump{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin:25px auto 8px}.sector-jump a{color:#fff;text-decoration:none;background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:999px;padding:9px 14px;font-size:12px}.sector-jump a i{color:var(--accent);margin-right:6px}.sector-jump a:hover{border-color:rgba(59,220,42,.42);background:rgba(59,220,42,.07)}
.compact-hero{min-height:52vh;padding-bottom:45px}.compact-hero h1{margin-top:0}.contact-page-shell{padding-top:40px}.inquiry-note{max-width:980px;margin:42px auto 0;text-align:left;padding:30px;border:1px solid var(--line);border-radius:20px;background:rgba(15,15,15,.62);backdrop-filter:blur(10px)}.inquiry-note h2{font-size:30px;max-width:720px}.inquiry-note p{margin:12px 0 0}.simple-corp-footer{position:relative;z-index:2;display:flex;justify-content:space-between;gap:20px;align-items:center;padding:26px 10%;border-top:1px solid var(--line);color:rgba(255,255,255,.58);font-size:13px;background:#0a0a0a}.simple-corp-footer a{color:var(--accent);text-decoration:none}
.sector-hero{position:relative;z-index:1;min-height:82vh;padding:150px 0 90px;display:flex;align-items:center}.sector-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(850px 460px at 18% 28%,rgba(59,220,42,.17),transparent 60%);z-index:-1}.sector-hero-grid{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(280px,.55fr);gap:70px;align-items:center}.sector-hero h1{font-size:58px;line-height:1.03;max-width:790px}.sector-hero p{color:var(--soft);line-height:1.75;max-width:720px;margin-top:18px}.sector-mark{min-height:310px;border:1px solid rgba(59,220,42,.25);background:linear-gradient(160deg,rgba(28,28,28,.85),rgba(11,11,11,.95));border-radius:24px;padding:34px;display:flex;flex-direction:column;justify-content:flex-end;box-shadow:0 24px 70px rgba(0,0,0,.38);position:relative;overflow:hidden}.sector-mark::before{content:"";position:absolute;width:220px;height:220px;border:1px solid rgba(59,220,42,.14);border-radius:50%;right:-75px;top:-80px}.sector-mark>i{font-size:45px;color:var(--accent);margin-bottom:auto}.sector-mark span{font-size:20px;font-weight:900}.sector-mark small{color:var(--soft);margin-top:7px}.sector-capabilities{position:relative;z-index:1;padding:95px 0}.sector-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.sector-service-card{display:block;text-decoration:none;color:#fff;background:var(--panel);border:1px solid var(--line);border-radius:20px;padding:28px;min-height:270px;transition:.25s ease}.sector-service-card>i{font-size:30px;color:var(--accent);margin-bottom:44px}.sector-service-card h3{font-size:20px;margin-bottom:9px}.sector-service-card p{color:var(--soft);line-height:1.65;font-size:13px;min-height:66px}.sector-service-card span{display:block;color:var(--accent);margin-top:26px;font-size:12px;font-weight:800}.sector-service-card:hover{transform:translateY(-7px);border-color:rgba(59,220,42,.42);background:#191919}.operating-model{position:relative;z-index:1;padding:80px 0;background:rgba(255,255,255,.015);border-top:1px solid rgba(255,255,255,.04);border-bottom:1px solid rgba(255,255,255,.04)}.model-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.model-grid>div{padding:26px;border-left:1px solid rgba(59,220,42,.28)}.model-grid b{color:var(--accent);font-size:11px;letter-spacing:1.5px}.model-grid h3{font-size:20px;margin:13px 0 8px}.model-grid p{color:var(--soft);font-size:13px;line-height:1.7}.sector-crossnav{position:relative;z-index:1;padding:75px 0}.crossnav-links{display:flex;flex-wrap:wrap;gap:10px}.crossnav-links a{color:#fff;text-decoration:none;border:1px solid var(--line);padding:12px 18px;border-radius:999px;font-weight:800;font-size:13px}.crossnav-links a:hover{color:#000;background:var(--accent);border-color:var(--accent)}
@media(max-width:900px){.sector-grid{grid-template-columns:1fr}.sector-hero-grid{grid-template-columns:1fr;gap:35px}.sector-hero h1{font-size:46px}.sector-mark{min-height:230px}.sector-service-grid,.model-grid{grid-template-columns:1fr}.sector-service-card{min-height:auto}.sector-service-card>i{margin-bottom:28px}}
@media(max-width:600px){.business-sectors{padding:80px 6%}.sector-heading h2{font-size:31px}.sector-card{grid-template-columns:auto 1fr;padding:20px}.sector-arrow{display:none}.sector-hero{padding:125px 0 70px}.sector-hero h1{font-size:39px}.simple-corp-footer{flex-direction:column;align-items:flex-start;padding:24px 6%}.sector-jump{justify-content:flex-start}.inquiry-note{padding:22px}}

.cert-card-static{grid-column:1/-1;cursor:default}.cert-card-static:hover{transform:none;background:rgba(124,255,107,.08)}


/* ===== PRODUCT CONTENT STUDIO ===== */
.product-studio{
  position:relative;
  z-index:1;
  padding:105px 10% 100px;
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
  background:linear-gradient(180deg,rgba(59,220,42,.025),rgba(255,255,255,.008));
}
.product-studio .wrap{width:auto;}
.studio-head{max-width:820px;margin-bottom:34px;}
.studio-head h2{font-size:40px;line-height:1.1;margin-bottom:13px;max-width:760px;}
.studio-head>p{color:var(--soft);line-height:1.75;max-width:760px;}
.studio-chips{display:flex;flex-wrap:wrap;gap:9px;margin-top:22px;}
.studio-chips span{
  display:inline-flex;align-items:center;gap:7px;
  padding:8px 12px;border:1px solid var(--line);border-radius:999px;
  background:rgba(255,255,255,.025);color:rgba(255,255,255,.76);
  font-size:11px;font-weight:800;letter-spacing:.2px;
}
.studio-chips i{color:var(--accent);font-size:11px;}
.studio-package-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.studio-package-card{
  position:relative;overflow:hidden;
  padding:30px;border:1px solid var(--line);border-radius:22px;
  background:linear-gradient(145deg,rgba(24,24,24,.97),rgba(12,12,12,.96));
  box-shadow:0 18px 50px rgba(0,0,0,.3);
}
.studio-package-card::after{
  content:"";position:absolute;width:220px;height:220px;right:-125px;top:-125px;
  border:1px solid rgba(59,220,42,.12);border-radius:50%;pointer-events:none;
}
.studio-package-top{display:flex;align-items:center;gap:15px;margin-bottom:19px;}
.studio-package-icon{
  width:52px;height:52px;border-radius:15px;display:flex;align-items:center;justify-content:center;
  background:var(--accent);color:#050505;font-size:20px;box-shadow:0 0 26px rgba(59,220,42,.16);
}
.studio-package-label{display:block;color:var(--accent);font-size:9px;font-weight:900;letter-spacing:1.6px;margin-bottom:5px;}
.studio-package-card h3{font-size:23px;line-height:1.1;}
.studio-package-intro{color:var(--soft);font-size:13px;line-height:1.7;max-width:580px;margin-bottom:22px;}
.studio-feature-list{list-style:none;padding:0;margin:0 0 24px;display:grid;gap:11px;}
.studio-feature-list li{display:flex;align-items:flex-start;gap:10px;color:rgba(255,255,255,.83);font-size:13px;line-height:1.5;}
.studio-feature-list li i{
  margin-top:2px;width:18px;height:18px;flex:0 0 18px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;background:rgba(59,220,42,.12);color:var(--accent);font-size:8px;
}
.studio-bonus{
  position:relative;padding:17px 18px 16px;margin-bottom:22px;
  border:1px solid rgba(59,220,42,.28);border-radius:15px;
  background:linear-gradient(90deg,rgba(59,220,42,.105),rgba(59,220,42,.025));
}
.studio-bonus-tag{display:block;color:var(--accent);font-size:9px;font-weight:950;letter-spacing:1.5px;margin-bottom:5px;}
.studio-bonus strong{display:block;font-size:17px;color:#fff;}
.studio-bonus small{display:block;color:rgba(255,255,255,.58);font-size:11px;margin-top:4px;}
.studio-cta{margin:0;padding:10px 18px;font-size:12px;}
.studio-cta i{margin-left:7px;}
.studio-note{margin-top:16px;color:rgba(255,255,255,.46);font-size:11px;line-height:1.55;}
.studio-note i{color:var(--accent);margin-right:6px;}
@media(max-width:900px){
  .studio-package-grid{grid-template-columns:1fr;}
}
@media(max-width:600px){
  .product-studio{padding:80px 6%;}
  .studio-head h2{font-size:31px;}
  .studio-package-card{padding:22px;}
  .studio-package-card h3{font-size:21px;}
  .studio-chips{gap:7px;}
}
