/* =========================================
GLOBAL RESET + ROOT (FIXED)
========================================= */
:root{
--neon:#00eaff;
--gold:#f7d88a;
}

*,
*::before,
*::after{
margin:0;
padding:0;
box-sizing:border-box;
}

html{scroll-behavior:smooth;}

body{
background:#000;
color:#fff;
font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
overflow-x:hidden;
position:relative;
}

/* =========================================
PARTICLE CANVAS — HARD BACKGROUND
========================================= */
#particle-canvas{
position:fixed;
inset:0;
width:100vw;
height:100vh;
z-index:-100;
pointer-events:none;
}

/* =========================================
NAVBAR — BASELINE (SAFE)
========================================= */
.navbar{
position:fixed;
top:0;
width:100%;
z-index:1000;
background:rgba(0,0,0,0.65);
backdrop-filter:blur(10px);
}
.nav-links{
  list-style: none;
  display: flex;
  gap: 26px;
}

.nav-links a{
color:#dffbff;
text-decoration:none;
font-weight:700;
letter-spacing:0.06em;
text-transform:uppercase;
}

.nav-links a:hover{
color:var(--neon);
text-shadow:0 0 12px rgba(0,234,255,0.6);
}
.nav-inner{
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 28px;
}
.nav-cta,
.nav-cta:visited,
.nav-cta:hover,
.nav-cta:active{
  color:#000 !important;
  background:linear-gradient(120deg,#00eaff,#34ffc8);
  padding:10px 22px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:0.06em;
  text-transform:uppercase;
  text-decoration:none;
  box-shadow:0 0 22px rgba(0,234,255,0.55);
}
/* =========================================
NAV TOGGLE — DESKTOP HIDDEN
========================================= */
/* Desktop: hamburger OFF */
.nav-toggle{
  display: none;
}
/* =========================================
INTRO HERO — CONSOLIDATED LAYERING
========================================= */
.intro-section{
  min-height:100vh;
  padding:100px 20px 60px; /* tighter */
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative;
  isolation:isolate;
}

.intro-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}



.intro-section::before{
content:"";
position:absolute;
inset:0;
background: rgba(0,0,0,0.68);
z-index:0;
}

.intro-section > *{
position:relative;
z-index:1;
}
/* =========================================
   HERO BACKGROUND — SUBTLE PARALLAX
========================================= */
.intro-section::after{
  content:"";
  position:absolute;
  inset:-30% 0;
  z-index:0;

  background-image: url("assets-new/hero-circuit.png");
  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;

  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
  pointer-events:none;
}


/* Taglines */
/* =========================================
   INTRO TAGLINES — REFINED, ONE-LINE, PREMIUM
========================================= */

.intro-tagline{
  font-family: "Sora", system-ui, sans-serif;

  font-size: clamp(1.65rem, 2.4vw, 2.05rem);
  font-weight: 500;                 /* ⬅ lighter, more premium */
  letter-spacing: 0.07em;
  text-transform: uppercase;

  color: rgba(235,255,255,0.94);
  text-align: center;

  white-space: normal;

  margin-bottom: 26px;

  text-shadow:
    0 0 8px rgba(0,234,255,0.35),
    0 0 18px rgba(0,234,255,0.22);

  animation: taglineReveal 1.3s ease-out forwards;
}




/* Calm reveal, not flashy */
@keyframes taglineReveal{
  from{
    opacity: 0;
    letter-spacing: 0.16em;
    transform: translateY(8px);
  }
  to{
    opacity: 1;
    letter-spacing: 0.08em;
    transform: translateY(0);
  }
}

/* =========================================
   SUBTAGLINE — SUPPORTING, NOT COMPETING
========================================= */

.intro-subtagline{
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(190,245,255,0.9);
  opacity: 0.85;

  text-align: center;
  margin-bottom: 28px;

  text-shadow:
    0 0 12px rgba(0,234,255,0.45),
    0 0 24px rgba(0,234,255,0.25);

  animation: subtagFlicker 3.4s infinite;
}

/* Flicker — restrained */
@keyframes subtagFlicker{
  0%   { opacity: 0.45; }
  12%  { opacity: 0.9; }
  22%  { opacity: 0.55; }
  36%  { opacity: 0.85; }
  100% { opacity: 0.8; }
}

/* =========================================
   LOGO — SUBTLE MOTION, MORE PRESENCE
========================================= */

