/* ==========================================================================
   AXOLOTLS INNOVATIVE TECHNOLOGIES — Design System
   Clean Corporate Light Theme
   ========================================================================== */

:root {
  /* Brand palette */
  --brand-900: #062a4a;
  --brand-800: #0a3d62;
  --brand-700: #0e4c78;
  --brand-600: #1565a3;
  --brand-500: #1c7ed6;   /* primary blue */
  --brand-400: #3b9ae6;
  --accent-500: #16c2a3;  /* teal */
  --accent-400: #2dd4bf;

  /* Neutrals */
  --ink-900: #0f1b2d;
  --ink-700: #2b3a4f;
  --ink-500: #5a6b80;
  --ink-300: #8fa0b4;
  --line: #e4eaf1;
  --surface: #ffffff;
  --surface-2: #f5f8fc;
  --surface-3: #eef3fa;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 27, 45, .06), 0 1px 3px rgba(15, 27, 45, .08);
  --shadow-md: 0 6px 18px rgba(15, 27, 45, .08);
  --shadow-lg: 0 18px 48px rgba(15, 27, 45, .12);
  --radius: 14px;
  --radius-lg: 22px;
  --gradient: linear-gradient(135deg, var(--brand-600), var(--accent-500));
  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-700);
  background: var(--surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.18; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--ink-500); }
a  { color: var(--brand-500); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-700); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }
.bg-soft { background: var(--surface-2); }
.bg-mesh {
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(28,126,214,.10), transparent 60%),
    radial-gradient(700px 380px at -10% 20%, rgba(22,194,163,.10), transparent 60%),
    var(--surface);
}
.text-center { text-align: center; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Eyebrow + headings */
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-600);
  background: var(--surface-3); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-head { max-width: 720px; margin: 0 auto 52px; }
.section-head.left { margin-inline: 0; }
.section-head p { font-size: 1.05rem; margin-top: 14px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-weight: 600; font-size: .98rem; padding: 13px 24px; border-radius: 12px;
  border: 1px solid transparent; transition: all .25s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 8px 20px rgba(21,101,163,.28); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(21,101,163,.36); }
.btn-ghost { background: var(--surface); color: var(--ink-900); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { color: var(--brand-700); border-color: var(--brand-400); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.24); color:#fff; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; color: var(--ink-900); letter-spacing: -.02em; }
.brand .logo-mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--gradient);
  display: grid; place-items: center; color: #fff; font-weight: 800; box-shadow: var(--shadow-md);
}
.brand .brand-logo { width: 44px; height: 44px; object-fit: contain; display: block; flex: 0 0 auto; }
.brand .brand-logo-full { height: 42px; width: auto; display: block; }
.site-footer .brand .brand-logo-full { height: 34px; background: #fff; padding: 7px 11px; border-radius: 10px; }
@media (max-width: 460px){ .brand .brand-logo-full { height: 34px; } }
.brand .brand-name { font-size: 1.06rem; line-height: 1; }
.brand .brand-sub { display:block; font-size: .62rem; font-weight: 600; letter-spacing: .18em; color: var(--ink-300); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  color: var(--ink-700); font-weight: 500; font-size: .95rem; padding: 9px 14px; border-radius: 9px;
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-700); background: var(--surface-3); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink-900); margin: 5px 0; transition: .3s; border-radius: 2px; }

