/* ============================================================
   COMPUSTORES.COM — Main Stylesheet v4.0
   FIXED: hamburger always visible on mobile, black screen,
          CSS specificity conflicts, all responsive layouts
   Brand: Cyan #00D4F0 · Blue #0044CC · Navy #0A1628 · Red #CC0000
   123 Technology Group LLC
   ============================================================ */

/* ── TOKENS ── */
:root {
  --cyan:     #00D4F0;
  --cyan-dk:  #0099CC;
  --blue:     #0044CC;
  --blue-dk:  #002A8F;
  --navy:     #0A1628;
  --navy-mid: #0D2247;
  --red:      #CC0000;
  --red-dk:   #990000;
  --green:    #39A84A;
  --white:    #FFFFFF;
  --off:      #F5F8FF;
  --lt-blue:  #E6F2FF;
  --mid-blue: #C8DEFF;
  --border:   #D0DDF5;
  --t-dk:     #0A1628;
  --t-mid:    #334466;
  --t-soft:   #5A6E8C;
  --t-muted:  #7A90B0;
  --sh-sm:    0 2px 10px rgba(0,68,204,.09);
  --sh-md:    0 8px 30px rgba(0,68,204,.14);
  --sh-lg:    0 20px 60px rgba(0,68,204,.18);
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* body defaults to white so partial CSS loads never show black screen */
body {
  font-family: 'Barlow', 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: var(--t-dk);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  line-height: 1.15;
  letter-spacing: -.01em;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TOPBAR ── */
.tb { background: var(--navy); padding: 7px 0; font-size: 13px; }
.tb-i {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.tb a, .tb span {
  color: rgba(255,255,255,.72);
  display: inline-flex; align-items: center; gap: 6px;
}
.tb a:hover { color: var(--cyan); }
.tb-l, .tb-r { display: flex; gap: 16px; align-items: center; }
.tb-sep { width: 1px; height: 14px; background: rgba(255,255,255,.15); }
.soc { display: flex; gap: 8px; margin-left: 4px; }
.soc a {
  width: 26px; height: 26px; border-radius: 5px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 11px; font-weight: 800;
  transition: all .2s;
}
.soc a:hover { background: var(--cyan); border-color: var(--cyan); color: var(--navy); }

/* ════════════════════════════════════════════
   NAVBAR — KEY FIX: hamburger is OUTSIDE .na
   Structure: .nv > .logo | .nl | .nav-right
              .nav-right > .na-btns + .hbg
   .na-btns hides on mobile; .hbg is always visible on mobile
   ════════════════════════════════════════════ */
nav.main-nav {
  background: #fff;
  border-bottom: 2px solid var(--lt-blue);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--sh-sm);
}
.nv {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 12px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.logo img { height: 52px; width: auto; object-fit: contain; }
.logo-txt {
  display: none; /* shown via onerror */
  align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--navy);
}
.logo-txt em { color: var(--red); font-style: normal; }

/* Desktop nav links */
.nl {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nl > li { position: relative; }
.nl > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; color: var(--t-mid);
  transition: all .2s; white-space: nowrap;
}
.nl > li > a:hover, .nl > li > a.active {
  color: var(--blue); background: var(--lt-blue);
}

/* Dropdown chevron */
.chv {
  width: 13px; height: 13px;
  transition: transform .2s; opacity: .6; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2;
}
.nl > li:hover .chv { transform: rotate(180deg); }

/* ── DROPDOWN PANEL ──
   top: 100% with negative margin-top creates a seamless
   hover zone — no physical gap for the mouse to cross.
   .dd-open is set by JS (hover-intent + click-toggle).
   CSS :hover kept as no-JS fallback.
── */
.dd {
  position: absolute;
  top: 100%;           /* flush against the nav item bottom */
  left: 50%;
  transform: translateX(-50%);
  /* Overlap the trigger by 4px — fills any sub-pixel gap */
  margin-top: -4px;
  /* Visual padding gives the appearance of space */
  padding: 12px 8px 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--sh-lg);
  min-width: 270px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, visibility .15s ease, transform .15s ease;
  transform: translateX(-50%) translateY(-4px);
  z-index: 200;
}
/* Open state — set by JS via .dd-open class */
.nl > li.dd-open .dd {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Fallback: pure CSS hover (no-JS environments) */
.nl > li:hover .dd {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dd a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; border-radius: var(--r-sm);
  font-size: 13.5px; color: var(--t-mid); transition: all .15s;
}
.dd a:hover { background: var(--lt-blue); color: var(--blue); }
.ddi {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--lt-blue); display: flex; align-items: center;
  justify-content: center; font-size: 15px; flex-shrink: 0; transition: all .15s;
}
.dd a:hover .ddi { background: var(--blue); }
.ddt strong { display: block; font-size: 13px; font-weight: 700; }
.ddt small { font-size: 11px; color: var(--t-muted); }

/* ── NAV RIGHT AREA ──
   .nav-right wraps both the action buttons and hamburger.
   The hamburger is ALWAYS in the DOM and visible at mobile
   without depending on .na at all.
── */
.nav-right {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.na-btns {
  display: flex; align-items: center; gap: 8px;
  /* visible on desktop, hidden on mobile */
}

/* ── HAMBURGER — always flex, visibility controlled by opacity trick ── */
.hbg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; width: 40px; height: 40px;
  border-radius: var(--r-sm);
  transition: background .2s;
  /* Hidden on desktop — use opacity+pointer-events, NOT display:none
     so the element always occupies space and display:flex is never overridden */
  opacity: 0;
  pointer-events: none;
}
.hbg:hover { background: var(--lt-blue); }
.hbg span {
  display: block; width: 22px; height: 2.5px;
  background: var(--t-dk); border-radius: 2px;
  transition: all .3s; transform-origin: center;
}
.hbg.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: var(--r-sm);
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: all .2s; white-space: nowrap; text-decoration: none;
}
.btn-ol { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ol:hover { background: var(--lt-blue); }
.btn-p {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff; box-shadow: 0 4px 16px rgba(0,68,204,.3);
}
.btn-p:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(0,68,204,.4); }
.btn-r {
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  color: #fff; box-shadow: 0 4px 14px rgba(204,0,0,.28);
}
.btn-r:hover { transform: translateY(-1px); }
.btn-wh { background: #fff; color: var(--blue); font-weight: 800; box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.btn-wh:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: 14px 30px; font-size: 17px; border-radius: var(--r-md); }
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════
   MOBILE MENU OVERLAY
   ════════════════════════════════════════════ */
.mob-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1100;
  visibility: hidden; opacity: 0;
  transition: opacity .3s, visibility .3s;
}
.mob-menu.open { visibility: visible; opacity: 1; }