.intro-logo{
  width: 100%;
  max-width: 680px;

  margin: 12px auto 10px;

  object-fit: contain;
  object-position: center;

  opacity: 0.95;

  filter:
    drop-shadow(0 0 28px rgba(0,234,255,0.45))
    drop-shadow(0 0 70px rgba(0,0,0,0.95));

  transform: none;
  animation: logoFadeIn 0.9s ease-out forwards, logoGlow 5s ease-in-out infinite;
}






/* Gentle float = premium */
@keyframes logoFadeIn{
  from{
    opacity: 0;
    transform: scale(0.96);
  }
  to{
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes logoGlow{
  0%{
    opacity: 0.9;
    filter:
      drop-shadow(0 0 18px rgba(0,234,255,0.25))
      drop-shadow(0 0 60px rgba(0,0,0,0.95));
  }
  50%{
    opacity: 1;
    filter:
      drop-shadow(0 0 42px rgba(0,234,255,0.75))
      drop-shadow(0 0 90px rgba(0,0,0,0.95));
  }
  100%{
    opacity: 0.9;
    filter:
      drop-shadow(0 0 18px rgba(0,234,255,0.25))
      drop-shadow(0 0 60px rgba(0,0,0,0.95));
  }
}

@keyframes logoFloat{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-20px);
  }
  100%{
    transform: translateY(0);
  }
}
.logo-float{
  display: block;
  animation: logoPulse 7s ease-in-out infinite;
}
@keyframes logoPulse{
  0%{
    filter:
      drop-shadow(0 0 22px rgba(0,234,255,0.35))
      drop-shadow(0 0 60px rgba(0,0,0,0.95));
    transform: scale(1);
  }
  50%{
    filter:
      drop-shadow(0 0 34px rgba(0,234,255,0.65))
      drop-shadow(0 0 90px rgba(0,0,0,0.95));
    transform: scale(1.015);
  }
  100%{
    filter:
      drop-shadow(0 0 22px rgba(0,234,255,0.35))
      drop-shadow(0 0 60px rgba(0,0,0,0.95));
    transform: scale(1);
  }
}

/* =========================================
   HERO CONTENT (UNCHANGED STRUCTURE)
========================================= */

.hero-content{
  max-width:1080px;
  margin-top:16px;
  padding:44px 36px 64px;
  border-radius:28px;
  background:radial-gradient(circle at top,
    rgba(79,227,255,0.12),
    rgba(0,0,0,0.9) 70%);
  box-shadow:0 28px 56px rgba(0,0,0,0.8);
}

.hero-headline{
  font-family:"Sora",system-ui,sans-serif;
  font-size:clamp(2.2rem,3.4vw,3rem);
  margin-bottom:22px;
  color: var(--neon);
  letter-spacing:0.01em;

  text-shadow:
    0 0 18px rgba(0,234,255,0.55),
    0 0 36px rgba(0,234,255,0.25);
}

.hero-subtext{
  max-width:760px;
  margin:0 auto 14px;
  font-size:1.08rem;
  line-height:1.75;
  color: rgba(190,215,225,0.85);
}

.hero-subtext.muted{
  color: rgba(247,216,138,0.85);
  font-size: 1rem;
  opacity: 0.9;
}

.hero-values{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(2,minmax(260px,1fr));
  gap:22px;
}

/* =========================================
   MOBILE: HERO CARDS — FORCE SINGLE COLUMN
========================================= */
@media (max-width: 768px){
  .hero-values{
    grid-template-columns: 1fr !important;
  }
}



/* =========================================
   HERO VALUE CARDS (FIX)
========================================= */
.hero-card{
  background: rgba(0,0,0,0.72);
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(0,234,255,0.45);
  box-shadow:
    0 0 22px rgba(0,234,255,0.35),
    0 0 36px rgba(0,0,0,0.95);
  font-size: 1.05rem;
  line-height: 1.55;
  color: #e2f8ff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 0 26px rgba(0,234,255,0.45),
    0 0 36px rgba(0,0,0,0.95);
}
/* Hero fit statement */
.hero-fit{
  margin: 46px auto 0;
  max-width: 820px;
  font-size: 1.0rem;
  line-height: 1.7;
  color: rgba(247,216,138,0.9);
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(0,234,255,0.25);
  text-shadow: none;
}

/* =========================================
GENERIC CONTENT SECTIONS
========================================= */
.content-section{
  position:relative;
  min-height:auto;
  padding:72px 80px 72px;
}

/* =========================================
   FONT BASELINE — HOMEPAGE NORMALIZATION
   (desktop + mobile, safe inheritance)
========================================= */

body{
  font-size: 16px;
  line-height: 1.7;
}

.intro-section,
.hero-content,
.content-section{
  font-size: 1rem;
}

