
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#ffffff;
  --text:#0b0f14;
  --muted:#5c6675;
  --line:#e9edf2;

  --brand:#d60000;
  --brand2:#ff2d2d;
  --brandSoft:#ffe9e9;

  --card:#ffffff;
  --shadow: 0 18px 55px rgba(17,24,39,.10);
  --radius:18px;
  --max: 1140px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px;}

/* Topbar */
.topbar{
  border-bottom:1px solid var(--line);
  background:#fafbfc;
}
.topbar .row{
  display:flex; gap:12px; justify-content:space-between; align-items:center;
  padding:10px 0; flex-wrap:wrap;
  font-size:13px; color:var(--muted);
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:7px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
}
.pill:hover{border-color: rgba(214,0,0,.25)}

/* Header/Nav */
header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:900; letter-spacing:.2px;
}
.brand img{width:44px;height:44px;border-radius:14px;object-fit:cover}
.brand span{font-size:16px}
.navlinks{display:flex; align-items:center; gap:8px}
.navlinks a, .navlinks button{
  font:inherit;
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:14px;
  color: rgba(11,15,20,.92);
  font-weight:600;
  border:1px solid transparent;
  background:transparent;
  cursor:pointer;
}
.navlinks a:hover, .navlinks button:hover{
  background:#f6f7f9;
  border-color:#eef2f6;
}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  border:1px solid rgba(214,0,0,.35);
  box-shadow: 0 14px 35px rgba(214,0,0,.18);
}
.cta:hover{opacity:.92}

/* Dropdown */
.dropdown{position:relative}
.menu{
  position:absolute; left:0; top:46px;
  min-width: 290px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow: var(--shadow);
  padding:10px;
  display:none;
}
.dropdown:hover .menu{display:block}
.menu a{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 10px;
  border-radius:12px;
  font-weight:600;
  color: rgba(11,15,20,.92);
}
.menu a:hover{background:#f6f7f9; color: var(--brand)}
.menu .label{
  font-size:12px; text-transform:uppercase; letter-spacing:.3px;
  color:var(--muted);
  padding:8px 10px 6px;
}

/* Hero */
.hero{
  padding:44px 0 18px;
}
.heroCard{
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  background:
    radial-gradient(1200px 420px at 15% -20%, rgba(214,0,0,.09), transparent 55%),
    radial-gradient(900px 360px at 100% 0%, rgba(255,45,45,.06), transparent 50%),
    #fff;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background: var(--brandSoft);
  color: var(--brand);
  font-weight:800;
  border:1px solid rgba(214,0,0,.12);
}
h1{
  margin:12px 0 10px;
  font-size:44px;
  line-height:1.06;
  color: var(--brand);
}
/* Hover shine / glow effect (like the reference hover) */
.fx-shine{
  position:relative;
  display:inline-block;
  isolation:isolate;
}
.fx-shine::after{
  content:attr(data-text);
  position:absolute;
  inset:0;
  color:transparent;
  background:
    linear-gradient(115deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0) 38%,
      rgba(255,255,255,.95) 50%,
      rgba(255,255,255,0) 62%,
      rgba(255,255,255,0) 100%);
  background-size:220% 100%;
  background-position:210% 0;
  -webkit-background-clip:text;
  background-clip:text;
  opacity:0;
  pointer-events:none;
  text-shadow:
    0 0 16px rgba(255,60,60,.55),
    0 0 34px rgba(214,0,0,.30);
  filter: blur(.2px);
}
.fx-shine:hover::after{
  opacity:1;
  animation: fx-shine-sweep 1.05s ease-in-out both;
}
@keyframes fx-shine-sweep{
  0%   { background-position:210% 0; filter: blur(.25px); }
  45%  { filter: blur(.6px); }
  100% { background-position:-30% 0; filter: blur(.25px); }
}

/* Make sure it still looks nice on touch devices (no hover) */
@media (hover: none){
  .fx-shine::after{ display:none; }
}
.lead{
  margin:0;
  color: rgba(11,15,20,.82);
  max-width: 72ch;
  font-size:16px;
}
.heroActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.ghost{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  border:1px solid var(--line);
  font-weight:800;
  background:#fff;
}
.ghost:hover{border-color: rgba(214,0,0,.20)}

/* Sections */
.section{padding:26px 0}
.sectionTitle{
  margin:0 0 10px;
  font-size:26px;
  color: var(--brand);
}
.muted{color: var(--muted)}

/* Services cards (FSB-like) */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding:18px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute; right:-60px; bottom:-70px;
  width:220px; height:220px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(214,0,0,.10), transparent 60%);
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(214,0,0,.22);
  box-shadow: 0 18px 40px rgba(17,24,39,.08);
}
.card h3{
  margin:0 0 8px;
  color: var(--brand);
  font-size:17px;
}
.card p{margin:0; color: rgba(11,15,20,.80); font-size:14px}
.card .more{
  display:inline-flex; gap:8px; align-items:center;
  margin-top:12px;
  font-weight:900;
  color: var(--brand);
}

