/* ===================================================================
   SEARCH HIVE — STYLESHEET
   Signature system: a honeycomb / hex-cell motif carried through the
   hero illustration, service cards, process nodes, stat badges and
   avatars — literal "cells of the hive" used as structure, not décor.
   =================================================================== */

/* ---------- 1. Design tokens -------------------------------------- */
:root{
  /* Brand (sampled from the Search Hive mark) */
  --hive-lime:  #AED946;
  --hive-green: #1FAA64;
  --hive-blue:  #4170D5;
  --hive-gradient: linear-gradient(135deg, var(--hive-lime) 0%, var(--hive-green) 48%, var(--hive-blue) 100%);
  --hive-gradient-soft: linear-gradient(135deg, rgba(174,217,70,.16) 0%, rgba(31,170,100,.14) 48%, rgba(65,112,213,.16) 100%);

  /* Neutrals */
  --ink:    #14171C;
  --ink-70: #14171Cb3;
  --slate:  #5C6470;
  --slate-light: #8A93A0;
  --paper:  #FAFBF8;
  --cell:   #F0F5EC;
  --line:   #E4E9DF;
  --white:  #FFFFFF;

  /* Type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', monospace;

  /* Layout */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(20,23,28,.06);
  --shadow-md: 0 14px 36px rgba(20,23,28,.10);
  --shadow-lg: 0 24px 60px rgba(20,23,28,.16);
  --header-h: 96px;
}

/* ---------- 2. Reset / base ---------------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4,h5{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.12;
  margin:0 0 .5em;
  letter-spacing:-.01em;
}
p{ margin:0 0 1em; color:var(--slate); line-height:1.7; }
.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.skip-link{
  position:absolute; left:-999px; top:0; background:var(--ink); color:#fff;
  padding:10px 16px; z-index:999; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }
:focus-visible{ outline:2.5px solid var(--hive-blue); outline-offset:3px; border-radius:4px; }

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- 3. Type utilities --------------------------------------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--hive-green); font-weight:500;
  margin-bottom:14px;
}
.eyebrow::before{ content:''; width:18px; height:2px; background:var(--hive-gradient); border-radius:2px; }
.eyebrow--light{ color:var(--hive-lime); }

h2.h-lg{ font-size:clamp(30px,4vw,46px); }
h2.h-md{ font-size:clamp(26px,3.2vw,36px); }
.lede{ font-size:18px; color:var(--slate); max-width:560px; }
.text-center{ text-align:center; margin-left:auto; margin-right:auto; }
.grad-text{
  background:var(--hive-gradient); -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------- 4. Sections / layout ------------------------------------ */