.hero-subtext,
.hero-fit,
.mission-box p,
.values-support p,
.value-card p,
.funnel-desc,
.pricing-desc,
.contact-line,
.about-content p{
  font-size: 1.06rem;
  line-height: 1.75;
}


/* =========================================
   SECTION HEADINGS (RESTORED)
========================================= */
.section-title{
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(2.3rem, 3.8vw, 3.1rem);
  color: var(--neon);
  text-align: center;
  margin-bottom: 18px;   /* more air under header */
}



/* =========================================
MISSION STATEMENT — LARGER, COOL TONE, VISIBLE ANIMATION
========================================= */

.section-subtitle{
  font-size: 1.4rem;                  /* ⬅ clearly larger */
  letter-spacing: 0.34em;
  text-transform: uppercase;

  color: rgba(215,245,255,0.95);      /* ⬅ NOT gold */
  text-align: center;

  margin-top: -6px;                   /* pulls it closer to header */
  margin-bottom: 28px;                /* more air before box */

  opacity: 0;
  transform: translateY(18px);
  animation: missionReveal 0.9s ease-out forwards;
  animation-delay: 0.35s;

  text-shadow:
    0 0 12px rgba(0,234,255,0.35),
    0 0 26px rgba(0,234,255,0.18);
}

@keyframes missionReveal{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}



/* =========================================
PARALLAX BACKGROUND SYSTEM (FIXED — VALID CSS)
========================================= */
.mission-bg,
.values-bg,
.services-bg,
.pricing-bg,
.contact-bg,
.capabilities-bg{
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.mission-bg::after,
.values-bg::after,
.services-bg::after,
.pricing-bg::after,
.contact-bg::after,
.capabilities-bg::after{
  content: "";
  position: absolute;
  inset: -30% 0;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
  pointer-events: none;
}

.mission-bg::before,
.values-bg::before,
.services-bg::before,
.pricing-bg::before,
.contact-bg::before,
.capabilities-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
  z-index: 1;
}

.mission-bg > *,
.values-bg > *,
.services-bg > *,
.pricing-bg > *,
.contact-bg > *,
.capabilities-bg > *{
  position: relative;
  z-index: 2;
}


/* Background image bindings — ACTIVE ASSET ROOT */
.mission-bg,
.mission-bg::after{
  background-image:url("assets-new/mission.jpg");
}

.values-bg,
.values-bg::after{
  background-image:url("assets-new/values.jpg");
}

.services-bg,
.services-bg::after{
  background-image:url("assets-new/services.jpg");
}

.pricing-bg,
.pricing-bg::after{
  background-image:url("assets-new/pricing2.jpg");
}

.contact-bg,
.contact-bg::after{
  background-image:url("assets-new/contact.jpg");
  background-position:center 42%;
  background-size:110%;
}

/* Capabilities — match the same binding system */
.capabilities-bg,
.capabilities-bg::after{
  background-image:url("assets-new/capabilities.jpg");
}

/* Keep hero’s black base (image now handled above) */
.hidden-hero.capabilities-bg{
  background-color:#000;
}

/* =========================================
   MISSION
========================================= */

.mission-box{
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px 44px;               /* a bit roomier */
  border-radius: 22px;

  background: linear-gradient(
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.82)
  );

  border: 1px solid rgba(0,234,255,0.35);   /* slightly calmer border */

  box-shadow:
    0 0 24px rgba(0,234,255,0.22),
    0 0 42px rgba(0,0,0,0.95);

  text-align: center;                 /* looks cleaner with your current <p> */
  font-size: 1.15rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* Your current HTML is a single <p> in .mission-box.
   So we style it as a single strong paragraph (no flex/lines). */
.mission-box p{
  margin: 0;
  color: rgba(225,245,255,0.9);
  text-shadow: 0 0 10px rgba(0,234,255,0.18);
}


/* ABOUT SECTION — tighter than Mission */
#about{
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 90px;
}

#about .mission-box{
  max-width: 900px;
}


/* =========================================
   VALUES
========================================= */
.values-grid{
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* =========================================
   VALUES — SUPPORTING TEXT BLOCK
========================================= */
.values-support{
  max-width: 760px;
  margin: 36px auto 0;
  padding: 18px 26px;

  background: rgba(0,0,0,0.55);
  border-radius: 14px;
  border: 1px solid rgba(0,234,255,0.25);

  text-align: center;
  box-shadow:
    0 0 18px rgba(0,0,0,0.85),
    inset 0 0 0 1px rgba(0,234,255,0.08);
}

.values-support p{
  font-size: 1.08rem;
  line-height: 1.85;
  letter-spacing: 0.06em;      /* ⬅ stretched */
  color: var(--gold);          /* ⬅ gold */
  margin: 0;

  text-shadow:
    0 0 10px rgba(247,216,138,0.35),
    0 0 22px rgba(0,0,0,0.85);
}

.value-card{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.88),
    rgba(0,0,0,0.70)
  );
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid rgba(0,234,255,0.45);
  box-shadow:
    0 0 26px rgba(0,234,255,0.35),
    0 0 42px rgba(0,0,0,0.95);
}