/* Breadcrumb / page header */
.pageHead{
  padding:26px 0 8px;
}
.breadcrumb{
  font-size:13px;
  color: var(--muted);
}
.breadcrumb a{color: var(--muted)}
.breadcrumb a:hover{color: var(--brand)}
.pageHead h1{font-size:36px;margin:10px 0 0}

/* Content typography */
.content h2{
  color: var(--brand);
  margin:26px 0 10px;
  font-size:22px;
}
.content h3{
  color: var(--brand);
  margin:20px 0 8px;
  font-size:18px;
}
.content p{
  margin:0 0 14px;
  color: rgba(11,15,20,.86);
}

/* Footer (FSB-like columns + bottom line) */
footer{
  margin-top:34px;
  background:#fafbfc;
  border-top:1px solid var(--line);
}
.footerGrid{
  padding:34px 0 18px;
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap:18px;
}
.footerBrand{
  display:flex; gap:12px; align-items:center; margin-bottom:10px;
}
.footerBrand img{width:44px;height:44px;border-radius:14px;object-fit:cover}
.footerGrid h4{
  margin:0 0 10px;
  color: var(--brand);
  font-size:14px;
  letter-spacing:.2px;
}
.footerGrid a{
  display:block;
  padding:6px 0;
  color: rgba(11,15,20,.82);
  font-size:13px;
}
.footerGrid a:hover{color: var(--brand)}
.footerBottom{
  border-top:1px solid var(--line);
  padding:14px 0;
  font-size:13px;
  color: var(--muted);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

/* Floating CTA like FSB */
.float{
  position:fixed;
  right:18px; bottom:18px;
  display:flex; flex-direction:column; gap:10px;
  z-index:70;
}
.float a{
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, 1fr)}
  .footerGrid{grid-template-columns: 1fr 1fr}
}
@media (max-width: 680px){
  .navlinks{display:none}
  h1{font-size:36px}
  .cards{grid-template-columns: 1fr}
  .footerBottom{justify-content:flex-start}
}

/* Blog */
.postGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.postCard{
  display:block;
  text-decoration:none;
  color:var(--text);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.postCard:hover{
  transform: translateY(-6px);
  border-color: rgba(214,0,0,.25);
  box-shadow: 0 24px 65px rgba(17,24,39,.14);
}
.postMeta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
  font-size:13px;
}
.postCat{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brandSoft);
  color: var(--brand);
  font-weight: 700;
}
.postDate{ color: var(--muted); font-weight:600; }
.postCta{
  margin-top: 12px;
  color: var(--brand);
  font-weight: 800;
}
.postInfo{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-weight:600;
  margin-top:10px;
}
.postBody{
  line-height: 1.9;
}
.postBody p{ margin: 0 0 14px 0; }
.postNav{
  margin-top: 18px;
  display:flex;
}
.dot{opacity:.6}

@media (max-width: 980px){
  .postGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px){
  .postGrid{ grid-template-columns: 1fr; }
}

/* --- Premium Video Hero (ForWhile) --- */
.hero.heroVideo{
  position:relative;
  padding: 0;
  min-height: clamp(560px, 92vh, 900px);
  display:flex;
  align-items:center;
}

/* Make hero full-bleed even when placed inside .container */
.hero.heroVideo.fullBleed{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Subtle interactive light (moves with mouse) */
.hero.heroVideo::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(520px 420px at var(--mx, 20%) var(--my, 45%),
      rgba(255,255,255,.10),
      rgba(255,255,255,0) 60%);
  mix-blend-mode: overlay;
  opacity:.55;
}

/* Media behind content */
.heroMedia{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}

.heroVideoEl{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(var(--vscale, 1.03));
  will-change: transform;
  filter: brightness(0.92) contrast(1.08);
}

/* Dark overlay to keep typography crisp */
.heroOverlayDark{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(0,0,0,.64) 0%,
    rgba(0,0,0,.46) 42%,
    rgba(0,0,0,.26) 100%);
}

/* Inner content aligns with site grid */
.heroInner{
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Content (no box) sits above video */
.heroContent{
  max-width: 760px;
  padding: 0;
}

.heroContent .kicker{
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.20);
  color:#fff;
}