.mob-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,22,40,.7);
  backdrop-filter: blur(3px);
}

.mob-panel {
  position: absolute; top: 0; left: 0;
  width: 300px; max-width: 85vw; height: 100%;
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: 4px 0 32px rgba(0,0,0,.25);
  z-index: 1;
}
.mob-menu.open .mob-panel { transform: translateX(0); }

/* Panel header */
.mob-header {
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg,var(--cyan),var(--blue),var(--red)) 1;
  flex-shrink: 0;
}
.mob-logo { height: 42px; width: auto; }
.mob-logo-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800; color: #fff;
}
.mob-logo-txt em { color: var(--red); font-style: normal; }
.mob-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0;
}
.mob-close:hover { background: rgba(255,255,255,.25); }

/* Panel links */
.mob-links { flex: 1; padding: 8px 0; overflow-y: auto; }
.mob-links li { border-bottom: 1px solid rgba(0,68,204,.07); }

/* Top-level link */
.mob-links > li > a {
  display: flex; align-items: center;
  padding: 15px 20px; font-size: 15px; font-weight: 600;
  color: var(--t-dk); transition: background .15s;
}
.mob-links > li > a:hover, .mob-links > li > a.active {
  background: var(--lt-blue); color: var(--blue);
}

/* Submenu toggle button */
button.mob-parent {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 15px 20px;
  font-size: 15px; font-weight: 600; color: var(--t-dk);
  background: none; border: none; cursor: pointer; text-align: left;
  transition: background .15s;
}
button.mob-parent:hover { background: var(--lt-blue); color: var(--blue); }
.mob-chv {
  font-size: 11px; color: var(--t-muted);
  transition: transform .25s; display: inline-block;
}
li.sub-open > button.mob-parent .mob-chv { transform: rotate(180deg); }

