/* ====== Global Base ====== */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --bg-dark: #0a0a0a;
  --white: #fff;
  --muted: #e9ecf1;
  --text: #1f1f1f;
  --red: #e11d2e;
  --red-700: #b10e1c;
  --shadow: 0 10px 25px rgba(0,0,0,.25);
  --glow: 0 0 0 2px rgba(225,29,46,.25), 0 12px 40px rgba(225,29,46,.25);
  --radius: 14px;
}
html, body { height: 100%; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #111 url('/assets/future.avif') center/cover fixed no-repeat;
  position: relative;
}
body::before{
  content:""; position:fixed; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.48), rgba(0,0,0,.92));
  pointer-events:none; z-index:-1;
}

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ====== Header / Nav ====== */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background:  linear-gradient(to bottom, rgba(255,255,255,.65), rgba(0,0,0,.35));
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border-top: 4px solid var(--red);
  backdrop-filter: blur(8px);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding: .75rem 0; }
.brand{ display:flex; align-items:center; gap:.5rem; text-decoration:none; }
.logo{ width:42px; height:42px; object-fit:contain; border-radius:5px; }
.brand-text{ font-weight:700; color:white; letter-spacing:.3px; font-size:20px;}

.main-nav{ display:flex; gap:.6rem; }
.nav-link{
  display:inline-block; padding:.5rem .8rem;
  color:#fff; background:#0b0b0b; text-decoration:none;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.08);
  transition: all .2s ease;
}
.nav-link:hover{ transform: translateY(-1px); box-shadow: var(--glow); }
.nav-link.active{ background: var(--red); }

/* ====== Sections / Cards ====== */
.wrap{ padding: 2.2rem 0 3.5rem; }
.hero, .panel, .grid-card{
  background: rgba(255,255,255,.98);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow), 0 0 0 2px rgba(225,29,46,.08);
}
.with-glow{ box-shadow: var(--glow), var(--shadow); }

.hero{ padding: 2.2rem 2rem; margin: 1.2rem auto; width:min(980px, 96%); }
.hero h1{ font-size: clamp(1.6rem, 2.3vw + 1rem, 2.2rem); text-align:center; color:white; }
.hero p.lead{ text-align:center; margin-top:.35rem; color:white; font-weight:600; }
.hero .divider{
  height: 10px; border-radius: 999px; background: #eee; margin: .7rem auto 1.1rem;
  width: 92%;
}

.panel{ padding: 1.5rem; width:min(980px,96%); margin: 1.2rem auto; }
.panel h2, .panel h3{ text-align:center; margin-bottom:.6rem; color:white;}
.panel a, p{color:white; font-size:17px;}

.grid{ display:grid; gap:1rem; grid-template-columns: repeat(3, 1fr); }
.grid.two{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){ .grid{ grid-template-columns:1fr; } }

.grid-card{
  padding: 1.1rem;
  border-left: 4px solid var(--red);
}
.grid-card h4{ margin-bottom:.35rem; }
.grid-card p{ color:#333; line-height:1.5; }
.actions{ margin-top:.8rem; display:flex; gap:.5rem; flex-wrap:wrap; }
.actions.center { justify-content: center; }

.btn{
  display:inline-block; padding:.6rem 1rem; border-radius: 12px;
  text-decoration:none; font-weight:600; border:1px solid transparent;
  background: var(--red); color:#fff; box-shadow: var(--shadow);
  transition:.2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--glow); }