.value-card h3{
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: var(--neon);
}

.value-card p{
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(210,235,245,0.88);
}

.value-card:hover{
  transform: translateY(-6px);
  border-color: var(--neon);
  box-shadow: 0 0 26px rgba(0, 234, 255, 0.36);
}

/* =========================================
   SERVICES (funnel cards)
========================================= */
.funnel-grid{
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px;
}

.funnel-card{
  background: rgba(0, 0, 0, 0.78);
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid rgba(0, 234, 255, 0.28);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.85);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}

.funnel-card:hover{
  transform: translateY(-6px);
  border-color: rgba(0, 234, 255, 0.6);
  box-shadow: 0 0 28px rgba(0, 234, 255, 0.30);
}

.funnel-pop{
  border-color: rgba(0, 234, 255, 0.62);
  box-shadow: 0 0 30px rgba(0, 234, 255, 0.28);
}

.funnel-badge{
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  color: #dffbff;
  background: rgba(0, 234, 255, 0.12);
  border: 1px solid rgba(0, 234, 255, 0.25);
  margin-bottom: 12px;
}

.funnel-title{
  font-size: 1.35rem;
  color: var(--neon);
  margin-bottom: 10px;
}

.funnel-desc{
  font-size: 1.02rem;
  opacity: 0.93;
  line-height: 1.6;
  margin-bottom: 12px;
}

.funnel-list{
  margin-left: 18px;
  margin-bottom: 12px;
  line-height: 1.7;
  opacity: 0.95;
}

/* =========================================
   PRICING — NORMALIZED & FINAL
========================================= */

.pricing-block{
  max-width: 980px;
  margin: 0 auto 60px;
  padding: 0 20px;
  font-size: 1.15rem;          /* 🔒 BASE SIZE — EVERYTHING INHERITS */
  line-height: 1.8;
}

/* Remove divider artifacts */
.pricing-bg{ border-bottom: none; }
.pricing-bg + .contact-bg{ border-top: none; }

/* Intro */
.pricing-intro{
  margin-top: 10px;
  font-size: 1.18rem;
  opacity: 0.92;
  text-align: center;
  line-height: 1.7;
}

/* Cards container */
.pricing-container{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Card ordering */
.pricing-card[data-card="custom"]{ order: 1; }
.pricing-card[data-card="clarity"]{ order: 2; }
.pricing-card[data-card="advisory"]{ order: 3; }
.pricing-card[data-card="quickwin"]{ order: 4; }
.pricing-card[data-card="transformation"]{ order: 5; }

.pricing-card{
  background: rgba(0,0,0,0.80);
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(0,234,255,0.35);
  box-shadow: 0 0 20px rgba(0,234,255,0.20);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  font-size: 1.15rem;
  line-height: 1.8;
}

/* Emphasis card */
.pricing-card.popular{
  border-color: rgba(0,234,255,0.78);
  box-shadow: 0 0 34px rgba(0,234,255,0.32);
  transform: translateY(-2px);
}

/* Badge */
.popular-badge{
  position: absolute;
  top: -12px;
  right: 16px;
  background: linear-gradient(120deg,#00eaff,#34ffc8);
  color: #000;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0,234,255,0.55);
}

/* Titles */
.pricing-tier{
  font-size: 1.45rem;
  color: var(--neon);
  line-height: 1.25;
}

.pricing-price{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}

/* Body text — SINGLE SOURCE */
.pricing-desc{
  font-size: inherit;       /* 🔒 NO SHRINKING POSSIBLE */
  line-height: inherit;
  opacity: 0.95;
}

/* CTA */
.learn-more-btn{
  margin-top: 16px;
  align-self: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--neon);
  color: var(--neon);
  background: transparent;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  z-index: 5;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.learn-more-btn:hover{
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 22px rgba(0,234,255,0.75);
  transform: translateY(-1px);
}

/* Hero */
.pricing-hero{
  padding-bottom: 80px;
}

.pricing-hero h1{
  letter-spacing: 0.015em;
}

.pricing-hero .pricing-subtitle{
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 720px;
  margin: 14px auto 0;
}

/* CTA section */
.pricing-cta{
  max-width: 960px;
  margin: 36px auto 90px;
  padding: 0 20px;
  text-align: center;
}

.pricing-cta h2{
  font-size: 1.6rem;
  margin-bottom: 16px;
}


/* =========================================
   CONTACT
========================================= */
.contact-card{
  max-width: 720px;
  margin: 30px auto 0 auto;
  padding: 30px 30px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(0, 234, 255, 0.18), rgba(0, 0, 0, 0.90));
  border: 1px solid rgba(0, 234, 255, 0.62);
  box-shadow: 0 0 26px rgba(0, 234, 255, 0.45), 0 0 40px rgba(0, 0, 0, 0.95);
  text-align: center;
}

.contact-name{
  font-size: 1.55rem;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 800;
}

.contact-line{
  font-size: 1.16rem;
  margin-bottom: 4px;
  opacity: 0.96;
}

/* Social panel */
.contact-social-panel{
  max-width: 560px;
  margin: 42px auto 0 auto;
  padding: 18px 20px 22px 20px;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(0, 234, 255, 0.18), rgba(0, 0, 0, 0.95));
  border: 1px solid rgba(0, 234, 255, 0.58);
  box-shadow: 0 0 24px rgba(0, 234, 255, 0.35), 0 0 36px rgba(0, 0, 0, 0.95);
  text-align: center;
}