/* Submenu */
.mob-sub { display: none; background: var(--off); }
li.sub-open > .mob-sub { display: block; }
.mob-sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 32px;
  font-size: 14px; color: var(--t-soft);
  border-bottom: 1px solid rgba(0,68,204,.05);
  transition: all .15s;
}
.mob-sub a:hover { background: var(--lt-blue); color: var(--blue); }
.mob-sub a .si { font-size: 16px; }

/* Panel footer */
.mob-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: var(--off);
  flex-shrink: 0;
}
.mob-footer .btn { margin-bottom: 10px; }
.mob-contact {
  font-size: 13px; color: var(--t-soft);
  margin-top: 12px; display: flex; flex-direction: column; gap: 6px;
}
.mob-contact a { color: var(--t-soft); display: flex; align-items: center; gap: 8px; }
.mob-contact a:hover { color: var(--blue); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; min-height: 240px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,.82) 40%, rgba(10,22,40,.4));
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 1240px; width: 100%;
  margin: 0 auto; padding: 40px 24px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.6);
  margin-bottom: 12px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 {
  font-size: 46px; font-weight: 800; color: #fff;
  text-transform: uppercase; max-width: 600px;
}
.page-hero h1 .ac { color: var(--cyan); }

/* ── SECTION BASE ── */
.sec { padding: 80px 24px; }
.sec-in { max-width: 1240px; margin: 0 auto; }
.sec-bg { background: var(--off); }
.sec-nv { background: var(--navy); }
.sec-gr { background: linear-gradient(160deg, var(--navy), #0B2B72 60%, var(--navy)); }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--blue);
  background: var(--lt-blue); padding: 5px 12px;
  border-radius: 100px; margin-bottom: 14px;
  border-left: 3px solid var(--cyan);
}
.tag.dk { color: var(--cyan); background: rgba(0,212,240,.12); border-left-color: var(--cyan); }
.ttl {
  font-size: 44px; font-weight: 800; text-transform: uppercase;
  color: var(--t-dk); margin-bottom: 14px;
}
.ttl .ac { color: var(--blue); }
.ttl .rd { color: var(--red); }
.ttl.dk { color: #fff; }
.ttl.dk .ac { color: var(--cyan); }
.sub { font-size: 17px; color: var(--t-soft); max-width: 580px; line-height: 1.7; }
.sub.dk { color: rgba(255,255,255,.6); }
.hd { margin-bottom: 52px; }
.hd.c { text-align: center; }
.hd.c .sub { margin: 0 auto; }

/* ── SERVICE CARDS ── */
.sg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
/* Managed IT — wide horizontal card spanning both columns */
.sc-wide {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.sc-img-wide {
  width: 220px;
  height: 100%;
  min-height: 140px;
  flex-shrink: 0;
  object-fit: cover;
}
/* Cybersecurity card — SVG fills card exactly like a photo */
.sc-cyber .sc-img {
  height: 220px;
  object-fit: fill;   /* SVG already has correct proportions — no cropping */
  background: #06101E;
}
/* Website dev — full width bottom card */
.sc-full {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sc-full .sc-img-wide {
  width: 280px;
  height: 160px;
  min-height: unset;
}
.sc {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .3s; display: block; color: inherit; position: relative;
}
.sc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--cyan),var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.sc:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: #A0B8E0; }
.sc:hover::after { transform: scaleX(1); }
.sc-img { width: 100%; height: 200px; object-fit: cover; }
.sc-body { padding: 22px; }
.sc h3 { font-family: 'Barlow',sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sc p { font-size: 14px; color: var(--t-soft); line-height: 1.65; }
.sc-lnk {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: var(--blue);
  margin-top: 14px; transition: gap .2s;
}
.sc:hover .sc-lnk { gap: 8px; }

/* ── WHY US ── */
.wg { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.wi-list { display: flex; flex-direction: column; gap: 20px; }
.wi { display: flex; gap: 14px; }
.wn {
  font-family: 'Barlow Condensed',sans-serif; font-size: 13px; font-weight: 800;
  color: #fff; background: linear-gradient(135deg,var(--cyan),var(--blue));
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px;
}
.wi h4 { font-family: 'Barlow',sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.wi p { font-size: 14px; color: var(--t-soft); line-height: 1.65; }
.sla-box {
  background: linear-gradient(150deg,var(--navy),#0B2B72);
  border-radius: var(--r-xl); padding: 36px 32px; color: #fff;
  position: relative; overflow: hidden;
}
.sla-box::after {
  content: ''; position: absolute; right: -30px; top: -30px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle,rgba(0,212,240,.12),transparent 70%);
}
.sla-ey { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--cyan); margin-bottom: 16px; }
.sla-g { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.sla-c { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 16px; text-align: center; }
.sla-n { font-family: 'Barlow Condensed',sans-serif; font-size: 28px; font-weight: 800; color: var(--cyan); }
.sla-l { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }
.up-bar { background: rgba(0,212,240,.1); border: 1px solid rgba(0,212,240,.2); border-radius: var(--r-md); padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.up-bar .lbl { font-size: 13px; font-weight: 700; }
.up-bar .val { font-family: 'Barlow Condensed',sans-serif; font-size: 24px; font-weight: 800; color: var(--cyan); }
.cr-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 7px; }
.cr-row .co { color: rgba(255,255,255,.5); }
.cr-row .ck { color: var(--cyan); font-weight: 700; }

/* ── INDUSTRIES ── */
.ig { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ic {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 24px 18px; text-align: center; transition: all .3s;
}
.ic:hover { background: rgba(0,212,240,.08); border-color: rgba(0,212,240,.3); transform: translateY(-4px); }
.ic-ico { font-size: 34px; margin-bottom: 10px; }
.ic h4 { font-family: 'Barlow',sans-serif; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ic p { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.5; }

/* ── TESTIMONIALS ── */
.tg { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tc {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px;
  border-top: 3px solid var(--cyan);
}
.stars { color: #F59E0B; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.tc blockquote { font-size: 14px; color: var(--t-soft); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.ta { display: flex; align-items: center; gap: 11px; }
.av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg,var(--cyan),var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed',sans-serif; font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.an { font-size: 14px; font-weight: 700; }
.ac2 { font-size: 12px; color: var(--t-muted); }

/* ── FAQ ── */
.fq { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 960px; margin: 0 auto; }
details {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 20px;
  border-left: 3px solid var(--cyan);
}
details[open] { border-left-color: var(--blue); }
summary {
  font-family: 'Barlow',sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  color: var(--t-dk);
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 18px; color: var(--blue); flex-shrink: 0; }
details[open] summary::after { content: '−'; }
details p { margin-top: 10px; font-size: 14px; color: var(--t-soft); line-height: 1.7; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg,var(--red-dk),var(--red) 40%,var(--blue));
  border-radius: var(--r-xl); padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-strip h2 { font-size: 38px; font-weight: 800; color: #fff; text-transform: uppercase; margin-bottom: 8px; }
.cta-strip p { font-size: 15px; color: rgba(255,255,255,.72); max-width: 460px; }
.cta-strip-a { display: flex; gap: 12px; flex-shrink: 0; position: relative; z-index: 1; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  padding: 78px 24px 70px;
}
.hero::before {
  content: ''; position: absolute; right: 0; top: 0; width: 55%; height: 100%;
  background: linear-gradient(160deg,rgba(0,212,240,.07),rgba(0,42,143,.24) 60%,rgba(204,0,0,.04));
  clip-path: polygon(8% 0,100% 0,100% 100%,0% 100%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--cyan),var(--blue),var(--red));
}
.hero-in {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; position: relative; z-index: 1;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,240,.12); border: 1px solid rgba(0,212,240,.3);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 20px;
  font-size: 13px; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: .06em;
}
.badge .dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; animation: blink 1.8s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }
.hero h1 {
  font-size: 54px; font-weight: 800; line-height: 1.06;
  color: #fff; margin-bottom: 18px; text-transform: uppercase;
}
.hero h1 .gr {
  background: linear-gradient(90deg,var(--cyan),#7BC8FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero h1 .rd { color: var(--red); -webkit-text-fill-color: var(--red); }
.hero p { font-size: 17px; color: rgba(255,255,255,.72); max-width: 500px; margin-bottom: 30px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-stats {
  display: flex; gap: 24px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap;
}
.sn {
  font-family: 'Barlow Condensed',sans-serif; font-size: 34px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg,var(--cyan),#7BC8FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sl { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 3px; text-transform: uppercase; letter-spacing: .05em; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hc {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 18px; transition: all .3s;
}
.hc:hover { background: rgba(0,212,240,.08); border-color: rgba(0,212,240,.3); transform: translateY(-3px); }
.hc.wide { grid-column: 1/-1; display: flex; align-items: center; gap: 14px; }
.hc-img { width: 100%; height: 88px; object-fit: cover; border-radius: 8px; margin-bottom: 10px; opacity: .8; }
.hc.wide .hc-img { width: 96px; height: 68px; margin-bottom: 0; flex-shrink: 0; }
.hc h4 { font-family: 'Barlow',sans-serif; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.hc p { font-size: 11.5px; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ── TRUST BAR ── */
.trust { background: var(--off); border-bottom: 1px solid var(--border); padding: 15px 24px; }
.trust-i { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.tlbl { font-size: 12px; font-weight: 700; color: var(--t-soft); text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }
.tsep { width: 1px; height: 18px; background: var(--border); }
.tlogos { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.tlogo { font-size: 12.5px; font-weight: 700; color: var(--t-soft); }

/* ── PAGE CONTENT ── */
.page-content { padding: 64px 24px; }
.page-inner { max-width: 920px; margin: 0 auto; }
.page-inner h2 { font-size: 34px; font-weight: 800; color: var(--t-dk); margin-bottom: 14px; text-transform: uppercase; }
.page-inner h2 .ac { color: var(--blue); }
.page-inner h3 { font-family: 'Barlow',sans-serif; font-size: 20px; font-weight: 700; color: var(--t-dk); margin: 28px 0 10px; }
.page-inner p { font-size: 15.5px; color: var(--t-soft); line-height: 1.75; margin-bottom: 14px; }
.page-inner ul { margin: 14px 0 20px; }
.page-inner ul li { font-size: 15px; color: var(--t-soft); padding: 6px 0 6px 24px; position: relative; border-bottom: 1px solid rgba(0,68,204,.05); }
.page-inner ul li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.page-sidebar { background: var(--lt-blue); border-radius: var(--r-lg); padding: 28px; margin-top: 32px; border-left: 4px solid var(--cyan); }
.page-sidebar h4 { font-family: 'Barlow',sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--t-dk); }
.page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--lt-blue); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ci-item h5 { font-family: 'Barlow',sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.ci-item p, .ci-item a { font-size: 14px; color: var(--t-soft); }
.ci-item a:hover { color: var(--blue); }
.contact-form-box { background: var(--off); border-radius: var(--r-lg); padding: 36px; border: 1px solid var(--border); }
.contact-form-box h3 { font-family: 'Barlow',sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--t-mid); text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group textarea, .form-group select {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 14px;
  font-family: 'Barlow',sans-serif; color: var(--t-dk);
  background: #fff; transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: #D1FAE5; border: 1px solid #6EE7B7; border-radius: var(--r-sm); padding: 16px 20px; font-size: 14px; color: #065F46; margin-top: 12px; }
.map-box { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); margin-top: 32px; }
.map-box iframe { width: 100%; height: 320px; border: none; display: block; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 60px 24px 0; }
.fa { max-width: 1240px; margin: 0 auto; height: 3px; border-radius: 2px; background: linear-gradient(90deg,var(--cyan),var(--blue),var(--red)); margin-bottom: 44px; }
.fg { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.fb p { font-size: 13.5px; line-height: 1.75; max-width: 290px; margin-top: 14px; }
.fsoc { display: flex; gap: 8px; margin-top: 20px; }
.fsoc a {
  width: 34px; height: 34px; border-radius: 7px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: 12px; font-weight: 800; transition: all .2s;
}
.fsoc a:hover { background: var(--cyan); border-color: var(--cyan); color: var(--navy); }
.fc h5 { font-family: 'Barlow',sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.07); }
.fc ul li { margin-bottom: 8px; }
.fc ul a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .2s; }
.fc ul a:hover { color: var(--cyan); }
.fci { display: flex; gap: 9px; margin-bottom: 11px; align-items: flex-start; }
.fci .ic { font-size: 14px; margin-top: 1px; opacity: .55; }
.fci span, .fci a { font-size: 13.5px; color: rgba(255,255,255,.5); }
.fci a:hover { color: var(--cyan); }
.fbot { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,.3); }
.fbot a { color: rgba(255,255,255,.3); }
.fbot a:hover { color: var(--cyan); }
.fbl { display: flex; gap: 18px; }

/* ── CHAT WIDGET ── */
#cfab {
  position: fixed; bottom: 26px; right: 26px; z-index: 9000;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg,var(--cyan),var(--blue));
  border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,68,204,.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: all .3s;
  animation: cpulse 2.5s infinite;
}
@keyframes cpulse {
  0%,100%{ box-shadow: 0 8px 28px rgba(0,68,204,.45),0 0 0 0 rgba(0,68,204,.35); }
  65%{ box-shadow: 0 8px 28px rgba(0,68,204,.45),0 0 0 16px rgba(0,68,204,0); }
}
#cfab:hover { transform: scale(1.1); }
#cwin {
  position: fixed; bottom: 96px; right: 26px; z-index: 9000;
  width: 368px; height: 528px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(.93) translateY(12px); opacity: 0;
  pointer-events: none; transition: all .25s; transform-origin: bottom right;
}
#cwin.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chd {
  background: linear-gradient(135deg,var(--navy),#0B2B72);
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.chd::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--cyan),var(--blue),var(--red));
}
.chdi { display: flex; align-items: center; gap: 10px; }
.cav {
  width: 37px; height: 37px; border-radius: 50%;
  background: linear-gradient(135deg,var(--cyan),var(--blue));
  display: flex; align-items: center; justify-content: center; font-size: 18px; position: relative;
}
.cav::after {
  content: ''; position: absolute; bottom: 2px; right: 2px;
  width: 9px; height: 9px; background: #22C55E; border-radius: 50%; border: 2px solid var(--navy);
}
.chd h4 { font-family: 'Barlow',sans-serif; font-size: 14px; font-weight: 800; color: #fff; }
.chd p { font-size: 11px; color: rgba(255,255,255,.55); }
.ccl { background: none; border: none; color: rgba(255,255,255,.6); cursor: pointer; font-size: 18px; padding: 4px; transition: color .2s; }
.ccl:hover { color: #fff; }
.cms { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.cms::-webkit-scrollbar { width: 3px; }
.cms::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.msg { display: flex; gap: 7px; max-width: 90%; }
.msg.bot { align-self: flex-start; }
.msg.usr { align-self: flex-end; flex-direction: row-reverse; }
.mav { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,var(--cyan),var(--blue)); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed',sans-serif; font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0; margin-top: 2px; }
.mbb { padding: 9px 13px; border-radius: 13px; font-size: 13.5px; line-height: 1.55; }
.msg.bot .mbb { background: var(--off); color: var(--t-dk); border-bottom-left-radius: 4px; }
.msg.usr .mbb { background: linear-gradient(135deg,var(--blue),var(--navy)); color: #fff; border-bottom-right-radius: 4px; }
.mt { font-size: 10px; color: var(--t-muted); margin-top: 3px; display: block; }
.qrw { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 14px 8px; }
.qr { background: var(--lt-blue); color: var(--blue); border: 1px solid var(--border); border-radius: 100px; padding: 5px 12px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all .2s; white-space: nowrap; }
.qr:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.cir { padding: 10px 14px; border-top: 1px solid var(--border); display: flex; gap: 8px; align-items: center; }
.cin { flex: 1; padding: 9px 14px; border: 1.5px solid var(--border); border-radius: 100px; font-size: 13.5px; outline: none; font-family: 'Barlow',sans-serif; background: var(--off); color: var(--t-dk); transition: border-color .2s; }
.cin:focus { border-color: var(--blue); background: #fff; }
.csb { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,var(--cyan),var(--blue)); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; flex-shrink: 0; transition: transform .2s; }
.csb:hover { transform: scale(1.08); }
.typing { display: flex; align-items: center; gap: 3px; padding: 3px 0; }
.td { width: 6px; height: 6px; border-radius: 50%; background: var(--t-muted); animation: tb 1.2s infinite; }
.td:nth-child(2){ animation-delay:.2s } .td:nth-child(3){ animation-delay:.4s }
@keyframes tb { 0%,60%,100%{transform:translateY(0)}30%{transform:translateY(-7px)} }

/* ════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   Clean, non-conflicting rules
   ════════════════════════════════════════════ */

/* Tablet: 769px – 1024px */
@media (max-width: 1024px) {
  .sg { grid-template-columns: 1fr 1fr; }
  .ig { grid-template-columns: repeat(3, 1fr); }
  .fg { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
}

/* ── MOBILE: 768px and below ── */
@media (max-width: 768px) {

  /* === HAMBURGER: make it visible === */
  .hbg {
    opacity: 1 !important;
    pointer-events: all !important;
    visibility: visible !important;
  }

  /* === NAV: hide desktop links and action buttons === */
  .nl { display: none !important; }
  .na-btns { display: none !important; }

  /* === TOPBAR === */
  .tb-r { display: none; }

  /* === HERO === */
  .hero { padding: 48px 20px 52px; }
  .hero-in { grid-template-columns: 1fr !important; gap: 0; }
  .hero-cards { display: none; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 15px; }

  /* === PAGE HERO === */
  .page-hero h1 { font-size: 28px; }

  /* === SECTIONS === */
  .sec { padding: 52px 20px; }
  .ttl { font-size: 30px; }
  .sub { font-size: 15px; }

  /* === GRIDS: single column === */
  .sg, .tg { grid-template-columns: 1fr; }
  .sc-wide, .sc-full { flex-direction: column; }
  .sc-img-wide { width: 100%; height: 180px; min-height: unset; }
  .ig { grid-template-columns: 1fr 1fr; }
  .wg { grid-template-columns: 1fr; gap: 36px; }
  .fq { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* === CTA STRIP === */
  .cta-strip { flex-direction: column; padding: 32px 24px; gap: 24px; }
  .cta-strip h2 { font-size: 28px; }
  .cta-strip-a { flex-direction: column; width: 100%; }

  /* === FOOTER === */
  .fg { grid-template-columns: 1fr 1fr; gap: 28px; }
  .fbot { flex-direction: column; align-items: flex-start; }

  /* === CHAT === */
  #cwin { width: calc(100vw - 28px); right: 14px; }

  /* === HERO BUTTONS STACK === */
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}

/* Very small phones: 380px and below */
@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  .ig { grid-template-columns: 1fr; }
  .fg { grid-template-columns: 1fr; }
  .badge { font-size: 11px; }
}
