/* ============================================================
   CAN Web Management — Global Stylesheet
   canwebmanagement.com
   ============================================================ */

/* VARIABLES */
:root {
  --bg: #07131f;
  --bg2: #0a1c28;
  --card: rgba(255,255,255,0.05);
  --card-b: rgba(255,255,255,0.09);
  --border: rgba(255,255,255,0.09);
  --navy: #083B66;
  --primary: #4db5ff;
  --teal: #69e0c8;
  --green: #60b943;
  --cyan: #23c7d6;
  --text: #f5f8fc;
  --muted: #b8c6d6;
  --dim: #6b8a9a;
  --serif: 'Alice', Georgia, serif;
  --sans: system-ui, -apple-system, Arial, sans-serif;
  --w: min(1200px, calc(100% - 40px));
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 16px;
}

/* RESET */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth }
body { background:var(--bg); color:var(--text); font-family:var(--sans); line-height:1.6; overflow-x:hidden }
img { max-width:100%; height:auto; display:block }
a { color:inherit; text-decoration:none }
button { cursor:pointer; font-family:inherit }

/* FONTS */
@font-face {
  font-family:'Cinzel';
  src:url('/canweb2/assets/fonts/google/cinzel-8vij7ww63mvu7gt79mt7.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face {
  font-family:'Cinzel';
  src:url('/canweb2/assets/fonts/google/cinzel-8vij7ww63mvu7gt7-gt7lec.woff2') format('woff2');
  font-weight:700; font-style:normal; font-display:swap;
}

/* UTILITY */
.container { width:var(--w); margin:0 auto }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px; border-radius:12px; font-weight:700; font-size:15px;
  border:none; transition:transform .2s, filter .2s, opacity .2s; text-decoration:none;
  box-shadow:var(--shadow);
}
.btn-primary { background:linear-gradient(135deg, var(--teal), var(--primary)); color:#051018 }
.btn-outline { background:transparent; color:var(--text); border:1.5px solid rgba(255,255,255,0.25) }
.btn:hover { transform:translateY(-2px); filter:brightness(1.06) }
.btn-outline:hover { border-color:var(--teal); background:rgba(105,224,200,0.08) }

/* TOPBAR */
.topbar {
  background:var(--navy); text-align:center; padding:10px 20px;
  font-size:13px; font-weight:600; color:#fff; letter-spacing:.3px;
}
.topbar a { color:var(--teal); text-decoration:underline }

/* NAV */
nav {
  position:sticky; top:0; z-index:100;
  background:rgba(7,19,31,0.94); backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.nav-inner { position:relative; z-index:9999;
  width:var(--w); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:24px;
}
.nav-logo img { height:48px; width:auto }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none }
.nav-links a {
  padding:8px 14px; border-radius:8px; font-size:14px; font-weight:600;
  color:var(--muted); transition:color .2s, background .2s;
}
.nav-links a:hover { color:#fff; background:rgba(255,255,255,0.07) }
.nav-phone {
  display:flex; align-items:center; gap:7px;
  color:var(--teal); font-weight:700; font-size:17px; white-space:nowrap;
}
.nav-phone svg { flex-shrink:0; width:24px!important; height:24px!important; }
.nav-toggle { display:none; background:none; border:none; color:#fff; padding:8px; cursor:pointer; touch-action:manipulation; -webkit-tap-highlight-color:transparent; }

/* HERO */
.hero {
  position:relative; padding:130px 0 80px;
  display:grid; grid-template-columns:1fr 1.1fr; align-items:center;
  gap:0; overflow:hidden;
  background:#020611;
  max-width:1440px; margin:0 auto;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background-image:url('/canweb2/assets/uploads/2020/07/earth-globalisation-network-3866609.jpg');
  background-size:cover; background-position:center;
  filter:brightness(0.55) contrast(1.05) saturate(0.88);
  animation:heroBgIn 1.1s ease both;
}
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(rgba(0,0,0,0.28),rgba(0,0,0,0.28)),
             linear-gradient(90deg,rgba(0,0,0,0.22) 0%,rgba(0,0,0,0.08) 42%,rgba(0,0,0,0.18) 100%);
}
.hero-logo-col {
  position:relative; z-index:2;
  display:flex; align-items:center; justify-content:center;
  padding:120px 0 80px 80px;
}
.hero-logo {
  width:min(520px,90%); animation:heroLogoIn .95s cubic-bezier(.22,.61,.36,1) .16s both;
  filter:drop-shadow(0 8px 22px rgba(0,0,0,0.25));
}
.hero-content {
  position:relative; z-index:2;
  padding:120px 60px 80px 20px; max-width:640px;
}
.hero-eyebrow {
  font-family:var(--serif); font-size:22px; color:var(--green);
  margin-bottom:10px; animation:heroFadeUp .52s ease .48s both;
}
.hero-headline {
  font-family:var(--serif); font-size:clamp(56px,5vw,84px); font-weight:400;
  line-height:1.02; letter-spacing:-.02em; color:#fff; margin-bottom:24px;
  animation:heroLineUp .55s cubic-bezier(.22,.61,.36,1) .62s both;
}
.hero-headline .accent { color:var(--teal) }
.hero-divider {
  display:flex; align-items:center; gap:10px; margin-bottom:20px;
  animation:heroDividerIn .5s ease .82s both;
}
.hero-divider .short { width:24px; height:2px; background:linear-gradient(to right,var(--green),var(--primary)); border-radius:2px }
.hero-divider .long { flex:1; max-width:120px; height:2px; background:linear-gradient(to right,rgba(96,185,67,0.4),rgba(77,181,255,0.2)); border-radius:2px }
.hero-sub {
  font-size:17px; color:var(--muted); line-height:1.75; margin-bottom:32px;
  animation:heroFadeUp .52s ease .7s both;
}
.hero-sub strong { color:#fff }
.hero-btns {
  display:flex; gap:14px; flex-wrap:wrap;
  animation:heroBtnIn .5s ease 1.1s both;
}

/* SERVICE BOXES */
.services { padding:0 }
.services-grid { display:grid; grid-template-columns:repeat(4,1fr) }
.service-box {
  position:relative; min-height:420px; overflow:hidden;
  display:flex; flex-direction:column; justify-content:flex-end; padding:32px 28px;
  color:#fff;
}
.service-box-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(0.5) saturate(0.8);
  transition:transform .5s ease, filter .5s ease;
}
.service-box:hover .service-box-bg { transform:scale(1.04); filter:brightness(0.45) saturate(0.9) }
.service-box::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.service-box-content { position:relative; z-index:1 }
.service-box h3 { font-size:22px; font-weight:700; margin-bottom:10px }
.service-box p { font-size:14px; color:rgba(255,255,255,0.8); line-height:1.6; margin-bottom:18px }
.service-box a {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:700; color:var(--teal);
  border:1px solid rgba(105,224,200,0.4); border-radius:8px; padding:8px 16px;
  transition:background .2s, border-color .2s;
}
.service-box a:hover { background:rgba(105,224,200,0.12); border-color:var(--teal) }

/* SYSTEM TABS SECTION */
.system { padding:80px 0; background:transparent; margin-bottom:20px }
.system-head h2 {
  font-family:var(--serif); font-size:clamp(28px,3.5vw,44px); color:#fff;
  line-height:1.15; margin-bottom:12px;
}
.system-head p { color:var(--muted); font-size:16px }
.tabs { display:flex; justify-content:center; gap:8px; margin-bottom:40px; flex-wrap:wrap }
.tab {
  padding:12px 28px; border-radius:10px; font-weight:700; font-size:15px;
  background:transparent; color:var(--muted); border:1.5px solid var(--border);
  transition:all .25s;
}
.tab.active, .tab:hover { background:linear-gradient(135deg,var(--teal),var(--primary)); color:#051018; border-color:transparent }
.tab-panels { position:relative }
.tab-panel { display:none }
.tab-panel.active { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:center }
.tab-panel h3 { font-size:clamp(22px,2.5vw,32px); color:#fff; margin-bottom:16px; line-height:1.2 }
.tab-panel p { color:var(--muted); font-size:15px; line-height:1.8; margin-bottom:12px }


.tab-panel-visual .metric {
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.08);
}
.tab-panel-visual .metric:last-child { border-bottom:none }
.metric-label { font-size:15px; color:var(--muted); }
.metric-val { font-weight:700; color:var(--teal); font-size:15px; }

/* REGION SECTION */
.region { padding:70px 0; background:transparent; grid-template-columns:1fr 1fr; gap:60px; align-items:start }
.region h2 { font-family:'Cinzel', serif; font-size:clamp(22px,2.5vw,34px); color:#fff; margin-bottom:16px; line-height:1.2 }
.region-left h3 { font-size:20px; color:#fff; margin-bottom:14px }
.region-right h3 { font-size:20px; color:#fff; margin-bottom:14px }
.pain-list { list-style:none; display:flex; flex-direction:column; gap:12px }
.pain-list li {
  display:flex; align-items:center; gap:12px;
  font-size:15px; color:var(--muted);
  background:var(--card); border:1px solid var(--border);
  border-radius:10px; padding:12px 16px;
}
.pain-list li span:first-child { font-size:18px; flex-shrink:0 }
.growth-text { font-size:15px; color:var(--muted); line-height:1.8; margin-bottom:20px }
.growth-text strong { color:#fff }
.region-cta { margin-top:8px }

/* CALENDLY */
.calendly-section { padding:60px 0 80px; background:transparent; margin-bottom:32px }
.calendly-head h2 { font-family:var(--serif); font-size:clamp(24px,3vw,38px); color:#fff; margin-bottom:8px }
.calendly-head p { color:var(--muted) }
.calendly-widget { border-radius:var(--radius); overflow:hidden; min-height:700px }

/* ABOUT */
.about { padding:70px 0; background:transparent; margin:0 auto; text-align:center }
.about h2 { font-family:'Cinzel', serif; font-size:clamp(20px,2.5vw,30px); color:#fff; margin-bottom:20px }
.about p { color:var(--muted); font-size:15px; line-height:1.9; margin-bottom:14px }

/* FOOTER */
footer {
  background:#000;background:#000; padding:48px 0 24px;
  
}
.footer-inner {
  width:var(--w); margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:40px; margin-bottom:40px;
}
.footer-logo img { height:52px; width:auto; margin-bottom:12px }
.footer-tagline { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.4px; color:var(--dim) }
.footer-nav h4, .footer-contact h4 { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--dim); margin-bottom:14px }
.footer-nav ul { list-style:none; display:flex; flex-direction:column; gap:8px }
.footer-nav a { font-size:14px; color:var(--muted); transition:color .2s }
.footer-nav a:hover { color:var(--teal) }
.footer-contact a, .footer-contact p { font-size:14px; color:var(--muted); display:flex; align-items:center; gap:8px; margin-bottom:8px }
.footer-contact a:hover { color:var(--teal) }
.footer-social { display:flex; gap:12px; margin-top:14px }
.footer-social a {
  width:36px; height:36px; border-radius:8px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); transition:border-color .2s, color .2s;
}
.footer-social a:hover { border-color:var(--teal); color:var(--teal) }
.footer-bottom {
  width:var(--w); margin:0 auto; padding-top:24px;
  
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; color:var(--dim);
}

/* ANIMATIONS */
@keyframes heroBgIn { from{opacity:0;transform:scale(1.06)} to{opacity:1;transform:scale(1.03)} }
@keyframes heroLogoIn { from{opacity:0;transform:translateX(-44px) scale(.97)} to{opacity:1;transform:translateX(0) scale(1)} }
@keyframes heroFadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
@keyframes heroLineUp { from{opacity:0;transform:translateY(100%)} to{opacity:1;transform:translateY(0)} }
@keyframes heroDividerIn { from{opacity:0;transform:scaleX(.9)} to{opacity:1;transform:scaleX(1)} }
@keyframes heroBtnIn { from{opacity:0;transform:translateY(12px) scale(.98)} to{opacity:1;transform:translateY(0) scale(1)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.anim { opacity:0 }
.anim.in { animation:.7s ease both }
.anim.fadeInUp.in { animation-name:fadeInUp }
.anim.fadeInLeft.in { animation-name:fadeInLeft }
.anim.fadeInRight.in { animation-name:fadeInRight }
.anim.fadeIn.in { animation-name:fadeIn }
.anim.d1.in { animation-delay:.1s }
.anim.d2.in { animation-delay:.2s }
.anim.d3.in { animation-delay:.3s }
.anim.d4.in { animation-delay:.4s }
.anim.d5.in { animation-delay:.5s }

/* MOBILE NAV */
@media(max-width:900px) {
  .nav-links { display:none; }
  .nav-links.open { display:flex; }
  .nav-toggle { display:block }
  nav { position:relative }
  .hero { grid-template-columns:1fr; padding-top:60px }
  .hero-logo-col { padding:60px 20px 20px; order:1 }
  .hero-logo { width:min(400px,80%) }
  .hero-content { padding:20px 20px 60px; order:2 }
  .hero-headline { font-size:clamp(40px,8vw,60px) }
  .services-grid { grid-template-columns:1fr 1fr }
  .tab-panel.active { grid-template-columns:1fr }
  .region-inner { grid-template-columns:1fr }
  .footer-inner { grid-template-columns:1fr }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center }
}
@media(max-width:600px) {
  .services-grid { grid-template-columns:1fr }
  .hero-btns { flex-direction:column }
  .hero-btns .btn { width:100%; justify-content:center }
}

.hero-btns .btn { flex-shrink:0; white-space:nowrap; }

.hero-btns .btn { padding:12px 20px; font-size:14px; }

.hero-btns{display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;gap:12px;}
.hero-btns .btn{flex-shrink:0;width:auto!important;padding:12px 20px;font-size:14px;}

.hero-btns{flex-wrap:nowrap!important;gap:8px!important;}
.hero-btns .btn{padding:12px 14px!important;font-size:13px!important;flex-shrink:0!important;}

.footer-nav, .footer-contact { background:transparent; }
footer { background:#000;background:#000; }

/* Logo position fix — constrain hero content to centered max-width */
.hero {
  display: block !important;
}
.hero-logo-col, .hero-content {
  position: relative;
  z-index: 2;
}
.hero::after {
  content: '';
  display: table;
  clear: both;
}
/* Use a flex row inside hero at constrained width */
.hero > .hero-logo-col {
  float: none;
}
/* The real fix: hero inner grid at max-width centered */
.hero {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr !important;
  grid-template-rows: 1fr !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  width: 100% !important;
}
.hero-logo-col {
  padding: 120px 20px 80px 120px !important;
}
.hero-content {
  padding: 120px 80px 80px 40px !important;
  max-width: none !important;
}

/* ── GLOBAL AMBIENT GLOW SYSTEM ─────────────────────────────── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.glow-teal {
  background: radial-gradient(ellipse, rgba(105,224,200,0.12) 0%, transparent 70%);
}
.glow-blue {
  background: radial-gradient(ellipse, rgba(77,181,255,0.10) 0%, transparent 70%);
}
.glow-green {
  background: radial-gradient(ellipse, rgba(96,185,67,0.08) 0%, transparent 70%);
}

/* Page sections get subtle ambient glow backgrounds */
.sp-section.dark {
  position: relative;
  
}
.sp-section.dark::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(105,224,200,0.04) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  filter: blur(60px);
}

/* System cards for product features */
.sys-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.sys-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.sys-card:hover {
  border-color: rgba(105,224,200,0.25);
  transform: translateY(-3px);
}
.sys-card::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: -60px;
  right: -60px;
  background: radial-gradient(ellipse, rgba(105,224,200,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.sys-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(105,224,200,0.1);
  border: 1px solid rgba(105,224,200,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.sys-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}
.sys-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.sys-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sys-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.sys-feat-list li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
@media(max-width:768px) {
  .sys-grid { grid-template-columns: 1fr; }
}


/* Ambient moving glow for homepage hero */
.hero-ambient {
  position:absolute; inset:-10%; z-index:1; pointer-events:none;
  background:
    radial-gradient(circle at 15% 40%, rgba(77,181,255,0.11), transparent 28%),
    radial-gradient(circle at 80% 25%, rgba(105,224,200,0.08), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(77,181,255,0.05), transparent 20%);
  filter:blur(32px);
  animation:canAmbientFloat 20s ease-in-out infinite alternate;
}
/* Ambient float animation (from live site growth systems block) */
@keyframes canAmbientFloat {
  0%   { transform: translate3d(0, -1%, 0) scale(1);    opacity: 0.9; }
  50%  { transform: translate3d(2%, 1.5%, 0) scale(1.04); opacity: 1; }
  100% { transform: translate3d(-1%, 2%, 0) scale(1.02);  opacity: 0.92; }
}

/* ── FOOTER NAV FIX ─────────────────────────────────────────────
   Global `nav` rule bleeds position:sticky + backdrop-filter into
   the footer <nav class="footer-nav"> — reset it completely.     */
footer nav, footer .footer-nav {
  position: static !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  z-index: auto !important;
}

/* ── SECTION EYEBROW ──────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--teal); margin-bottom: 14px;
  padding: 5px 16px; border: 1px solid rgba(105,224,200,.22);
  border-radius: 100px; background: rgba(105,224,200,.06);
}

/* ── SYSTEM SECTION — AMBIENT + GLASS CARDS ──────────────────── */
.system { position: relative; overflow: hidden; }
.system-glow {
  position: absolute; inset: -10%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(77,181,255,0.11), transparent 28%),
    radial-gradient(circle at 25% 70%, rgba(105,224,200,0.09), transparent 24%);
  filter: blur(32px);
  animation: canAmbientFloat 22s ease-in-out infinite alternate;
}
.system > .container { position: relative; z-index: 1; }

.tab.active, .tab:hover {
  box-shadow: 0 0 20px rgba(105,224,200,0.2);
}

/* ── REGION / PAIN-POINTS — AMBIENT + TEAL ACCENT ────────────── */
.region { position: relative; overflow: hidden; }
.region-glow {
  position: absolute; inset: -10%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 88% 50%, rgba(77,181,255,0.09), transparent 26%),
    radial-gradient(circle at 12% 40%, rgba(105,224,200,0.07), transparent 22%);
  filter: blur(36px);
  animation: canAmbientFloat 20s ease-in-out infinite alternate-reverse;
}
.region > .container { position: relative; z-index: 1; }
.pain-list li {
  background: rgba(105,224,200,0.04) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-left: 3px solid var(--teal) !important;
  transition: background .2s, border-color .2s;
}
.pain-list li:hover { background: rgba(105,224,200,0.08) !important; }

/* ── ABOUT — PREMIUM GLASS CARD ──────────────────────────────── */
.about {
  padding: 90px 0;
  background:transparent;
  position: relative; overflow: hidden;
}
.about::before {
  content: '';
  position: absolute; inset: -10%; pointer-events: none;
  background:transparent;
  filter: blur(40px);
}
.about-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
  background:transparent;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px; padding: 60px 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.about h2 { font-size: clamp(22px,3vw,34px) !important; margin-bottom: 24px; }
.about p { font-size: 16px !important; line-height: 2; }
@media(max-width:600px) {
  .about-inner { padding: 40px 24px; }
}


/* ── CACHE BUST v3 ──────────────────────────────────────────────── */

/* ── FOOTER NAV — HARD RESET (global nav rule bleeds in) ────────── */
footer nav,
footer nav.footer-nav,
.footer-nav {
  position: static !important;
  top: auto !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  z-index: auto !important;
  box-shadow: none !important;
}

/* ── TABS — LIVE-SITE VISUAL QUALITY ────────────────────────────── */
.tabs {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 40px;
  background: transparent;
}
/* sweep shimmer across tab bar */
.tabs::before {
  content: "";
  position: absolute;
  top: -30%; left: -38%;
  width: 34%; height: 170%;
  background: linear-gradient(115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.03) 38%,
    rgba(127,233,231,0.12) 50%,
    rgba(255,255,255,0.03) 62%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: canTabSweep 8.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes canTabSweep {
  0%   { left: -38%; opacity: 0; }
  10%  { opacity: 0.85; }
  28%  { opacity: 0.45; }
  42%  { left: 118%; opacity: 0; }
  100% { left: 118%; opacity: 0; }
}
.tab {
  position: relative; z-index: 1;
  padding: 30px 20px !important;
  min-height: 110px;
  border-radius: 0 !important;
  border: none !important;
  border-right: 1px solid rgba(255,255,255,0.08) !important;
  background: linear-gradient(180deg, rgba(8,34,54,0.94), rgba(6,27,43,0.96)) !important;
  color: #b5fbf8 !important;
  font-size: clamp(18px, 2vw, 26px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em;
  transition: background .28s ease, box-shadow .28s ease !important;
  display: flex; align-items: center; justify-content: center;
}
.tab:last-child { border-right: none !important; }
.tab:hover {
  background: linear-gradient(180deg, rgba(10,45,70,0.96), rgba(9,36,58,0.98)) !important;
  box-shadow: none !important;
  color: #fff !important;
}
.tab.active {
  background: linear-gradient(180deg, rgba(15,88,136,0.96), rgba(34,182,200,0.92)) !important;
  color: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05),
              0 0 24px rgba(62,185,216,0.14),
              0 0 36px rgba(127,233,231,0.08) !important;
  z-index: 2;
}
/* downward caret on active tab */
.tab.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -15px;
  width: 0; height: 0;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid rgba(34,182,200,0.92);
  z-index: 3;
}

/* Panel content larger + fade animation */
.tab-panel { animation: canPanelFade .28s ease; }
.tab-panel h3 {
  font-size: clamp(22px, 2.2vw, 30px) !important;
  margin-bottom: 20px !important;
}
.tab-panel p { font-size: 17px !important; line-height: 1.75 !important; }
@keyframes canPanelFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media(max-width: 767px) {
  .tabs { grid-template-columns: 1fr !important; }
  .tab { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; min-height: 72px; }
  .tab:last-child { border-bottom: none !important; }
  .tab.active::after { display: none; }
}




html, body { background: #020c1a; }

.system,
.region,
.calendly-section,
.about { background:transparent; }

footer { background:#000;background:#000;  }

.system, .region, .calendly-section, .about {
  
}


/* ── ONE BLACK BACKGROUND ─────────────────────────── */
html { background: #000 !important; }
body { background: #000 !important; }
.services, .system, .region, .calendly-section, .about {
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
}
footer { background: #000 !important; }

/* ── CLEAN SLATE — pure black, no section blobs ── */
.system-glow,
.region-glow            { display: none !important; }
.about::before          { content: none !important; }
.about-inner            { background: transparent !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; }

.pain-list li           { background: transparent !important; border: none !important; border-left: none !important; }
body::before            { display: none !important; }
.section-eyebrow        { display: none !important; }
.services::before,
.services::after        { display: none !important; }

/* ── PAGE-LEVEL AMBIENT — one continuous glow behind everything ── */
.page-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 30%, rgba(30,90,180,0.18), transparent 55%),
    radial-gradient(ellipse 70% 70% at 85% 70%, rgba(20,160,180,0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(10,60,120,0.10), transparent 60%);
  animation: canAmbientFloat 25s ease-in-out infinite alternate;
}

/* All page sections sit above the fixed ambient */
.can-hero-clean, .services, .system, .region,
.calendly-section, .about, footer, nav {
  position: relative;
  z-index: 1;
}

/* Black nav and footer */
nav:not(.footer-nav) { background: rgba(0,0,0,0.96) !important; }
footer { background: #000 !important; }

nav:not(.footer-nav) { background: #000 !important; backdrop-filter: blur(18px); }
footer { background: #000 !important; }

h1 { font-family: 'Alice', serif !important; font-weight: 400 !important; }
h2,h3 { font-family: 'Cinzel', serif !important; font-weight: 400 !important; }

/* Global dark canvas + ambient for all pages */
html,body { background: #000; }
.page-ambient { position:fixed;inset:0;z-index:0;pointer-events:none;background:radial-gradient(ellipse 80% 60% at 18% 30%,rgba(15,70,180,0.28),transparent 52%),radial-gradient(ellipse 70% 70% at 82% 68%,rgba(8,140,175,0.22),transparent 52%),radial-gradient(ellipse 50% 45% at 50% 52%,rgba(4,45,110,0.14),transparent 58%);animation:canAmbientFloat 25s ease-in-out infinite alternate;}
/* All sections sit above ambient */
.dm-hero,.s,.sp-cta,.can-growth-systems,.sp-hero,.sp-section,.inner-hero { position:relative;z-index:1;background:transparent; }




p, li, .muted, .sub, .hero-sub, .copy { font-size: 1rem; }


/* === Global text size boost === */
html { font-size: 18px; }
body { font-size: 17px; }
p, li, td, .sub, .sp-section p, .s p, .about p, .pb p,
.can-growth-card p, .can-growth-bridge p { font-size: 17px !important; line-height: 1.85 !important; }
.feat-body p, .feat-body-wd p, .feat p { font-size: 15px !important; }
nav .nav-links a { font-size: 15px !important; }
.footer-contact a, .footer-contact p, .footer-tagline { font-size: 15px !important; }
.stat-lbl, .checklist li { font-size: 15px !important; }

/* Subheadings */
h3, .sp-section h3, .s h3, .sp-2col h3 { font-size: 22px !important; font-weight: 600 !important; }
.blog-card-title, .post-title { font-size: 20px !important; }

.tab-panel-visual {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 16px !important;
  padding: 24px 26px !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3) !important;
}
.tab-panel-visual .metric {
  display:flex; justify-content:space-between; align-items:center;
  padding:11px 0; border-bottom:1px solid rgba(255,255,255,0.08);
}
.tab-panel-visual .metric:last-child { border-bottom:none }
.metric-label { font-size:15px; color:var(--muted); }
.metric-val { font-weight:700; color:var(--teal); font-size:15px; }