.btn.ghost{ background:#0c0c0c; color:#fff; }
.btn.light{ background:#fff; color:#111; border-color:#ddd; }
.badge{ display:inline-block; padding:.2rem .5rem; font-size:.8rem; border-radius:999px; background:#111; color:#fff; }

/* ====== Pricing ====== */
.pricing{
  display:grid;
  gap:1rem;
  grid-template-columns: repeat(3, minmax(0,1fr)); /* was 2 */
}
@media (max-width: 900px){
  .pricing{ grid-template-columns: 1fr; } /* keep stacking on mobile */
}
.price-card{
  padding:1.2rem; text-align:center;
  background: #0d0d0d; color:#fff;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--glow);
}
.price-card .top{ font-size:.9rem; color:#ddd; }
.price{ font-size:1.6rem; margin:.2rem 0 .6rem; color:#ffecee; }

/* ====== Footer ====== */
.site-footer{
  background:#0b0b0b; color:#fff; border-top: 4px solid var(--red-700);
}
.footer-inner{ padding: .9rem 0; text-align:center; font-size:.95rem; }

/* ====== Helpers ====== */
.center { text-align:center; }
.mt { margin-top: 1.2rem; }
.icon { vertical-align: middle; margin-right:.35rem; }
.embed-wrap{ border-radius: var(--radius); overflow:hidden; border:1px solid rgba(0,0,0,.08); }

/* ====== Hamburger (mobile) ====== */
.nav-toggle{
  display:none; appearance:none; border:0; background:transparent; cursor:pointer;
  width:44px; height:38px; border-radius:12px; position:relative;
}
.nav-toggle .bar{
  position:absolute; left:10px; right:10px; height:3px; background:#111; border-radius:6px;
  transition:transform .2s ease, opacity .2s ease;
}
.nav-toggle .bar:nth-child(1){ top:11px; }
.nav-toggle .bar:nth-child(2){ top:17px; }
.nav-toggle .bar:nth-child(3){ top:23px; }

/* Desktop keeps your current layout */
@media (min-width: 901px){
  .nav-toggle{ display:none; }
  .main-nav{ display:flex; gap:.6rem; }
}

/* Mobile drawer */
@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }

  .main-nav{
    position:absolute; top: calc(100% + 10px); right:4%; left:auto;
    display:none; flex-direction:column; gap:.5rem;
    background: rgba(255,255,255,.98);
    border:1px solid rgba(0,0,0,.06);
    border-radius:14px; padding:.6rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    min-width: 210px;
    z-index: 60;
  }
  .main-nav.open{ display:flex; }

  /* Keep your pill look for items */
  .main-nav .nav-link{
    display:block; background:#0b0b0b; color:#fff; padding:.65rem .9rem; border-radius:10px;
    text-decoration:none; border:1px solid rgba(255,255,255,.08);
  }
  .main-nav .nav-link.active{ background: var(--red); }
}


/* ====== Section faded backgrounds ====== */
.section-bg { position: relative; overflow: hidden; }
.section-bg::before{
  content:"";
  position:absolute; inset:0;
  background:
    /* stronger dark fade */
    linear-gradient(to bottom, rgba(0,0,0,.48), rgba(0,0,0,.92)),
    var(--section-img, none) center/cover no-repeat;
  filter: grayscale(20%) contrast(.9) brightness(.8);
  z-index:0;
}

.section-bg > * { position: relative; z-index: 1; }

/* Per-section images (update URLs if you change file names) */
.bg-hero      { --section-img: url('/assets/future.avif'); }
.bg-about     { --section-img: url('/assets/future.avif'); }
.bg-solutions { --section-img: url('/assets/future.avif'); }

/* ====== Logos in sections/cards ====== */
.section-logo{
  display:block; margin: 0 auto .7rem;
  width: 150px; height: auto;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.15));
  border-radius: 10px;
}

.section-logo1{
  display:block; margin: 0 auto .7rem;
  width: 250px; height: auto;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.15));
  border-radius: 10px;
}

.section-logo2{
  display:block; margin: 0 auto .7rem;
  width: 250px; height: auto;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.15));
  border-radius: 10px;
}

.card-logo{
  width: 60px; height: 50px; object-fit: contain;
  vertical-align: middle; margin-right: .45rem;
  transform: translateY(-2px);
}


/* Happy Clients / Stats */
/* Modern stats row */
.stats.modern{
  display:grid; gap:1rem; margin-top:1rem;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  align-items: stretch;
}
@media (max-width: 900px){
  .stats.modern{ grid-template-columns: 1fr; }
}

.stat-card.modern{
  position:relative;
  padding:1.1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 25px rgba(0,0,0,.15), 0 0 0 2px rgba(225,29,46,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.stat-card.modern:hover{
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.stat-value{
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .3px;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label{
  margin-top: .4rem;
  font-weight: 650;
  color: #222;
  opacity: .95;
}


/* Keep all three on one row on desktop */
.stats.nowrap { flex-wrap: nowrap; }
/* Make each card share space evenly */
.stats.nowrap .stat-card { flex: 1 1 0; }

/* Optional: tighter max width so numbers look balanced */
@media (min-width: 900px){
  .stats.nowrap { gap: 1rem; }
}