@media (max-width: 940px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px 24px 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .35s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 12px; }
  .nav-toggle { display: block; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 92px 0 76px; overflow: hidden; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 span { color: var(--brand-600); }
.hero .lead { font-size: 1.18rem; margin: 22px 0 30px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 34px; display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust b { font-size: 1.7rem; color: var(--ink-900); }
.hero-trust small { color: var(--ink-500); font-size: .85rem; }

.hero-visual { position: relative; }
.hero-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 24px; position: relative; z-index: 2;
}
.hero-card .hc-row { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 12px; background: var(--surface-2); margin-bottom: 12px; }
.hero-card .hc-row:last-child { margin-bottom: 0; }
.hc-icon { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; color:#fff; flex: 0 0 auto; font-size: 1.2rem; }
.hc-row b { color: var(--ink-900); display: block; font-size: .98rem; }
.hc-row small { color: var(--ink-500); }
.hero-blob { position: absolute; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; filter: blur(8px); opacity: .35; }
.float-badge {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; z-index: 3;
  font-weight: 600; color: var(--ink-900); font-size: .9rem; animation: floaty 4s ease-in-out infinite;
}
.float-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-500); box-shadow: 0 0 0 4px rgba(22,194,163,.18); }
.fb-1 { top: -18px; right: 26px; }
.fb-2 { bottom: -16px; left: -14px; animation-delay: 1.5s; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
}

/* ---------- Animated hero banner ---------- */
.hero-banner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 80% -15%, rgba(28,126,214,.14), transparent 60%),
    radial-gradient(820px 460px at -8% 25%, rgba(22,194,163,.14), transparent 60%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 70%);
  padding: 96px 0 84px;
}
/* animated particle/network canvas sits behind content */
.hero-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
/* faint moving grid overlay */
.hero-banner::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(20,101,163,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,101,163,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(620px 460px at 30% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(620px 460px at 30% 40%, #000 0%, transparent 75%);
  animation: gridDrift 22s linear infinite;
}
@keyframes gridDrift { to { background-position: 46px 46px, 46px 46px; } }
.hero-banner .container { position: relative; z-index: 2; }

/* floating gradient blobs */
.hb-blob { position: absolute; z-index: 0; border-radius: 50%; filter: blur(48px); opacity: .5; }
.hb-blob.b1 { width: 360px; height: 360px; top: -90px; right: -60px; background: radial-gradient(circle, rgba(45,212,191,.55), transparent 65%); animation: blobFloat 14s ease-in-out infinite; }
.hb-blob.b2 { width: 320px; height: 320px; bottom: -110px; left: -70px; background: radial-gradient(circle, rgba(28,126,214,.45), transparent 65%); animation: blobFloat 18s ease-in-out infinite reverse; }
@keyframes blobFloat { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(26px,-24px) scale(1.08);} }

/* entrance animations */
.hb-rise { opacity: 0; transform: translateY(22px); animation: hbRise .8s var(--ease) forwards; }
.hb-d1 { animation-delay: .05s; } .hb-d2 { animation-delay: .18s; } .hb-d3 { animation-delay: .32s; }
.hb-d4 { animation-delay: .46s; } .hb-d5 { animation-delay: .60s; }
@keyframes hbRise { to { opacity: 1; transform: none; } }

/* shimmering pill */
.hb-eyebrow { position: relative; overflow: hidden; }
.hb-eyebrow::after {
  content: ""; position: absolute; top: 0; left: -40%; width: 40%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.85), transparent);
  transform: skewX(-18deg); animation: shimmer 3.6s ease-in-out infinite;
}
@keyframes shimmer { 0%{ left: -45%; } 55%,100%{ left: 130%; } }
.hb-eyebrow .live-dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:#16c2a3; margin-right:7px; box-shadow:0 0 0 0 rgba(22,194,163,.6); animation: livePulse 1.8s ease-out infinite; vertical-align: middle; }
@keyframes livePulse { 0%{ box-shadow:0 0 0 0 rgba(22,194,163,.55);} 70%{ box-shadow:0 0 0 9px rgba(22,194,163,0);} 100%{ box-shadow:0 0 0 0 rgba(22,194,163,0);} }

/* rotating word */
.hero-banner h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
.word-rotator { display: inline-grid; vertical-align: bottom; }
.word-rotator > span {
  grid-area: 1 / 1; opacity: 0; transform: translateY(14px);
  background: var(--gradient); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; white-space: nowrap;
}
.word-rotator > span.active { animation: wordCycle 2.6s var(--ease); }
@keyframes wordCycle {
  0% { opacity: 0; transform: translateY(16px); }
  12%,82% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-16px); }
}