.social-panel-title{
  font-size: 1.18rem;
  margin-bottom: 14px;
  color: #dffbff;
  font-weight: 700;
}

.social-links{
  display: flex;
  justify-content: center;
  gap: 26px;
}

.social-circle{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 234, 255, 0.20), rgba(0, 0, 0, 1));
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 18px rgba(0, 234, 255, 0.55), 0 0 30px rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(0, 234, 255, 0.25);
  cursor: pointer;
}

.social-circle::before{
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  /* FORCE VISIBILITY */
  filter:
    brightness(2.4)
    contrast(1.4)
    drop-shadow(0 0 12px rgba(0,234,255,0.55));

  opacity: 1;
}
.social-circle:hover{
  transform: translateY(-2px);
  box-shadow:
    0 0 26px rgba(0,234,255,0.75),
    0 0 40px rgba(0,0,0,0.95);
}

.social-circle:hover::before{
  filter:
    brightness(2.8)
    contrast(1.6)
    drop-shadow(0 0 16px rgba(0,234,255,0.75));
}

/* Social icon images */
.social-circle[aria-label="Facebook"]::before {
  background-image: url("assets-new/facebook.png");
}

.social-circle[aria-label="Instagram"]::before {
  background-image: url("assets-new/instagram.png");
}

.social-circle[aria-label="LinkedIn"]::before {
  background-image: url("assets-new/linkedin.png");
}


/* =========================================
   FADE-IN ANIMATION (SAFE DEFAULT)
========================================= */
.content-section,
.value-card,
.funnel-card,
.pricing-card,
.contact-card,
.contact-social-panel{
  opacity: 1;
  transform: none;
}

/* Only enable fade-in when JS adds .js-fade to body */
.js-fade .content-section,
.js-fade .value-card,
.js-fade .funnel-card,
.js-fade .pricing-card,
.js-fade .contact-card,
.js-fade .contact-social-panel{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}

