/* ========================================================================
   SOFTNET — Shared Site CSS
   Used across every inner page. Reflects the brand guidelines exactly.
   ======================================================================== */

:root {
  --teal: #00B19D;
  --teal-deep: #007A6B;
  --mint: #00E5C7;
  --ink: #0A1628;
  --ink-2: #14233A;
  --graphite: #1F2937;
  --slate: #6B7280;
  --mist: #E5E9EE;
  --cloud: #F7F9FB;
  --white: #FFFFFF;
  --amber: #F5A623;
  --red: #E63946;
  --green: #16A34A;

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7rem);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
  --shadow-lift: 0 16px 40px rgba(10, 22, 40, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--graphite);
  line-height: 1.55;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.22s var(--ease); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.mono { font-family: 'JetBrains Mono', monospace; }
.display { font-family: 'Montserrat', sans-serif; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--ink); letter-spacing: -0.015em; }

.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.kicker.on-dark { color: var(--mint); }
.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 177, 157, 0.35); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.3); }
.btn-secondary:hover { border-color: var(--mint); color: var(--mint); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--mist); }
.btn-ghost:hover { color: var(--teal); border-color: var(--teal); }
.btn-on-teal { background: var(--ink); color: var(--white); }
.btn-on-teal:hover { background: var(--ink-2); transform: translateY(-1px); }
.arrow { display: inline-block; transition: transform 0.22s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== UTILITY NAV ===== */
.util-nav {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
}
.util-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.5rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}
.util-left { display: flex; gap: 1.5rem; align-items: center; }
.util-incident {
  color: var(--mint);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 700;
}
.util-incident::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 229, 199, 0.6);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 199, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(0, 229, 199, 0); }
}
.util-right { display: flex; gap: 1.5rem; }
.util-right a:hover { color: var(--mint); }

/* ===== MAIN NAV ===== */
.main-nav {
  background: rgba(10, 22, 40, 0.92);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.brand-symbol {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-word {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--teal);
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  transition: all 0.22s var(--ease);
}
.nav-links > li > a:hover { color: var(--mint); background: rgba(0, 229, 199, 0.06); }
.nav-links > li > a.active { color: var(--mint); }
.has-dropdown::after {
  content: '▾';
  margin-left: 0.3rem;
  font-size: 0.7rem;
  opacity: 0.5;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 0.5rem;
  min-width: 280px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.22s var(--ease);
  list-style: none;
  box-shadow: var(--shadow-lift);
  z-index: 110;
}
.dropdown.wide { min-width: 720px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.25rem; padding: 1rem; }
.nav-links > li:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.22s var(--ease);
}
.dropdown a:hover { background: rgba(0, 229, 199, 0.08); color: var(--mint); }
.dropdown-section {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--mint);
  letter-spacing: 0.18em;
  padding: 0.5rem 0.75rem 0.25rem;
  text-transform: uppercase;
}
.nav-actions { display: flex; gap: 0.75rem; align-items: center; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .util-left .util-meta { display: none; }
}

/* ===== INNER PAGE HERO ===== */
.inner-hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.inner-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 177, 157, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 177, 157, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.inner-hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  right: -250px; top: -150px;
  background: radial-gradient(circle, rgba(0, 229, 199, 0.18) 0%, rgba(0, 177, 157, 0.06) 35%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  animation: drift 24s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}
.inner-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb .sep { color: var(--teal); margin: 0 0.5rem; }
.inner-hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.inner-hero h1 .accent { color: var(--teal); }
.inner-hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin-bottom: 2rem;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.trust-strip {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}
.trust-strip strong { color: var(--mint); font-weight: 700; }

/* ===== AI-AT-WORK BACKGROUND VISUAL ===== */
.ai-canvas {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 36vw, 480px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.85;
}
.ai-canvas svg { width: 100%; height: 100%; }
@media (max-width: 980px) { .ai-canvas { display: none; } }

/* hexagon ring orbit (used in many heroes) */
@keyframes orbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes orbit-rev {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}
@keyframes blip {
  0%, 100% { opacity: 0.3; r: 4; }
  50% { opacity: 1; r: 6; }
}
@keyframes pulse-line {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.45; }
  50% { stroke-dashoffset: -20; opacity: 0.85; }
}

/* Section primitives */
.section { padding: var(--section-y) 0; }
.section.dark { background: var(--ink); color: var(--white); }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--white); }
.section.cloud { background: var(--cloud); }
.section-header { margin-bottom: 3.5rem; max-width: 760px; }
.section-headline {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
  color: var(--ink);
}
.section.dark .section-headline { color: var(--white); }
.section-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  color: var(--slate);
}
.section.dark .section-sub { color: rgba(255, 255, 255, 0.72); }