/* gradient CTA glow */
.btn-glow { position: relative; }
.btn-glow::after {
  content:""; position:absolute; inset:-2px; border-radius: 14px; z-index:-1;
  background: linear-gradient(120deg, #1c7ed6, #16c2a3, #1c7ed6); background-size: 220% 220%;
  filter: blur(9px); opacity: .55; animation: glowMove 4s ease infinite;
}
@keyframes glowMove { 0%,100%{ background-position: 0% 50%; } 50%{ background-position: 100% 50%; } }

/* animated trust counters row */
.hb-trust { margin-top: 36px; display:flex; gap: 30px; flex-wrap: wrap; }
.hb-trust div { display:flex; flex-direction:column; }
.hb-trust b { font-size: 1.8rem; color: var(--ink-900); font-weight: 800; }
.hb-trust small { color: var(--ink-500); font-size: .85rem; }

/* hero visual: orbiting tech badges around a core card */
.hb-stage { position: relative; min-height: 420px; display: grid; place-items: center; }
.hb-core {
  position: relative; z-index: 3; width: 100%; max-width: 360px;
  background: rgba(255,255,255,.86); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 22px; animation: coreFloat 6s ease-in-out infinite;
}
@keyframes coreFloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.hb-core .hc-row { display:flex; align-items:center; gap:13px; padding:12px; border-radius:11px; background: var(--surface-2); margin-bottom:10px; }
.hb-core .hc-row:last-child { margin-bottom:0; }
.hb-core .bar { height:7px; border-radius:4px; background: var(--surface-3); overflow:hidden; position:relative; }
.hb-core .bar i { position:absolute; inset:0; width:0; border-radius:4px; background: var(--gradient); animation: barFill 2.6s var(--ease) forwards; }
.hb-core .bar.b-1 i { animation-delay:.3s; --w:86%; } .hb-core .bar.b-2 i{ animation-delay:.5s; --w:64%; } .hb-core .bar.b-3 i{ animation-delay:.7s; --w:92%; }
@keyframes barFill { to { width: var(--w); } }

.orbit-badge {
  position: absolute; z-index: 4; background:#fff; border:1px solid var(--line); border-radius: 13px;
  padding: 10px 14px; box-shadow: var(--shadow-md); display:flex; align-items:center; gap:9px;
  font-weight:600; font-size:.86rem; color: var(--ink-900); white-space: nowrap;
}
.orbit-badge .ob-ic { width:30px; height:30px; border-radius:8px; display:grid; place-items:center; color:#fff; font-size:.95rem; }
.ob-1 { top: 6%; left: -2%; animation: floaty 5s ease-in-out infinite; }
.ob-2 { top: 30%; right: -6%; animation: floaty 6.5s ease-in-out infinite .6s; }
.ob-3 { bottom: 12%; left: -6%; animation: floaty 5.8s ease-in-out infinite 1.1s; }
.ob-4 { bottom: -2%; right: 4%; animation: floaty 6s ease-in-out infinite .3s; }

@media (max-width: 900px){
  .hero-banner { padding: 72px 0 64px; }
  .hb-stage { min-height: 360px; margin-top: 8px; }
  .orbit-badge { font-size:.8rem; padding:8px 11px; }
}
@media (prefers-reduced-motion: reduce){
  .hero-banner::before, .hb-blob, .hb-rise, .hb-eyebrow::after, .live-dot,
  .word-rotator > span.active, .btn-glow::after, .hb-core, .hb-core .bar i,
  .orbit-badge { animation: none !important; }
  .hb-rise { opacity:1; transform:none; }
  .word-rotator > span { opacity:1; position:relative; }
  .word-rotator > span:not(:first-child){ display:none; }
  .hb-core .bar i { width: var(--w); }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d4e2f2; }
.card .icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  color: #fff; font-size: 1.4rem; margin-bottom: 18px; box-shadow: var(--shadow-md);
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: .9rem; }
.card ul.tick { list-style: none; margin-top: 14px; }
.card ul.tick li { position: relative; padding-left: 24px; margin-bottom: 7px; font-size: .92rem; color: var(--ink-500); }
.card ul.tick li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-500); font-weight: 800; }