.js-fade .fade-in{
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* =========================================
   HIDDEN PAGES (pricing/about/capabilities etc.)
========================================= */
.hidden-page{
  background: #000;
}

/* Prevent anchor jumps from hiding content behind navbar on hidden pages */
.hidden-page section{
  scroll-margin-top: 110px;
}

/* HERO */
.hidden-hero{
  padding: 90px 20px 54px; /* more bottom space */
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dark overlay for hidden page heroes */
.hidden-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

.hidden-hero > *{
  position: relative;
  z-index: 1;
}
.hidden-hero h1{
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.hidden-hero .pricing-subtitle{
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 680px;
  margin: 6px auto 0;
  line-height: 1.6;
}

.hidden-hero .price{
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 800;
}


/* MAIN GLASS CARD — WITH BACKGROUND IMAGE */
.hidden-card{
  max-width: 960px;
  margin: 18px auto 48px;
  padding: 38px 40px;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url("assets-new/capabilities-inner.jpg");

  background-size: cover;
  background-position: center;

  border-radius: 20px;
  border: 1px solid rgba(0, 234, 255, 0.55);
  box-shadow:
    0 0 26px rgba(0, 234, 255, 0.35),
    0 0 40px rgba(0,0,0,0.95);

  font-size: 1.15rem;
  line-height: 1.8;
}

/* DISABLED: iOS-safe — background handled by .hidden-card */
.hidden-card.capabilities-card::before{
  content: none;
}


/* Keep all content above background */
.hidden-card > *{
  position: relative;
  z-index: 1;
}


.hidden-card h2{
  margin-top: 26px;
  margin-bottom: 8px;
  color: var(--neon);
  letter-spacing: 0.02em;
}

.hidden-card ul{
  margin: 12px 0 20px;
  padding-left: 0;
  list-style-position: inside;
  font-size: 1.1rem;
  line-height: 1.75;
}
.hidden-card li::marker{
  color: var(--neon);
}
.hidden-card li{
  margin-bottom: 6px;         /* tighter vertical rhythm */
  padding-left: 4px;          /* subtle text tuck */
}
.hidden-card li::marker{
  color: var(--neon);
  font-size: 0.9em;
}
.equal-title{
  margin: 0 0 12px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  text-transform: none;
}

.hidden-card p{
  margin-left: 0;
  font-size: 1.15rem;     /* MATCH mission & pricing body */
  line-height: 1.8;       /* SAME rhythm as main site */
  opacity: 0.95;
}

/* About page readability tightening (safe) */
.hidden-page .hidden-card{
  max-width: 860px;
}

.hidden-page .hidden-card h2{
  margin-bottom: 18px;
}
.hidden-card h2{
  max-width: 720px;
}
.hidden-page .hidden-card p{
  max-width: 720px;
  margin: 0 0 18px 0;
  font-size: 1.15rem;   /* MATCHES main site body */
  line-height: 1.8;
}

.hidden-page .hidden-card p:last-child{
  margin-bottom: 0;
  opacity: 0.9;
}

/* =========================================
   PRICING PAGE — HASH-BASED VISIBILITY
========================================= */


/* Pricing page: show all by default (safe) */
.hidden-page .pricing-section{
  display: block;
}

/* JS will add .js-pricing + .active to enforce one-section view */
.hidden-page.js-pricing .pricing-section{
  display: none;
}

.hidden-page.js-pricing .pricing-section.active{
  display: block;
}


/* =========================================
   AUDIENCE CARDS — TWO EQUAL CARDS
========================================= */
.audience-section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
}

.audience-card{
  padding: 26px 28px;
  background: rgba(0,0,0,0.75);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 26px rgba(0,0,0,0.85);
}

.audience-title{
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--neon);
}

.audience-card ul{
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.audience-card li{
  margin-bottom: 10px;
}

.muted-card{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}

.muted-card li{
  color: rgba(255,255,255,0.65);
}



/* =========================================
   HIDDEN PAGE — CTA FOOTNOTE FIX
========================================= */
.hidden-page .cta-note{
  margin-top: 28px;
  font-size: 0.95rem;
  opacity: 0.7;
  text-align: center;
}

.hidden-page .cta-note a{
  color: var(--neon);
  text-decoration: none;
  font-weight: 600;
}

.hidden-page .cta-note a:hover{
  text-decoration: underline;
}

/* =========================================
   CTA BUTTON — SINGLE SOURCE OF TRUTH
========================================= */
.cta-button{
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(120deg, #00eaff, #34ffc8);
  color: #000;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 26px rgba(0, 234, 255, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(0, 234, 255, 0.75);
}

.cta-button:link,
.cta-button:visited{
  color: #000;
  text-decoration: none;
}

/* =========================================
   BOOK MY CALL — CTA WRAPPER
========================================= */
.booking-cta{
  margin-top: 22px;
  text-align: center;
}

.booking-subtext{
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--neon);
  opacity: 0.95;
}

/* =========================================
   CONTACT FORM — GLASS STYLE
========================================= */
.contact-divider{
  margin: 26px 0 14px;
  font-size: 0.95rem;
  opacity: 0.7;
  text-align: center;
}

.contact-form{
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(0,234,255,0.35);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form textarea{
  resize: vertical;
  min-height: 110px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(255,255,255,0.55);
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: var(--neon);
  background: rgba(0,0,0,0.75);
  box-shadow:
    0 0 14px rgba(0,234,255,0.45),
    inset 0 0 0 1px rgba(0,234,255,0.25);
}

.contact-form button{
  margin-top: 6px;
}

.form-success a{
  color: var(--neon);
  font-weight: 700;
  text-decoration: none;
}

.form-success a:hover{
  text-decoration: underline;
  text-shadow: 0 0 12px rgba(0,234,255,0.6);
}

/* =========================================
   ABOUT PAGE — GRID LAYOUT
========================================= */
.about-grid{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo{
  width: 100%;
  max-width: 360px;
}

.about-photo img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(0,234,255,0.45);
  box-shadow:
    0 0 26px rgba(0,234,255,0.35),
    0 0 40px rgba(0,0,0,0.95);
}

.about-content h2{
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--neon);
}

.about-content p{
  font-size: 1.08rem;
  line-height: 1.75;
  opacity: 0.95;
  margin-bottom: 18px;
}

.hidden-page .about-grid{
  margin-top: 20px;
}

/* ABOUT PAGE — RESPONSIVE */
@media (max-width: 900px){
  .about-grid{
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .about-photo{
    margin: 0 auto;
    max-width: 280px;
  }

  .about-content h2{
    margin-top: 10px;
  }
}

/* =========================================
   ABOUT PAGE — BADGES
========================================= */
.about-badges{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px auto 40px;
  padding: 0 20px;
}

.about-badge{
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #dffbff;
  background: rgba(0, 234, 255, 0.12);
  border: 1px solid rgba(0, 234, 255, 0.35);
  box-shadow: 0 0 14px rgba(0, 234, 255, 0.25);
}

/* =========================================
   ABOUT PAGE — SUBTLE ENTRANCE ANIMATION (FIXED)
   IMPORTANT:
   - only runs when body has: class="hidden-page about-page"
========================================= */
/* Default: content is visible */
.hidden-page.about-page .hidden-hero,
.hidden-page.about-page .about-photo,
.hidden-page.about-page .about-content,
.hidden-page.about-page .hidden-card{
  opacity: 1;
  transform: none;
}

/* Animated state (JS-controlled) */
.js-fade.hidden-page.about-page .hidden-hero,
.js-fade.hidden-page.about-page .about-photo,
.js-fade.hidden-page.about-page .about-content,
.js-fade.hidden-page.about-page .hidden-card{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js-fade.hidden-page.about-page .fade-in{
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce){
  .js-fade.hidden-page.about-page *{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =========================================
   FORCE FIX — ADVISORY PRICING PAGE TEXT SIZE
   (isolated, no side effects)
========================================= */

.hidden-page.js-pricing .pricing-section.active .hidden-card,
.hidden-page.js-pricing .pricing-section.active .hidden-card p,
.hidden-page.js-pricing .pricing-section.active .hidden-card li{
  font-size: 1.18rem;
  line-height: 1.85;
}
/* =========================================
   🔒 MOBILE ONLY SECTION — SINGLE SOURCE OF TRUTH
   Applies ONLY under 768px
========================================= */
@media (max-width: 768px){

  /* GLOBAL MOBILE SAFETY */
  body{
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  #particle-canvas{
    display: none;
  }

  /* =========================================
     NAVBAR — MOBILE DROPDOWN (FINAL)
  ========================================= */
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--neon);
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 3001;
  }

.nav-links{
  display: none;
  position: fixed;
  top: 72px; /* below navbar height */
  left: 12px;
  right: 12px;

  flex-direction: column;
  align-items: center;
  gap: 14px;

  padding: 18px 14px;

  background: rgba(0,0,0,0.96);
  border-radius: 16px;
  border: 1px solid rgba(0,234,255,0.25);
  box-shadow: 0 18px 40px rgba(0,0,0,0.85);

  z-index: 3000;
}


  .navbar.nav-open .nav-links{
    display: flex;
  }

  /* =========================================
     HERO — STOP HORIZONTAL SCROLL
  ========================================= */
  .hero-content{
    overflow-x: hidden;
  }

  .hero-values{
    display: flex !important;
    flex-direction: column !important;
    gap: 18px;
  }

  .hero-card{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* =========================================
     LOGO — MOBILE SIZE
  ========================================= */
  .intro-logo{
  width: 100%;
  max-width: 72vw;
  max-height: 24vh;
  margin: 6px 0 10px;
  object-fit: contain;
  transform: none;
  animation: none;
}

  /* AUDIENCE SECTION */
  .audience-section{
    grid-template-columns: 1fr;
  }

  /* GENERAL LAYOUT GUARDS */
  .content-section{
    padding-left: 20px;
    padding-right: 20px;
  }
}




/* =========================================
   MOBILE — OVERSIZED LOGO (WOLF FOCUS)
========================================= */

/*
@media (max-width: 768px){

  .intro-logo{
    width: 120vw !important;
    max-width: none !important;
    height: auto;

    margin: 8px -10vw 20px !important;

    opacity: 1;

    object-fit: cover;
    object-position: center top;

    filter:
      drop-shadow(0 0 36px rgba(0,234,255,0.55))
      drop-shadow(0 0 80px rgba(0,0,0,0.95));

    transform: none !important;
    animation: none !important;
  }

}
*/

/* =========================================
   CONTACT — SOCIAL ICON VISIBILITY FIX (GLOBAL)
========================================= */

.contact-bg{
  position: relative;
  z-index: 1;
}

.contact-bg::before,
.contact-bg::after{
  z-index: 0;
}

.contact-card,
.contact-social-panel{
  position: relative;
  z-index: 5;
}
/* =========================================
CHATBOT — FLOATING WIDGET (ISOLATED)
========================================= */

#chatbot{
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 5000;
  font-family: "Inter", system-ui, sans-serif;
}

#chatbot-toggle{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  background: linear-gradient(120deg,#00eaff,#34ffc8);
  color: #000;
  box-shadow: 0 0 28px rgba(0,234,255,0.65);
}

#chatbot-window{
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  max-height: 420px;
  background: rgba(0,0,0,0.92);
  border-radius: 18px;
  border: 1px solid rgba(0,234,255,0.35);
  box-shadow: 0 0 40px rgba(0,0,0,0.95);
  display: none;
  flex-direction: column;
}

#chatbot-window.open{
  display: flex;
}

.chatbot-header{
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--neon);
  border-bottom: 1px solid rgba(0,234,255,0.25);
}