/* Why-us / pillar cards */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pillar {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: all 0.32s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--teal); }
.pillar .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--teal);
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.pillar h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.pillar p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
}
.section.dark .pillar { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.08); }
.section.dark .pillar:hover { background: rgba(0, 177, 157, 0.06); }
.section.dark .pillar p { color: rgba(255, 255, 255, 0.72); }
@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

/* Stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat {
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.4;
}
.section.dark .stat-label { color: rgba(255, 255, 255, 0.68); }
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

/* Scope list */
.scope-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.scope-item {
  background: var(--white);
  border: 1px solid var(--mist);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: all 0.22s var(--ease);
}
.scope-item:hover { border-left-width: 5px; padding-left: calc(1.25rem - 2px); }
.scope-item .scope-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}
.scope-item .scope-body strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.scope-item .scope-body span {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.45;
}
@media (max-width: 720px) { .scope-list { grid-template-columns: 1fr; } }

/* Conversion band */
.convert {
  background: var(--teal);
  color: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.convert::before, .convert::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse at center, rgba(0, 229, 199, 0.4), transparent 60%);
}
.convert::before { left: -20%; }
.convert::after { right: -20%; }
.convert-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }
.convert h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.convert p {
  color: rgba(10, 22, 40, 0.85);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 4.5rem 0 1.75rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 3fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .brand-mark { margin-bottom: 1.5rem; }
.footer-brand .brand-word { color: var(--white); }
.signal-block { max-width: 360px; }
.signal-block h4 {
  font-family: 'JetBrains Mono', monospace;
  color: var(--mint);
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.signal-block p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.signal-form {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.signal-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
}
.signal-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.signal-form button {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0 1.25rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.22s var(--ease);
}
.signal-form button:hover { background: var(--mint); color: var(--ink); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  transition: color 0.22s var(--ease);
}
.footer-col a:hover { color: var(--mint); }
.incident-line {
  color: var(--mint);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.compliance-band {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}
.compliance-band .legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.compliance-band .iso-badges { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.iso-badge {
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.compliance-band .tagline {
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== AGENT-CHAT (HUMAN ELEMENT) PANELS ===== */
.agent-panel {
  background: rgba(0, 177, 157, 0.04);
  border: 1px solid rgba(0, 177, 157, 0.18);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: flex-start;
}
.agent-panel .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.25rem;
  flex-shrink: 0;
  position: relative;
}
.agent-panel .avatar::after {
  content: '';
  position: absolute;
  bottom: 2px; right: 2px;
  width: 14px; height: 14px;
  background: var(--green);
  border: 2px solid var(--white);
  border-radius: 50%;
}
.agent-panel .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
  font-size: 1rem;
}
.agent-panel .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.agent-panel .quote {
  font-style: italic;
  color: var(--graphite);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* Cybersecurity service detail page-specific */
.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-tile {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: all 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--teal); }
.service-tile .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.service-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.service-tile p { font-size: 0.88rem; color: var(--slate); line-height: 1.5; }
.service-tile .more {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 880px) { .service-tile-grid { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .service-tile-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== WHATSAPP FLOATING WIDGET ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  text-decoration: none;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55); }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@media (max-width: 480px) {
  .whatsapp-float { width: 48px; height: 48px; bottom: 1rem; right: 1rem; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .whatsapp-tooltip { display: none; }
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.22s var(--ease);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ===== MOBILE HAMBURGER ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.25s var(--ease);
}
.nav-hamburger:hover { background: rgba(0,229,199,0.08); }
@media (max-width: 980px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none !important; }
  .nav-actions { display: none !important; }
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  padding: 1.25rem var(--gutter);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.25s var(--ease), transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.mobile-close:hover { background: rgba(255,255,255,0.06); color: var(--mint); }
.mobile-links { list-style: none; }
.mobile-links li { margin-bottom: 0.5rem; }
.mobile-links a {
  display: block;
  padding: 0.85rem 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}
.mobile-links a:hover { background: rgba(0,229,199,0.08); color: var(--mint); }

/* ===== FAQ ACCORDION ===== */
.faq-section { padding: var(--section-y) 0; background: var(--cloud); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.faq-item:hover { border-color: var(--teal); }
.faq-item.open { box-shadow: var(--shadow-lift); border-color: var(--teal); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}
.faq-question::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.25rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.22s var(--ease);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ===== NEWS / DAILY SIGNAL ===== */
.news-section { padding: var(--section-y) 0; }
.news-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: all 0.32s var(--ease);
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--teal); }
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.news-source { color: var(--teal); font-weight: 700; }
.news-date { color: var(--slate); }
.news-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.news-title a { color: var(--ink); transition: color 0.2s; }
.news-title a:hover { color: var(--teal); }
.news-summary {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.55;
}
.news-loading {
  text-align: center;
  color: var(--slate);
  font-size: 0.95rem;
  padding: 2rem 0;
  grid-column: 1 / -1;
}
@media (max-width: 880px) { .news-feed { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .news-feed { grid-template-columns: repeat(2, 1fr); } }

/* ===== ADMIN / LOGO UPLOAD PAGE ===== */
.admin-panel {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}
.admin-panel h2 { margin-bottom: 0.5rem; }
.admin-panel p { color: var(--slate); margin-bottom: 2rem; }
.logo-upload-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.logo-upload-row input[type="file"] {
  padding: 0.75rem;
  border: 2px dashed var(--mist);
  border-radius: var(--r-md);
  background: var(--cloud);
  cursor: pointer;
  font-family: inherit;
}
.logo-upload-row input[type="file"]:hover { border-color: var(--teal); }
.logo-preview {
  max-width: 240px;
  max-height: 120px;
  object-fit: contain;
  display: none;
  margin-top: 0.5rem;
}
.logo-saved {
  display: none;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.admin-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mist);
  font-size: 0.85rem;
  color: var(--slate);
}

/* ===== EXTREME RESPONSIVENESS ===== */

/* Fold phones (Galaxy Z Fold outer, < 360px) */
@media (max-width: 359px) {
  :root { --gutter: 0.875rem; --section-y: 2.5rem; }
  .inner-hero { padding: 2.5rem 0 2rem; }
  .inner-hero h1 { font-size: 1.6rem; }
  .inner-hero .lede { font-size: 0.92rem; }
  .breadcrumb { font-size: 0.65rem; }
  .section-headline { font-size: 1.35rem; }
  .section-sub { font-size: 0.9rem; }
  .pillar { padding: 1.25rem; }
  .pillar h3 { font-size: 1rem; }
  .pillar p { font-size: 0.85rem; }
  .trust-strip { gap: 0.75rem; font-size: 0.65rem; }
  .hero-cta-row { flex-direction: column; }
  .btn { padding: 0.7rem 1.1rem; font-size: 0.85rem; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-num { font-size: 1.5rem; }
  .scope-list { grid-template-columns: 1fr; }
  .scope-item { padding: 0.85rem 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .compliance-band { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .convert h2 { font-size: 1.4rem; }
  .convert p { font-size: 0.9rem; }
  .service-tile-grid { grid-template-columns: 1fr; }
  .news-feed { grid-template-columns: 1fr; }
  .faq-question { font-size: 0.95rem; padding: 1rem 1.15rem; }
  .faq-item.open .faq-answer { padding: 0 1.15rem 1rem; }
  .mobile-links a { font-size: 1rem; padding: 0.7rem 0.85rem; }
}

/* Small phones (360–480px) */
@media (min-width: 360px) and (max-width: 480px) {
  :root { --gutter: 1rem; --section-y: 3rem; }
  .inner-hero { padding: 3rem 0 2.5rem; }
  .inner-hero h1 { font-size: 1.85rem; }
  .section-headline { font-size: 1.55rem; }
  .pillar { padding: 1.35rem; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .compliance-band { flex-direction: column; align-items: flex-start; }
  .convert h2 { font-size: 1.6rem; }
}

/* Tablets (481–980px) */
@media (min-width: 481px) and (max-width: 980px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .service-tile-grid { grid-template-columns: repeat(2, 1fr); }
  .news-feed { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .compliance-band { flex-wrap: wrap; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* Large tablets / small laptops (981–1200px) */
@media (min-width: 981px) and (max-width: 1200px) {
  .nav-links > li > a { padding: 0.5rem 0.7rem; font-size: 0.88rem; }
  .dropdown.wide { min-width: 620px; }
}

/* Landscape fold phones / small height */
@media (max-height: 500px) and (orientation: landscape) {
  .inner-hero { padding: 2.5rem 0 2rem; }
  .trust-strip { margin-top: 1.5rem; padding-top: 1.5rem; }
  .ai-canvas { display: none; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  :root {
    --teal: #008F7F;
    --mint: #00C4A7;
    --ink: #000000;
    --ink-2: #111111;
    --graphite: #222222;
    --slate: #444444;
  }
  .btn-primary { background: #000; color: #fff; border: 2px solid #000; }
  .btn-secondary { border: 2px solid currentColor; }
  .pillar, .service-tile, .faq-item, .news-card { border: 2px solid var(--slate); }
  .scope-item { border: 2px solid var(--slate); border-left-width: 4px; }
}