/* Icon color helpers */
.ic-blue { background: linear-gradient(135deg,#1c7ed6,#3b9ae6); }
.ic-teal { background: linear-gradient(135deg,#0d9488,#2dd4bf); }
.ic-indigo { background: linear-gradient(135deg,#4f46e5,#7c83f7); }
.ic-violet { background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.ic-amber { background: linear-gradient(135deg,#d97706,#fbbf24); }
.ic-rose  { background: linear-gradient(135deg,#e11d48,#fb7185); }
.ic-cyan  { background: linear-gradient(135deg,#0891b2,#22d3ee); }
.ic-green { background: linear-gradient(135deg,#16a34a,#4ade80); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; }
.stat b { font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; display: block; font-weight: 800; letter-spacing: -.02em; }
.stat span { color: rgba(255,255,255,.78); font-size: .95rem; }
.band {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  position: relative; overflow: hidden;
}
.band::after {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 120%, rgba(45,212,191,.25), transparent 60%);
}
.band .container { position: relative; z-index: 2; }
@media (max-width: 720px){ .stats { grid-template-columns: repeat(2,1fr); gap: 32px 16px; } }

/* ---------- Logos ---------- */
.logo-row { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; align-items: center; }
.logo-pill {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 26px; font-weight: 700; color: var(--ink-300); letter-spacing: .03em;
  box-shadow: var(--shadow-sm); transition: .25s; font-size: 1.05rem;
}
.logo-pill:hover { color: var(--brand-600); border-color: #d4e2f2; }

/* ---------- Testimonials ---------- */
.quote { position: relative; }
.quote .stars { color: #f5a623; margin-bottom: 12px; letter-spacing: 2px; }
.quote p { color: var(--ink-700); font-size: 1.02rem; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: 18px; }
.quote .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient); color:#fff; display: grid; place-items: center; font-weight: 700; }
.quote .who b { color: var(--ink-900); display: block; font-size: .95rem; }
.quote .who small { color: var(--ink-500); }

/* ---------- Industries / chips ---------- */
.ind-card {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: 26px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: .3s var(--ease);
}
.ind-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ind-card .ic-emoji { font-size: 1.9rem; margin-bottom: 12px; }
.ind-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.ind-card p { font-size: .9rem; }

/* ---------- Process / timeline ---------- */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before { content:""; position: absolute; left: 19px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-left: 64px; margin-bottom: 34px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 12px; background: var(--gradient); color:#fff; display: grid; place-items: center; font-weight: 700; box-shadow: var(--shadow-md); }
.tl-item h3 { margin-bottom: 5px; }
.tl-item .yr { font-size: .82rem; font-weight: 700; color: var(--brand-600); letter-spacing: .05em; }

/* ---------- Page header ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: #fff; padding: 76px 0 64px; position: relative; overflow: hidden;
}
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(700px 320px at 85% 0%, rgba(45,212,191,.25), transparent 60%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 620px; margin-top: 16px; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.crumbs a { color: rgba(255,255,255,.9); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; gap: 36px; } }
.feature-list { list-style: none; margin-top: 22px; }
.feature-list li { display: flex; gap: 14px; margin-bottom: 18px; }
.feature-list .fi-ic { width: 42px; height: 42px; border-radius: 11px; flex: 0 0 auto; display: grid; place-items: center; color:#fff; background: var(--gradient); font-size: 1.1rem; }
.feature-list b { color: var(--ink-900); display: block; }
.feature-list span { font-size: .92rem; }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink-900); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink-900); background: var(--surface-2); transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-400); background: #fff; box-shadow: 0 0 0 4px rgba(28,126,214,.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 600px){ .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--ink-300); margin-top: 6px; }
.form-success { display:none; background: #e9faf4; border: 1px solid #b9efdd; color: #0f6b54; padding: 14px 16px; border-radius: 10px; margin-bottom: 18px; font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand-700), var(--accent-500)); color:#fff; border-radius: var(--radius-lg); padding: 52px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 14px auto 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px){ .cta-band { padding: 38px 24px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #c4d0de; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .03em; }
.site-footer a { color: #9fb0c2; display: block; padding: 5px 0; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.site-footer .brand .brand-name { color: #fff; }
.site-footer .brand .logo-mark { box-shadow: none; }
.footer-about p { font-size: .92rem; color: #9fb0c2; margin: 16px 0; max-width: 320px; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; padding: 0; }
.social a:hover { background: var(--brand-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: #7e90a4; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating action buttons ---------- */
.fab-stack { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color:#fff; box-shadow: var(--shadow-lg); transition: transform .25s; }
.fab:hover { transform: scale(1.08); color:#fff; }
.fab-wa { background: #25d366; }
.fab-top { background: var(--brand-600); opacity: 0; pointer-events: none; transition: opacity .3s, transform .25s; }
.fab-top.show { opacity: 1; pointer-events: auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } .float-badge{ animation:none; } }

/* Utility */
.muted { color: var(--ink-300); }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.tag { display:inline-block; font-size:.74rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:4px 10px; border-radius:999px; background:var(--surface-3); color:var(--brand-600); }

/* ====================================================================
   AXOLOTLS Chatbot widget
   ==================================================================== */
.axo-chat * { box-sizing: border-box; }
/* shift existing FAB stack up so it doesn't overlap the chat launcher */
.fab-stack { bottom: 92px !important; }

.axo-launcher {
  position: fixed; right: 20px; bottom: 20px; z-index: 9999;
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  background: var(--gradient); color: #fff; border: 0; border-radius: 999px;
  padding: 13px 20px 13px 16px; font: inherit; font-weight: 600; font-size: .95rem;
  box-shadow: 0 12px 30px rgba(21,101,163,.4); transition: transform .25s var(--ease), box-shadow .25s;
}
.axo-launcher:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(21,101,163,.5); }
.axo-launcher .axo-ico { width: 30px; height: 30px; display: grid; place-items: center; font-size: 1.25rem; }
.axo-launcher .axo-ping { position: absolute; top: -3px; right: -3px; width: 16px; height: 16px; background: #ff5d73; color:#fff; border-radius: 50%; font-size: .6rem; display: grid; place-items: center; font-weight: 800; box-shadow: 0 0 0 0 rgba(255,93,115,.6); animation: axoPing 1.8s ease-out infinite; }
@keyframes axoPing { 0%{ box-shadow:0 0 0 0 rgba(255,93,115,.55);} 70%{ box-shadow:0 0 0 10px rgba(255,93,115,0);} 100%{ box-shadow:0 0 0 0 rgba(255,93,115,0);} }
.axo-launcher.hide { display: none; }

.axo-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 10000;
  width: 374px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 40px);
  background: #fff; border-radius: 20px; box-shadow: 0 26px 70px rgba(15,27,45,.28);
  display: none; flex-direction: column; overflow: hidden; border: 1px solid var(--line);
  transform: translateY(16px) scale(.98); opacity: 0; transition: transform .3s var(--ease), opacity .3s;
}
.axo-panel.open { display: flex; transform: none; opacity: 1; }

.axo-head { background: linear-gradient(135deg, var(--brand-800), var(--brand-600)); color:#fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; position: relative; }
.axo-head .axo-avatar { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.16); display: grid; place-items: center; font-size: 1.3rem; }
.axo-head b { font-size: 1rem; display: block; line-height: 1.2; }
.axo-head small { color: rgba(255,255,255,.85); font-size: .78rem; display: flex; align-items: center; gap: 6px; }
.axo-head small::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.3); }
.axo-close { margin-left: auto; background: rgba(255,255,255,.16); border: 0; color: #fff; width: 32px; height: 32px; border-radius: 9px; cursor: pointer; font-size: 1.1rem; line-height: 1; transition: background .2s; }
.axo-close:hover { background: rgba(255,255,255,.3); }

.axo-body { flex: 1; overflow-y: auto; padding: 18px; background: var(--surface-2); scroll-behavior: smooth; }
.axo-msg { display: flex; gap: 9px; margin-bottom: 14px; align-items: flex-end; }
.axo-msg .av { width: 28px; height: 28px; border-radius: 8px; background: var(--gradient); color:#fff; display: grid; place-items: center; font-size: .85rem; flex: 0 0 auto; }
.axo-bubble { background: #fff; border: 1px solid var(--line); border-radius: 14px 14px 14px 4px; padding: 11px 14px; font-size: .9rem; color: var(--ink-700); max-width: 80%; box-shadow: var(--shadow-sm); line-height: 1.5; }
.axo-bubble a { color: var(--brand-600); font-weight: 600; }
.axo-msg.user { flex-direction: row-reverse; }
.axo-msg.user .axo-bubble { background: var(--gradient); color: #fff; border-color: transparent; border-radius: 14px 14px 4px 14px; }
.axo-msg.user .av { background: var(--ink-700); }

.axo-typing { display: inline-flex; gap: 4px; padding: 4px 2px; }
.axo-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-300); animation: axoDot 1.2s infinite ease-in-out; }
.axo-typing i:nth-child(2){ animation-delay: .18s; } .axo-typing i:nth-child(3){ animation-delay: .36s; }
@keyframes axoDot { 0%,60%,100%{ transform: translateY(0); opacity:.5; } 30%{ transform: translateY(-5px); opacity:1; } }

.axo-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 12px; background: var(--surface-2); }
.axo-chip { background: #fff; border: 1px solid #cfe0f2; color: var(--brand-700); border-radius: 999px; padding: 8px 13px; font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.axo-chip:hover { background: var(--brand-500); color: #fff; border-color: var(--brand-500); }

.axo-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #fff; }
.axo-input input { flex: 1; border: 1px solid var(--line); border-radius: 11px; padding: 11px 13px; font: inherit; font-size: .9rem; background: var(--surface-2); }
.axo-input input:focus { outline: none; border-color: var(--brand-400); background: #fff; box-shadow: 0 0 0 3px rgba(28,126,214,.12); }
.axo-send { border: 0; background: var(--gradient); color: #fff; width: 44px; border-radius: 11px; cursor: pointer; font-size: 1.1rem; display: grid; place-items: center; flex: 0 0 auto; transition: transform .2s; }
.axo-send:hover { transform: scale(1.06); }

/* in-chat lead form */
.axo-lead { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.axo-lead h4 { font-size: .92rem; color: var(--ink-900); margin-bottom: 4px; }
.axo-lead p { font-size: .8rem; color: var(--ink-500); margin-bottom: 10px; }
.axo-lead input, .axo-lead select, .axo-lead textarea { width: 100%; border: 1px solid var(--line); border-radius: 9px; padding: 9px 11px; font: inherit; font-size: .85rem; margin-bottom: 8px; background: var(--surface-2); }
.axo-lead input:focus, .axo-lead select:focus, .axo-lead textarea:focus { outline: none; border-color: var(--brand-400); background:#fff; }
.axo-lead textarea { min-height: 58px; resize: vertical; }
.axo-lead .axo-err { color: #e11d48; font-size: .75rem; margin: -4px 0 8px; display: none; }
.axo-lead button { width: 100%; border: 0; background: var(--gradient); color: #fff; font-weight: 600; padding: 11px; border-radius: 10px; cursor: pointer; font-size: .9rem; }
.axo-lead button.secondary { background: #25d366; margin-top: 8px; }

.axo-foot { text-align: center; font-size: .68rem; color: var(--ink-300); padding: 6px; background: #fff; }

@media (max-width: 460px){
  .axo-panel { right: 8px; bottom: 8px; height: calc(100vh - 16px); width: calc(100vw - 16px); border-radius: 16px; }
  .axo-launcher span.axo-label { display: none; }
  .axo-launcher { padding: 14px; }
}
@media (prefers-reduced-motion: reduce){ .axo-ping, .axo-typing i { animation: none !important; } }