.chatbot-header button{
  background: none;
  border: none;
  color: var(--neon);
  font-size: 1.4rem;
  cursor: pointer;
}

#chatbot-messages{
  padding: 14px;
  overflow-y: auto;
  flex: 1;
  font-size: 0.95rem;
}

.bot-msg{
  background: rgba(0,234,255,0.12);
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  color: #e6fbff;
}

.chatbot-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
}

.chatbot-actions button{
  background: transparent;
  border: 1px solid rgba(0,234,255,0.45);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--neon);
  font-size: 0.8rem;
  cursor: pointer;
}

.chatbot-actions button:hover{
  background: var(--neon);
  color: #000;
}
#chatbot-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
}

.chatbot-icon{
  color:#000;
  width:26px;
  height:26px;
}

.user-msg{
  background: rgba(255,255,255,0.08);
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  color: #ffffff;
  align-self: flex-end;
}
/* =========================================
CHATBOT HEADER — LOGO + TITLE
========================================= */

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, #0b0f12, #0f1a1f);
  border-bottom: 1px solid rgba(0, 238, 255, 0.2);
}

.chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 238, 255, 0.6));
}

.chatbot-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--neon, #00eaff);
}
/* =========================================
CHATBOT MESSAGE CARDS — NON-BUBBLE UI
========================================= */