.section{ padding:96px 0; position:relative; }
.section--alt{ background:var(--cell); }
.section--dark{ background:var(--ink); color:#fff; }
.section--dark p{ color:#aeb4bd; }
.section-head{ max-width:680px; margin:0 0 56px; }
.section-head.text-center{ margin-inline:auto; }
@media (max-width:768px){
  .section{ padding:64px 0; }
  .section-head{ margin-bottom:36px; }
}

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible{ opacity:1; transform:none; }

/* ---------- 5. Buttons ----------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-display); font-weight:600; font-size:15px;
  padding:15px 28px; border-radius:999px; border:1.5px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s;
  white-space:nowrap;
}
.btn--primary{
  background:linear-gradient(115deg, var(--hive-lime) 0%, var(--hive-green) 35%, var(--hive-blue) 70%, var(--hive-green) 100%);
  background-size:200% 100%; background-position:0% 0%;
  color:#fff; box-shadow:0 10px 24px rgba(31,170,100,.32);
  transition:transform .25s ease, box-shadow .25s ease, background-position .5s ease;
}
.btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 36px rgba(31,170,100,.4); background-position:100% 0%; }
.btn--outline{ border-color:var(--ink); color:var(--ink); background:transparent; }
.btn--outline:hover{ background:var(--ink); color:#fff; }
.btn--white{ background:#fff; color:var(--ink); }
.btn--white:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn--ghost-white{ border-color:rgba(255,255,255,.5); color:#fff; }
.btn--ghost-white:hover{ background:rgba(255,255,255,.12); }
.btn--sm{ padding:11px 20px; font-size:13.5px; }
.btn--block{ width:100%; }
.btn svg{ width:16px; height:16px; }

/* ---------- 6. Topbar -------------------------------------------------- */
.brand-strip{ height:4px; background:linear-gradient(90deg, var(--hive-lime), var(--hive-green), var(--hive-blue), var(--hive-lime)); background-size:200% 100%; animation:stripDrift 8s linear infinite; }
@keyframes stripDrift{ to{ background-position:200% 0; } }
.scroll-progress{ position:fixed; top:0; left:0; height:3px; width:0%; background:var(--hive-gradient); z-index:300; transition:width .1s linear; }

.topbar{ background:var(--ink); color:#cfd4da; font-size:13px; }
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; height:42px; }
.topbar__contact{ display:flex; gap:22px; }
.topbar__contact a{ display:inline-flex; align-items:center; gap:6px; color:#cfd4da; transition:color .2s; }
.topbar__contact a:hover{ color:var(--hive-lime); }
.topbar__contact .i{ width:13px; height:13px; opacity:.85; }
.topbar__right{ display:flex; align-items:center; gap:18px; }
.topbar__hours{ color:#8d949c; }
.topbar__social{ display:flex; gap:10px; }
.topbar__social a{
  width:22px; height:22px; border-radius:50%; border:1px solid #3a3f47; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:9px; color:#cfd4da; transition:all .2s;
}
.topbar__social a:hover{ background:var(--hive-gradient); border-color:transparent; color:#fff; }
@media (max-width:768px){ .topbar__hours{ display:none; } .topbar__contact a span{ display:none; } }
@media (max-width:560px){ .topbar__contact a:last-child{ display:none; } }

/* ---------- 7. Header / Nav -------------------------------------------- */
.site-header{
  position:sticky; top:0; z-index:200; background:rgba(250,251,248,.88);
  backdrop-filter:blur(10px); border-bottom:1px solid transparent;
  transition:box-shadow .25s, border-color .25s, background .25s;
}
.site-header.is-scrolled{ box-shadow:var(--shadow-sm); border-color:var(--line); background:rgba(250,251,248,.97); }
.site-header__inner{ display:flex; align-items:center; justify-content:space-between; height:var(--header-h); gap:24px; }
.brand__logo{ height:52px; width:auto; }
.main-nav > ul{ display:flex; align-items:center; gap:34px; }
.main-nav > ul > li > a{
  font-family:var(--font-display); font-weight:500; font-size:15px; color:var(--ink);
  display:flex; align-items:center; gap:5px; padding:8px 0; position:relative;
}
.main-nav > ul > li > a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--hive-gradient);
  transition:width .25s ease;
}
.main-nav > ul > li > a:hover::after, .main-nav > ul > li > a.is-active::after{ width:100%; }
.main-nav > ul > li > a.is-active{ color:var(--hive-green); }
.caret{ transition:transform .2s; }
.has-dropdown:hover .caret{ transform:rotate(180deg); }
.has-dropdown{ position:relative; }
.dropdown{
  position:absolute; top:calc(100% + 14px); left:-16px; width:260px; background:#fff; border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg); padding:10px; opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .2s, transform .2s, visibility .2s; border:1px solid var(--line);
  display:block;
}
.dropdown li{ display:block; width:100%; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown li a{ display:flex; width:100%; align-items:center; padding:11px 14px; border-radius:8px; font-size:14.5px; color:var(--ink); border-left:2px solid transparent; transition:background .2s, border-color .2s, padding-left .2s; }
.dropdown li a:hover{ background:var(--cell); color:var(--hive-green); border-left-color:var(--hive-green); padding-left:18px; }
.dropdown li + li{ margin-top:2px; }
.dropdown__all{ border-top:1px solid var(--line); margin-top:6px; padding-top:6px; }
.dropdown__all a{ color:var(--hive-blue); font-weight:600; font-size:13.5px; }

.site-header__actions{ display:flex; align-items:center; gap:16px; }
.nav-toggle{ display:none; flex-direction:column; justify-content:center; gap:5px; width:38px; height:38px; background:none; border:none; padding:0; }
.nav-toggle span{ height:2px; width:100%; background:var(--ink); border-radius:2px; transition:transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.nav-scrim{ position:fixed; inset:0; background:rgba(20,23,28,.45); z-index:150; opacity:0; visibility:hidden; transition:opacity .3s, visibility .3s; }
.nav-scrim.is-active{ opacity:1; visibility:visible; }

@media (max-width:900px){
  .nav-toggle{ display:flex; }
  .nav-toggle span{ background:var(--ink); }
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:min(90vw,400px); background:var(--ink); z-index:160;
    padding:104px 30px 28px; transform:translateX(100%); transition:transform .4s cubic-bezier(.2,.8,.2,1);
    box-shadow:-10px 0 50px rgba(0,0,0,.25); overflow-y:auto; display:flex; flex-direction:column;
  }
  .main-nav::before, .main-nav::after{ content:''; position:absolute; border-radius:50%; filter:blur(50px); pointer-events:none; z-index:0; }
  .main-nav::before{ width:220px; height:220px; background:rgba(174,217,70,.22); top:-60px; right:-60px; }
  .main-nav::after{ width:240px; height:240px; background:rgba(65,112,213,.22); bottom:10%; left:-90px; }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav > ul{
    position:relative; z-index:1; flex-direction:column; align-items:flex-start; gap:2px; width:100%;
    counter-reset:navcount;
  }
  .main-nav > ul > li{ width:100%; counter-increment:navcount; opacity:0; transform:translateX(18px); transition:opacity .4s ease, transform .4s ease; }
  .main-nav.is-open > ul > li{ opacity:1; transform:none; }
  .main-nav.is-open > ul > li:nth-child(1){ transition-delay:.08s; }
  .main-nav.is-open > ul > li:nth-child(2){ transition-delay:.14s; }
  .main-nav.is-open > ul > li:nth-child(3){ transition-delay:.2s; }
  .main-nav.is-open > ul > li:nth-child(4){ transition-delay:.26s; }
  .main-nav > ul > li > a{
    width:100%; padding:16px 2px; font-size:23px; color:#fff; border-bottom:1px solid rgba(255,255,255,.1);
    display:flex; align-items:center; gap:12px;
  }
  .main-nav > ul > li > a::before{
    content:counter(navcount, decimal-leading-zero); font-family:var(--font-mono); font-size:12px; font-weight:500;
    color:var(--hive-lime); letter-spacing:.05em;
  }
  .main-nav > ul > li > a::after{ display:none; }
  .main-nav > ul > li > a.is-active{ color:var(--hive-lime); }
  .main-nav .caret{ margin-left:auto; color:#9aa1ab; }
  .dropdown{
    position:static; opacity:1; visibility:visible; transform:none; width:100%; box-shadow:none; border:none;
    background:rgba(255,255,255,.04); display:none; margin:2px 0 10px; padding:8px; border-radius:12px;
  }
  .has-dropdown.is-open .dropdown{ display:block; }
  .dropdown li{ display:block; width:100%; }
  .dropdown li a{ color:#dfe2e6; }
  .dropdown li a:hover{ background:rgba(255,255,255,.06); color:var(--hive-lime); border-left-color:var(--hive-lime); }
  .dropdown__all{ border-top:1px solid rgba(255,255,255,.1); }
  .dropdown__all a{ color:var(--hive-lime); }
  .mobile-menu-footer{ position:relative; z-index:1; margin-top:auto; padding-top:24px; }
  .mobile-menu-footer .btn{ width:100%; margin-bottom:18px; }
  .mobile-menu-footer__contact{ display:flex; flex-direction:column; gap:8px; font-size:13.5px; color:#9aa1ab; margin-bottom:16px; }
  .mobile-menu-footer__contact a{ color:#dfe2e6; }
  .mobile-menu-footer__social{ display:flex; gap:10px; }
  .mobile-menu-footer__social a{
    width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.15); display:flex;
    align-items:center; justify-content:center; color:#dfe2e6; font-family:var(--font-mono); font-size:10px;
  }
  .site-header__actions .btn--sm{ display:none; }
}
@media (max-width:560px){ .main-nav{ width:100vw; } }
@media (min-width:561px) and (max-width:900px){ .site-header__actions .btn--sm{ display:inline-flex; } }
@media (min-width:901px){ .mobile-menu-footer{ display:none; } }

/* ---------- 8. Hero ----------------------------------------------------- */
.hero{
  position:relative; padding:74px 0 90px; overflow:hidden;
  background:
    radial-gradient(620px 460px at 88% -8%, rgba(174,217,70,.24), transparent 60%),
    radial-gradient(680px 520px at 100% 35%, rgba(65,112,213,.18), transparent 60%),
    var(--paper);
}
.hero::before{
  content:''; position:absolute; inset:0; opacity:.05; pointer-events:none; z-index:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='72'%3E%3Cpolygon points='42,0 84,18 84,54 42,72 0,54 0,18' fill='none' stroke='%231FAA64' stroke-width='1'/%3E%3C/svg%3E");
}
.hero .container{ position:relative; z-index:1; }
.hero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center; }
.hero h1{ font-size:clamp(38px,5.2vw,64px); margin-bottom:20px; }
.hero h1 .ln2{ display:block; }
.hero p.lede{ margin-bottom:32px; }
.hero__cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:46px; }
.hero__stats{ display:flex; gap:30px; flex-wrap:wrap; font-family:var(--font-mono); }
.hero__stats div{ display:flex; flex-direction:column; }
.hero__stats b{ font-size:22px; color:var(--ink); letter-spacing:-.02em; }
.hero__stats span{ font-size:11.5px; color:var(--slate-light); text-transform:uppercase; letter-spacing:.06em; margin-top:2px; }

.hex-cluster-wrap{ position:relative; display:flex; justify-content:center; }
.hex-network{ position:absolute; top:-18%; left:-18%; width:136%; height:136%; z-index:0; }
.hex-cluster{ position:relative; z-index:1; width:100%; max-width:440px; filter:drop-shadow(0 30px 50px rgba(31,170,100,.18)); }
.hex-cell{ transform-origin:center; transform-box:fill-box; animation:hexFloat 5.5s ease-in-out infinite; }
.hex-cell.c0{ animation-delay:0s; }
.hex-cell.c1{ animation-delay:.3s; }
.hex-cell.c2{ animation-delay:.6s; }
.hex-cell.c3{ animation-delay:.9s; }
.hex-cell.c4{ animation-delay:1.2s; }
.hex-cell.c5{ animation-delay:1.5s; }
.hex-cell.c6{ animation-delay:1.8s; }
@keyframes hexFloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } }
.hex-icon{ stroke:#fff; stroke-width:1.6; fill:none; stroke-linecap:round; stroke-linejoin:round; }

.industries{ border-top:1px solid var(--line); padding:30px 0; }
.industries__row{ display:flex; align-items:center; gap:28px; flex-wrap:wrap; justify-content:space-between; }
.industries__label{ font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--slate-light); white-space:nowrap; }
.industries__tags{ display:flex; gap:10px; flex-wrap:wrap; }
.industries__tags span{
  font-size:13.5px; font-weight:600; color:var(--ink); background:var(--cell); border:1px solid var(--line);
  padding:7px 16px; border-radius:999px;
}
@media (max-width:900px){
  .hero__grid{ grid-template-columns:1fr; text-align:left; }
  .hex-cluster-wrap{ order:-1; margin-bottom:12px; max-width:300px; margin-inline:auto; }
}

/* ---------- 9. Services (honeycomb cards) ------------------------------- */
.hive-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:26px; }
.hive-card{
  width:100%; max-width:340px; flex:1 1 320px; min-width:0; background:#fff; border:1px solid var(--line); padding:34px 30px 30px;
  clip-path:polygon(22px 0,100% 0,100% calc(100% - 22px),calc(100% - 22px) 100%,0 100%,0 22px);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.hive-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
@media (min-width:1024px){
  .hive-grid > .hive-card:nth-child(2){ transform:translateY(30px); }
  .hive-grid > .hive-card:nth-child(2):hover{ transform:translateY(24px); }
  .hive-grid > .hive-card:nth-child(4){ transform:translateY(30px); }
  .hive-grid > .hive-card:nth-child(4):hover{ transform:translateY(24px); }
}
.hive-card__icon{
  width:56px; height:56px; display:flex; align-items:center; justify-content:center; margin-bottom:22px;
  clip-path:polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  background:var(--hive-gradient);
}
.hive-card__icon svg{ width:26px; height:26px; stroke:#fff; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.hive-card h3{ font-size:20px; margin-bottom:10px; }
.hive-card p{ font-size:14.5px; margin-bottom:18px; }
.hive-card__link{ font-family:var(--font-mono); font-size:13px; font-weight:500; color:var(--hive-blue); display:inline-flex; align-items:center; gap:6px; }
.hive-card__link svg{ width:14px; height:14px; transition:transform .2s; }
.hive-card:hover .hive-card__link svg{ transform:translateX(4px); }

/* ---------- 10. Why us -------------------------------------------------- */
.why-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.why-list{ display:grid; gap:26px; }
.why-item{ display:flex; gap:18px; }
.why-item__icon{
  flex:none; width:46px; height:46px; border-radius:12px; background:var(--hive-gradient-soft);
  display:flex; align-items:center; justify-content:center;
}
.why-item__icon svg{ width:22px; height:22px; stroke:var(--hive-green); fill:none; stroke-width:1.8; }
.why-item h4{ font-size:17px; margin-bottom:4px; }
.why-item p{ font-size:14.5px; margin:0; }
.why-visual{ position:relative; aspect-ratio:1/1; max-width:420px; margin-inline:auto; }
.why-rotate{ transform-box:fill-box; transform-origin:center; animation:whyRotate 60s linear infinite; }
.why-pulse{ transform-box:fill-box; transform-origin:center; animation:whyPulse 3.4s ease-in-out infinite; }
.why-orbit{ transform-origin:150px 120px; }
.why-orbit-a{ animation:whyOrbit 14s linear infinite; }
.why-orbit-b{ animation:whyOrbit 20s linear infinite reverse; }
.why-ping{ transform-box:fill-box; transform-origin:center; animation:whyPing 2.6s ease-out infinite; opacity:0; }
.why-ping--delay{ animation-delay:1.3s; }
@keyframes whyRotate{ to{ transform:rotate(360deg); } }
@keyframes whyPulse{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.06); } }
@keyframes whyOrbit{ to{ transform:rotate(360deg); } }
@keyframes whyPing{ 0%{ transform:scale(1); opacity:.9; } 100%{ transform:scale(4.4); opacity:0; } }
@media (max-width:900px){ .why-grid{ grid-template-columns:1fr; gap:40px; } .why-visual{ order:-1; max-width:260px; } }

/* ---------- 11. Process ------------------------------------------------- */
.process-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
.process-row::before{
  content:''; position:absolute; top:38px; left:8%; right:8%; height:0; border-top:2px dashed var(--line); z-index:0;
}
.process-step{ position:relative; z-index:1; text-align:center; }
.process-step__node{
  width:76px; height:76px; margin:0 auto 22px; position:relative; display:flex; align-items:center; justify-content:center;
  clip-path:polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  background:#fff; border:2px solid var(--hive-green);
  font-family:var(--font-mono); font-weight:600; font-size:18px; color:var(--hive-green);
}
.process-step:nth-child(2) .process-step__node,.process-step:nth-child(4) .process-step__node{ background:var(--hive-gradient); border-color:transparent; color:#fff; }
.process-step h4{ font-size:17px; margin-bottom:8px; }
.process-step p{ font-size:14px; max-width:230px; margin-inline:auto; }
.process-loop{
  display:flex; align-items:center; justify-content:center; gap:10px; margin-top:46px;
  font-family:var(--font-mono); font-size:13px; color:var(--slate-light);
}
.process-loop svg{ width:16px; height:16px; stroke:var(--hive-blue); fill:none; stroke-width:2; }
@media (max-width:900px){
  .process-row{ grid-template-columns:1fr; gap:36px; text-align:left; }
  .process-row::before{ display:none; }
  .process-step{ display:flex; gap:20px; text-align:left; align-items:flex-start; }
  .process-step__node{ margin:0; flex:none; }
  .process-step p{ margin-inline:0; }
}

/* ---------- 12. Stats band ---------------------------------------------- */
.stats-band{ background:var(--ink); position:relative; overflow:hidden; padding:72px 0; }
.stats-band::before{
  content:''; position:absolute; inset:0; opacity:.5;
  background:radial-gradient(500px 300px at 12% 20%, rgba(174,217,70,.14), transparent 60%), radial-gradient(500px 360px at 90% 90%, rgba(65,112,213,.18), transparent 60%);
}
.stats-grid{ position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.stat{ text-align:center; }
.stat__hex{
  width:96px; height:96px; margin:0 auto 16px; display:flex; align-items:center; justify-content:center;
  clip-path:polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%); background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
}
.stat__num{ font-family:var(--font-mono); font-weight:700; font-size:28px; background:var(--hive-gradient); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat__label{ font-size:13px; color:#9aa1ab; text-transform:uppercase; letter-spacing:.05em; margin-top:14px; }
@media (max-width:768px){ .stats-grid{ grid-template-columns:repeat(2,1fr); gap:36px 20px; } }

/* ---------- 13. Testimonials -------------------------------------------- */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.testi-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:30px; display:flex; flex-direction:column; }
.testi-card__quote{ color:var(--ink); font-size:15px; line-height:1.75; margin-bottom:22px; }
.testi-card__quote::before{ content:'\201C'; color:var(--hive-green); font-family:var(--font-display); font-size:20px; }
.testi-card__person{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.hex-avatar{
  width:46px; height:46px; flex:none; display:flex; align-items:center; justify-content:center;
  clip-path:polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  font-family:var(--font-mono); font-weight:600; font-size:14px; color:#fff; background:var(--hive-gradient);
}
.testi-card__person b{ display:block; font-size:14.5px; }
.testi-card__person span{ display:block; font-size:12.5px; color:var(--slate-light); }
@media (max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }

/* ---------- 14. FAQ ------------------------------------------------------ */
.faq-list{ max-width:760px; margin:0 auto; display:grid; gap:14px; }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-sm); overflow:hidden; }
.faq-item__q{
  width:100%; background:none; border:none; text-align:left; padding:20px 24px; display:flex; align-items:center;
  justify-content:space-between; gap:16px; font-family:var(--font-display); font-weight:600; font-size:15.5px; color:var(--ink);
}
.faq-item__toggle{ flex:none; width:22px; height:22px; position:relative; }
.faq-item__toggle::before,.faq-item__toggle::after{
  content:''; position:absolute; background:var(--hive-green); border-radius:2px; transition:transform .25s;
}
.faq-item__toggle::before{ left:0; top:50%; width:100%; height:2px; transform:translateY(-50%); }
.faq-item__toggle::after{ top:0; left:50%; width:2px; height:100%; transform:translateX(-50%); }
.faq-item.is-open .faq-item__toggle::after{ transform:translateX(-50%) rotate(90deg) scaleY(0); }
.faq-item__a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-item__a-inner{ padding:0 24px 22px; font-size:14.5px; color:var(--slate); }
.faq-item.is-open{ border-color:var(--hive-green); }

/* ---------- 15. CTA band -------------------------------------------------- */
.cta-band{ background:var(--hive-gradient); border-radius:var(--radius-lg); padding:64px 56px; position:relative; overflow:hidden; }
.cta-band::after{ content:''; position:absolute; inset:0; background:radial-gradient(420px 280px at 90% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta-band__inner{ position:relative; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-band h2{ color:#fff; font-size:clamp(24px,3vw,32px); margin-bottom:8px; max-width:480px; }
.cta-band p{ color:rgba(255,255,255,.88); margin-bottom:0; max-width:440px; }
.cta-band__actions{ display:flex; gap:14px; flex-wrap:wrap; }
@media (max-width:768px){ .cta-band{ padding:42px 26px; } }

/* ---------- 16. Page header / banner (subpages) --------------------------- */
.page-banner{ padding:64px 0 50px; background:var(--cell); position:relative; overflow:hidden; }
.page-banner::before{ content:''; position:absolute; inset:0; background:radial-gradient(480px 320px at 100% 0%, rgba(174,217,70,.18), transparent 60%); }
.breadcrumb{ font-family:var(--font-mono); font-size:13px; color:var(--slate-light); margin-bottom:16px; position:relative; }
.breadcrumb a{ color:var(--hive-green); }
.page-banner h1{ font-size:clamp(30px,4vw,46px); position:relative; max-width:680px; }
.page-banner p.lede{ position:relative; }

/* ---------- 17. About-specific --------------------------------------------- */
.values-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:20px; }
.value-pill{
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:22px 24px; width:100%; max-width:230px; flex:1 1 200px; min-width:0;
  clip-path:polygon(16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%,0 16px);
}
.value-pill h4{ font-size:16px; margin-bottom:6px; }
.value-pill p{ font-size:13.5px; margin:0; }
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.team-card{ text-align:center; }
.team-card .hex-avatar{ width:88px; height:88px; font-size:26px; margin:0 auto 16px; }
.team-card h4{ font-size:16px; margin-bottom:2px; }
.team-card span{ font-size:13px; color:var(--slate-light); }
@media (max-width:900px){ .team-grid{ grid-template-columns:repeat(2,1fr); gap:30px; } }

/* ---------- 18. Contact page ------------------------------------------------ */
.contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:start; }
.contact-form{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:40px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group{ margin-bottom:18px; }
.form-group label{ display:block; font-size:13px; font-weight:600; margin-bottom:7px; color:var(--ink); }
.form-group input, .form-group select, .form-group textarea{
  width:100%; border:1.5px solid var(--line); border-radius:10px; padding:13px 15px; font-family:var(--font-body);
  font-size:14.5px; color:var(--ink); background:var(--paper); transition:border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none; border-color:var(--hive-green); box-shadow:0 0 0 4px rgba(31,170,100,.12);
}
.form-group textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:12.5px; color:var(--slate-light); margin-top:14px; }
.hp-field{ position:absolute; left:-9999px; opacity:0; }

.contact-info-card{ background:var(--ink); color:#fff; border-radius:var(--radius-lg); padding:36px; margin-bottom:22px; }
.contact-info-card h3{ color:#fff; font-size:19px; }
.contact-info-row{ display:flex; gap:14px; align-items:flex-start; padding:14px 0; border-top:1px solid rgba(255,255,255,.1); }
.contact-info-row:first-of-type{ border-top:none; }
.contact-info-row svg{ width:20px; height:20px; flex:none; stroke:var(--hive-lime); fill:none; stroke-width:1.8; margin-top:2px; }
.contact-info-row a, .contact-info-row span{ color:#dfe2e6; font-size:14.5px; line-height:1.6; }
.map-embed{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); }
.map-embed iframe{ width:100%; height:260px; border:0; display:block; }

.alert{ border-radius:12px; padding:16px 20px; margin-bottom:24px; font-size:14.5px; font-weight:500; }
.alert--success{ background:#E9F8EE; color:#137A3F; border:1px solid #BCE8C9; }
.alert--error{ background:#FDECEC; color:#B3261E; border:1px solid #F4C7C5; }

@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } .contact-form{ padding:28px; } }

/* ---------- 19. Floating buttons -------------------------------------------- */
.float-btn{
  position:fixed; right:24px; z-index:140; width:54px; height:54px; border-radius:50%; display:flex;
  align-items:center; justify-content:center; box-shadow:var(--shadow-lg); border:none; transition:transform .2s, opacity .25s, visibility .25s;
}
.float-btn--whatsapp{ bottom:24px; background:#25D366; color:#fff; }
.float-btn--whatsapp:hover{ transform:scale(1.07); }
.float-btn--top{ bottom:90px; background:#fff; color:var(--ink); border:1px solid var(--line); opacity:0; visibility:hidden; }
.float-btn--top.is-visible{ opacity:1; visibility:visible; }
@media (max-width:560px){ .float-btn{ width:48px; height:48px; right:16px; } .float-btn--whatsapp{ bottom:16px; } .float-btn--top{ bottom:74px; } }

/* ---------- 20. Footer ------------------------------------------------------- */
.site-footer{ background:var(--ink); color:#c7ccd2; padding:76px 0 0; position:relative; overflow:hidden; }
.hex-texture{
  position:absolute; inset:0; opacity:.05; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='72'%3E%3Cpolygon points='21,0 63,0 84,36 63,72 21,72 0,36' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
}
.footer__grid{ position:relative; display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; }
.footer__logo{ height:34px; margin-bottom:16px; filter:brightness(0) invert(1); }
.footer__brand p{ font-size:14px; color:#9aa1ab; max-width:280px; }
.footer__social{ display:flex; gap:10px; margin-top:8px; }
.footer__social a{ width:36px; height:36px; border-radius:50%; border:1px solid #2c3037; display:flex; align-items:center; justify-content:center; color:#c7ccd2; transition:all .2s; }
.footer__social a:hover{ background:var(--hive-gradient); border-color:transparent; color:#fff; }
.footer__col h4{ color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:18px; }
.footer__col ul{ display:grid; gap:11px; }
.footer__col a{ color:#9aa1ab; font-size:14.5px; transition:color .2s; }
.footer__col a:hover{ color:var(--hive-lime); }
.footer__contact li{ color:#9aa1ab; font-size:14.5px; line-height:1.6; }
.footer__bottom{ position:relative; border-top:1px solid #262a30; padding:22px 0; }
.footer__bottom-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; font-size:13px; color:#7d848d; }
@media (max-width:900px){ .footer__grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer__grid{ grid-template-columns:1fr; } }

/* ---------- 21. Misc / utilities -------------------------------------------- */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.divider-grad{ height:3px; background:var(--hive-gradient); border-radius:3px; width:64px; }
::selection{ background:var(--hive-green); color:#fff; }

/* ---------- 22. Extra small-screen polish ------------------------------- */
@media (max-width:480px){
  .container{ padding:0 18px; }
  .hive-card{ padding:28px 22px 24px; }
  .industries__row{ flex-direction:column; align-items:flex-start; gap:14px; }
  .cta-band__inner{ flex-direction:column; align-items:flex-start; }
  .hero h1{ font-size:clamp(32px,9vw,42px); }
}

/* ---------- 23. Cursor glow (desktop only) ------------------------------ */
.cursor-glow{
  position:fixed; top:0; left:0; width:30px; height:30px; border-radius:50%;
  background:radial-gradient(circle, rgba(31,170,100,.40) 0%, rgba(65,112,213,.18) 55%, transparent 80%);
  pointer-events:none; z-index:9999; transform:translate(-50%,-50%); opacity:0;
  transition:width .35s ease, height .35s ease, background .35s ease, opacity .3s ease;
  will-change:transform; mix-blend-mode:multiply;
}
.cursor-glow.is-active{ opacity:1; }
.cursor-glow.is-hovering{
  width:60px; height:60px;
  background:radial-gradient(circle, rgba(31,170,100,.5) 0%, rgba(174,217,70,.28) 55%, transparent 80%);
}
@media (hover:none), (pointer:coarse){ .cursor-glow{ display:none !important; } }
@media (prefers-reduced-motion:reduce){ .cursor-glow{ display:none !important; } }

.cursor-dot{
  position:fixed; top:0; left:0; width:7px; height:7px; border-radius:50%;
  background:var(--hive-gradient); pointer-events:none; z-index:10000; opacity:0;
  transform:translate(-50%,-50%); transition:opacity .3s ease, width .2s ease, height .2s ease, background .2s ease;
}
.cursor-dot.is-active{ opacity:1; }
.cursor-dot.is-hovering{ width:5px; height:5px; background:#fff; }
@media (hover:none), (pointer:coarse){ .cursor-dot{ display:none !important; } }
@media (prefers-reduced-motion:reduce){ .cursor-dot{ display:none !important; } }

.cursor-ripple{
  position:fixed; top:0; left:0; width:14px; height:14px; border-radius:50%;
  border:1.5px solid var(--hive-green); pointer-events:none; z-index:9998;
  transform:translate(-50%,-50%); animation:cursorRipple .6s ease-out forwards;
}
@keyframes cursorRipple{ to{ width:46px; height:46px; opacity:0; border-color:var(--hive-blue); } }