.heroContent h1{ color: #ff3b3b; }
.heroContent .lead{ color: rgba(255,255,255,.90); }

.heroContent .heroActions a.ghost{
  border-color: rgba(255,255,255,.36);
  color: rgba(255,255,255,.92);
}

/* Smooth entrance */
@keyframes heroFadeUp{
  from{ opacity:0; transform: translateY(14px); filter: blur(6px); }
  to{ opacity:1; transform: translateY(0); filter: blur(0); }
}
.heroFadeUp{
  animation: heroFadeUp .85s cubic-bezier(.22,.78,.15,1) both;
}

/* Mobile tuning */
@media (max-width: 720px){
  .hero.heroVideo{ min-height: 82vh; }
  .heroContent h1{ font-size: 40px; }
  .hero.heroVideo::before{ opacity:.35; }
}

/* Full-bleed media behind the card (works even inside .container) */
.heroMedia{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height: 100%;
  z-index:0;
  overflow:hidden;
  border-radius: 0px;
  box-shadow: 0 28px 90px rgba(0,0,0,.35);
}
.heroVideoEl{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
/* Dark overlay to keep typography crisp */
.heroOverlayDark{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.44) 42%,
    rgba(0,0,0,.26) 100%);
}

/* Content (no box) sits above video */
.heroContent{
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 0;
}
.heroContent .kicker{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.20);
  color:#fff;
}
.heroContent h1{ color: #ff3b3b; }
.heroContent .lead{ color: rgba(255,255,255,.88); }
.heroContent .heroActions a.ghost{ border-color: rgba(255,255,255,.35); color:#fff; }
/* Lift text clarity */
.hero.heroVideo h1{
  text-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.hero.heroVideo .lead{
  color: rgba(255,255,255,.88);
}

@media (max-width: 920px){
  .heroMedia{ border-radius: 0px; }
  h1{ font-size: 40px; }
}
@media (max-width: 720px){
  .hero.heroVideo{ padding: 26px 0 18px; }
  .heroMedia{ border-radius: 0px; }
  .heroCard{ padding: 22px; }
  h1{ font-size: 34px; }
}
/* FIX: Hero white button text visibility */
#hero .heroActions .ghost{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff !important;
  border:1px solid rgba(214,0,0,.35);
  box-shadow: 0 14px 35px rgba(214,0,0,.18);
}


/* Contact page layout tweaks (premium) */
.contact-page .cards{
  grid-template-columns: repeat(2, 1fr);
}
.contact-page .cards.contact-single{
  grid-template-columns: 1fr;
}
@media (max-width: 900px){
  .contact-page .cards{
    grid-template-columns: 1fr;
  }
}

/* =========================
   Mobile App-like Shell
   ========================= */
/* (Disabled) app-like bottom tabbar: keep hidden unless explicitly requested */
.appTabbar{display:none}

/* Mobile-only hamburger drawer (desktop stays identical) */
.mobileMenuToggle{display:none}
.mobileMenuBackdrop{display:none}
.mobileMenuDrawer{display:none}

@media (max-width: 720px){
  /* Only on mobile: hide header tabs/cta, use hamburger instead */
  header .navlinks{display:none}
  header .nav > a.cta{display:none}

  /* Make sure hero media scales nicely */
  .heroMedia{border-radius:0}
  .heroVideoEl{width:100%;height:100%;object-fit:cover}
  img, video{max-width:100%;height:auto}

  /* Hide hero action buttons (they will be inside hamburger menu) */
  .heroActions{display:none}

  .mobileMenuToggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border-radius: 16px;
    border:1px solid var(--line);
    background:#fff;
    box-shadow: var(--shadow);
  }
  .mobileMenuToggle .lines{display:grid;gap:5px}
  .mobileMenuToggle .lines i{
    display:block;
    width:18px;
    height:2px;
    background: rgba(11,15,20,.82);
    border-radius: 99px;
  }

  /* Backdrop should NOT block the page unless the drawer is open */
  .mobileMenuBackdrop{
    display:none;
    position:fixed;
    inset:0;
    background: rgba(0,0,0,.42);
    z-index: 98;
  }
  body.mobileMenuOpen .mobileMenuBackdrop{display:block;}

  .mobileMenuDrawer{
    display:flex;
    position:fixed;
    top:0;
    right:0;
    height:100dvh;
    width:min(86vw, 360px);
    background:#fff;
    border-left:1px solid var(--line);
    box-shadow: 0 30px 80px rgba(17,24,39,.22);
    z-index: 99;
    transform: translateX(105%);
    transition: transform .28s ease;
    flex-direction:column;
    padding-top: env(safe-area-inset-top);
  }
  .mobileMenuDrawer.open{ transform: translateX(0); }

  .mobileMenuHeader{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding: 16px 16px 12px;
    border-bottom:1px solid var(--line);
  }
  .mobileMenuHeader .title{font-weight: 900; letter-spacing:.2px}
  .mobileMenuClose{
    width:44px;
    height:44px;
    border-radius:16px;
    border:1px solid var(--line);
    background:#fff;
    font-size: 26px;
    line-height: 1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .mobileMenuBody{
    padding: 14px 16px;
    display:flex;
    flex-direction:column;
    gap:10px;
    overflow:auto;
  }
  .mobileMenuBody a{width:100%}

  .mobileMenuSection{
    margin-top: 10px;
    margin-bottom: 2px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    color: rgba(11,15,20,.55);
  }
}