#chatbot-messages {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bot-msg,
.user-msg {
  width: 100%;
  padding: 16px 18px;
  border-radius: 6px;                 /* ⬅ kills bubble feel */
  font-size: 0.95rem;
  line-height: 1.5;
  background: rgba(12, 18, 22, 0.95);
  border-left: 4px solid rgba(0, 238, 255, 0.65);
  box-shadow:
    0 0 18px rgba(0, 238, 255, 0.12),
    inset 0 0 0 1px rgba(0, 238, 255, 0.18);
}

/* Bot messages */
.bot-msg {
  color: #e6faff;
}

/* User messages */
.user-msg {
  background: rgba(0, 238, 255, 0.08);
  border-left-color: rgba(247, 216, 138, 0.85);
  color: #ffffff;
}
/* =====================================================
CHATBOT EXPERIMENT ZONE — SAFE OVERRIDES ONLY
(Do not edit earlier rules)
===================================================== */
/* Toggle chatbot redesign ON/OFF */
:root{
  --chatbot-redesign: 1; /* set to 0 to disable instantly */
}
/* =====================================================
CHATBOT EXPERIMENT ZONE — STEP 1
Safe override: message cards (no bubbles)
===================================================== */

html #chatbot-messages{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

html .bot-msg,
html .user-msg{
  all: unset;
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 100%;
  box-sizing: border-box;
}

html .bot-msg{
  background: rgba(15, 26, 31, 0.95);
  border: 1px solid rgba(0, 234, 255, 0.28);
  color: #e6fbff;
  box-shadow: 0 0 14px rgba(0, 234, 255, 0.12);
}

html .user-msg{
  background: rgba(0, 234, 255, 0.14);
  border: 1px solid rgba(0, 234, 255, 0.45);
  color: #ffffff;
}
