
:root{
  --bg:#f5f5f7;
  --bg-soft:#ffffff;
  --bg-alt:#fbfbfd;
  --card:#ffffff;
  --card-2:#f7f8fb;
  --text:#1d1d1f;
  --muted:#6e6e73;
  --line:#d2d2d7;
  --line-strong:#c7c7cc;
  --blue:#0071e3;
  --blue-deep:#005bb5;
  --chip:#eef4ff;
  --success:#177245;
  --danger:#b3261e;
  --shadow:0 14px 38px rgba(15,23,42,.08);
  --shadow-soft:0 10px 24px rgba(15,23,42,.05);
  --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 540px at 8% 0%, rgba(0,113,227,.08), transparent 58%),
    radial-gradient(820px 420px at 100% 12%, rgba(56,132,255,.06), transparent 55%),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 52%, #ffffff 100%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.container{width:min(1140px,92%); margin:0 auto}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(180%) blur(20px);
  background:rgba(251,251,253,.82);
  border-bottom:1px solid rgba(210,210,215,.85);
  transition:background .28s ease,border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}
.nav.scrolled{
  background:rgba(251,251,253,.95);
  box-shadow:0 10px 28px rgba(15,23,42,.05);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.95rem 0;
}
.brand{display:flex; align-items:center; gap:.72rem}
.brand img{
  height:40px;
  width:auto;
  transition:transform .3s ease, filter .3s ease;
}
.brand:hover img{
  transform:scale(1.03);
  filter:drop-shadow(0 10px 18px rgba(0,113,227,.10));
}
.brand span{
  font-weight:700;
  letter-spacing:-.01em;
  color:var(--text);
}
.nav-links{
  display:flex;
  align-items:center;
  gap:1.25rem;
  color:var(--muted);
  font-size:.97rem;
  font-weight:600;
}
.nav-links a{
  position:relative;
  padding:.35rem .1rem;
  transition:color .24s ease, transform .24s ease;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  border-radius:999px;
  background:var(--blue);
  transition:width .24s ease;
}
.nav-links a:hover,
.nav-links a.active{color:var(--text)}
.nav-links a:hover::after,
.nav-links a.active::after{width:100%}
.nav-cta{display:flex; align-items:center; gap:.7rem}
.mobile-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,.85);
  color:var(--text);
  padding:.68rem .9rem;
  border-radius:999px;
  font-weight:600;
}

.hero{
  padding:5.35rem 0 3.15rem;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .95fr;
  gap:3rem;
  align-items:center;
}
h1{
  font-size:clamp(2.55rem, 5vw, 4.55rem);
  line-height:.98;
  letter-spacing:-.045em;
  margin:.9rem 0 1.2rem;
}
.section h2{
  font-size:clamp(1.8rem, 3vw, 2.55rem);
  line-height:1.08;
  letter-spacing:-.03em;
  margin:0 0 .85rem;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:.45rem .9rem;
  border-radius:999px;
  border:1px solid #d7e7ff;
  background:var(--chip);
  color:var(--blue);
  font-size:.9rem;
  font-weight:600;
}
.lead{
  color:var(--muted);
  font-size:1.1rem;
  line-height:1.72;
  max-width:57ch;
}
.section{padding:3.4rem 0}
.section p.sub{
  color:var(--muted);
  margin:0 0 1.8rem;
  line-height:1.7;
  max-width:74ch;
}

.hero-actions,
.form-row{
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
}
.hero-actions{margin-top:1.7rem}
.btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  min-height:48px;
  padding:.9rem 1.2rem;
  border-radius:999px;
  border:1px solid transparent;
  background:var(--text);
  color:#fff;
  box-shadow:var(--shadow-soft);
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(15,23,42,.12);
  background:#000;
}
.btn.secondary{
  background:#fff;
  color:var(--text);
  border-color:var(--line);
  box-shadow:none;
}
.btn.secondary:hover{
  background:#fff;
  border-color:var(--line-strong);
  box-shadow:var(--shadow-soft);
}
.btn::before{
  content:"";
  position:absolute;
  inset:-140% auto auto -28%;
  width:42%;
  height:300%;
  transform:rotate(18deg);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition:transform .75s ease;
  pointer-events:none;
}
.btn:hover::before{
  transform:translateX(290%) rotate(18deg);
}

.hero-card,
.panel,
.card,
.kpi,
.hero-visual{
  position:relative;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(210,210,215,.85);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:transform .34s cubic-bezier(.2,.8,.2,1), border-color .28s ease, box-shadow .34s ease, background .28s ease;
}
.hero-card,
.panel,
.kpi{padding:1.35rem}
.card{padding:1.22rem 1.22rem}
.hero-card:hover,
.panel:hover,
.hero-visual:hover,
.card:hover,
.kpi:hover{
  transform:translateY(-4px);
  border-color:#bfd7ff;
  box-shadow:0 22px 50px rgba(15,23,42,.11);
}
.hero-card::before,
.panel::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,0));
  pointer-events:none;
}
.hero-visual{
  padding:1rem;
  background:rgba(255,255,255,.9);
}
.hero-visual img{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
  box-shadow:0 22px 44px rgba(15,23,42,.08);
  transition:transform .45s ease, filter .3s ease;
}
.hero-visual:hover img{
  transform:scale(1.018);
  filter:saturate(1.03) contrast(1.02);
}

.grid-3{display:grid; grid-template-columns:repeat(3, 1fr); gap:1.1rem}
.grid-2{display:grid; grid-template-columns:repeat(2, 1fr); gap:1.1rem}
.split{display:grid; grid-template-columns:1fr 1fr; gap:1.35rem; align-items:start}

.card{
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(260px 130px at var(--mx, 50%) -8%, rgba(0,113,227,.09), transparent 55%);
  opacity:0;
  transition:opacity .28s ease;
  pointer-events:none;
}
.card:hover::before{opacity:1}
.card h3{
  margin:.7rem 0 .4rem;
  font-size:1.08rem;
  letter-spacing:-.01em;
}
.card p,
.panel ul,
.product p,
.kpi span,
.form-note,
.footer p,
.footer small{
  color:var(--muted);
  line-height:1.65;
}
.icon{
  width:48px;
  height:48px;
  border-radius:15px;
  border:1px solid #dce9ff;
  background:linear-gradient(180deg, #eef4ff, #f9fbff);
  display:grid;
  place-items:center;
  box-shadow:0 10px 20px rgba(0,113,227,.07);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.icon img{width:28px; height:28px}
.card:hover .icon{
  transform:translateY(-2px) scale(1.04);
  box-shadow:0 14px 28px rgba(0,113,227,.12);
  border-color:#c7ddff;
}

.kpis{display:grid; grid-template-columns:repeat(2,1fr); gap:1rem}
.kpi{
  background:linear-gradient(180deg, #ffffff, #f8f9fc);
}
.kpi b{
  display:block;
  font-size:1.55rem;
  color:var(--text);
  letter-spacing:-.03em;
}
.kpi span{font-size:.95rem}

.product{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  transition:transform .28s ease;
}
.product:hover{transform:translateX(4px)}
.product img{
  width:160px;
  height:118px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(210,210,215,.85);
  box-shadow:0 12px 28px rgba(15,23,42,.09);
  transition:transform .4s ease, filter .28s ease;
}
.product:hover img{transform:scale(1.02)}
.product h3{margin:0 0 .35rem}

.footer{
  margin-top:1rem;
  padding:2.8rem 0 3.15rem;
  border-top:1px solid rgba(210,210,215,.85);
  background:rgba(250,250,252,.9);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr;
  gap:1.2rem;
}
.footer h4{
  margin:0 0 .7rem;
  font-size:1rem;
  color:var(--text);
}
.footer a:hover{color:var(--text)}

.social-stack{margin-top:1rem}
.social-title{
  margin:0 0 .7rem;
  font-weight:600;
  color:var(--muted);
}
.social-panel{
  margin-top:1rem;
  padding:1rem 1.05rem;
  border-radius:18px;
  border:1px solid rgba(210,210,215,.85);
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow-soft);
}
.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:.65rem;
  padding:.72rem .95rem;
  border-radius:999px;
  border:1px solid rgba(210,210,215,.95);
  background:#fff;
  color:var(--text);
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.social-link:hover{
  transform:translateY(-2px);
  border-color:#bfd7ff;
  box-shadow:var(--shadow-soft);
  color:var(--blue);
}
.social-mark{
  width:30px;
  height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#f2f6ff;
  color:var(--blue);
}
.social-mark svg{width:16px; height:16px}

input, textarea, select{
  width:100%;
  padding:.93rem 1rem;
  border-radius:16px;
  border:1px solid rgba(210,210,215,.95);
  background:#fff;
  color:var(--text);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input::placeholder,
textarea::placeholder{color:#8e8e93}
input:focus, textarea:focus, select:focus{
  border-color:#8ab8ff;
  box-shadow:0 0 0 4px rgba(0,113,227,.10);
}
textarea{min-height:140px; resize:vertical}

.notice{
  margin-top:.9rem;
  padding:.85rem .95rem;
  border-radius:16px;
  border:1px solid #dfe7f5;
  background:#f6f9ff;
  color:var(--text);
  display:none;
}
.notice.success{
  display:block;
  border-color:rgba(23,114,69,.18);
  background:rgba(23,114,69,.08);
}
.notice.error{
  display:block;
  border-color:rgba(179,38,30,.18);
  background:rgba(179,38,30,.08);
}
.site-subscribe-form,
.contact-request-form{margin:0}
.site-subscribe-form .form-response,
.contact-request-form .form-response{margin-top:.9rem}

.reveal{
  opacity:0;
  transform:translateY(28px) scale(.985);
  transition:opacity .72s cubic-bezier(.2,.8,.2,1), transform .72s cubic-bezier(.2,.8,.2,1);
  will-change:opacity, transform;
}
.reveal-left{
  opacity:0;
  transform:translateX(-28px);
  transition:opacity .72s cubic-bezier(.2,.8,.2,1), transform .72s cubic-bezier(.2,.8,.2,1);
}
.reveal-right{
  opacity:0;
  transform:translateX(28px);
  transition:opacity .72s cubic-bezier(.2,.8,.2,1), transform .72s cubic-bezier(.2,.8,.2,1);
}
.reveal.in,
.reveal-left.in,
.reveal-right.in{
  opacity:1;
  transform:none;
}
.stagger-1{transition-delay:.05s}
.stagger-2{transition-delay:.12s}
.stagger-3{transition-delay:.19s}
.stagger-4{transition-delay:.26s}
.stagger-5{transition-delay:.33s}
.stagger-6{transition-delay:.40s}

body{animation:pageFade .7s ease both}
@keyframes pageFade{
  from{opacity:0; transform:translateY(8px)}
  to{opacity:1; transform:none}
}

.team-link{
  display:block;
  border-radius:18px;
  flex:0 0 auto;
}
.team-link img{
  width:120px;
  height:120px;
  border-radius:18px;
  object-fit:cover;
  border:1px solid rgba(210,210,215,.95);
  box-shadow:var(--shadow-soft);
  transition:transform .34s cubic-bezier(.2,.8,.2,1), box-shadow .34s ease, border-color .28s ease, filter .28s ease;
}
.team-link:hover img,
.team-link:focus-visible img{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 18px 36px rgba(15,23,42,.11);
  border-color:#bfd7ff;
}
.team-link:focus-visible{outline:none}
.subtle-glow{position:relative}
.subtle-glow::after{
  content:"";
  position:absolute;
  inset:auto -8% -18% -8%;
  height:44%;
  background:radial-gradient(60% 70% at 50% 0, rgba(0,113,227,.08), transparent 70%);
  pointer-events:none;
}

@media (max-width: 900px){
  .hero{padding:4.45rem 0 2.8rem}
  .hero-grid,
  .grid-3,
  .grid-2,
  .split,
  .footer-grid{grid-template-columns:1fr}
  .nav-links{display:none}
  .mobile-toggle{display:inline-flex}
  .nav.open .nav-links{
    display:flex;
    flex-direction:column;
    gap:.9rem;
    position:absolute;
    left:0;
    right:0;
    top:72px;
    padding:1rem 4%;
    background:rgba(251,251,253,.98);
    border-bottom:1px solid rgba(210,210,215,.85);
    box-shadow:0 18px 36px rgba(15,23,42,.06);
  }
  .product img{width:132px; height:98px}
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}


/* === Premium hybrid refinement === */
:root{
  --bg:#f6f7fb;
  --bg-soft:#ffffff;
  --bg-alt:#f2f6ff;
  --card:#ffffff;
  --card-2:#f7f9fd;
  --text:#121826;
  --muted:#5f6b82;
  --line:#dce3ef;
  --line-strong:#cbd7e8;
  --blue:#1769ff;
  --blue-deep:#0f4fd8;
  --navy:#15306b;
  --chip:#eef4ff;
  --gold-soft:#f6efe1;
  --gold-line:#ead8ac;
  --shadow:0 18px 44px rgba(17,24,39,.08);
  --shadow-soft:0 12px 28px rgba(17,24,39,.06);
  --shadow-hero:0 28px 80px rgba(14,26,58,.12);
  --radius:24px;
}
body{
  background:
    radial-gradient(960px 520px at 8% 0%, rgba(23,105,255,.10), transparent 60%),
    radial-gradient(780px 420px at 100% 8%, rgba(72,140,255,.11), transparent 58%),
    radial-gradient(760px 420px at 50% 100%, rgba(255,255,255,.95), transparent 58%),
    linear-gradient(180deg, #fbfcff 0%, #f6f7fb 48%, #ffffff 100%);
}
.container{width:min(1180px,92%)}
.nav{
  background:rgba(252,253,255,.84);
  border-bottom:1px solid rgba(222,228,238,.88);
}
.nav.scrolled{
  background:rgba(255,255,255,.96);
  box-shadow:0 12px 26px rgba(17,24,39,.05);
}
.nav-links{gap:1.35rem}
.nav-links a{font-size:.98rem}
.nav-links a::after{bottom:-9px}
.brand span{letter-spacing:-.015em}
.btn{
  min-height:50px;
  padding:.95rem 1.28rem;
  background:linear-gradient(180deg, var(--blue), var(--blue-deep));
  box-shadow:0 14px 28px rgba(23,105,255,.18);
}
.btn:hover{
  background:linear-gradient(180deg, #2c7cff, #1256e7);
  box-shadow:0 18px 34px rgba(23,105,255,.22);
}
.btn.secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
}
.btn.secondary:hover{
  background:#f8faff;
  border-color:#bcd1f7;
}
.hero{
  position:relative;
  overflow:hidden;
  padding:7.2rem 0 4.6rem;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-10% auto auto -7%;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(23,105,255,.12) 0%, rgba(23,105,255,.05) 35%, rgba(23,105,255,0) 72%);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  right:-120px;
  top:-20px;
  width:560px;
  height:560px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,255,255,.50) 38%, rgba(255,255,255,0) 74%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:1;
  grid-template-columns:1.08fr .92fr;
  gap:4.2rem;
  align-items:center;
}
.hero-copy{max-width:630px}
h1{
  font-size:clamp(2.85rem, 5.25vw, 5rem);
  line-height:.94;
  letter-spacing:-.052em;
  margin:1rem 0 1.28rem;
}
.lead{
  font-size:1.12rem;
  line-height:1.78;
  max-width:58ch;
}
.badge{
  background:rgba(255,255,255,.88);
  border-color:#d5e4ff;
  box-shadow:0 8px 24px rgba(17,24,39,.04);
}
.hero-actions{margin-top:1.85rem}
.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:.62rem;
  margin-top:1.35rem;
}
.hero-proof span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:.55rem .9rem;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  border:1px solid #dbe6f9;
  color:var(--navy);
  font-size:.92rem;
  font-weight:600;
  box-shadow:0 8px 20px rgba(17,24,39,.04);
}
.hero-card{
  margin-top:1.35rem !important;
  padding:1.15rem;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(246,249,255,.88));
  border:1px solid #dde7f7;
  box-shadow:0 18px 40px rgba(17,24,39,.06);
}
.kpis{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.85rem;
}
.kpi{
  padding:1.05rem 1rem;
  background:linear-gradient(180deg, #ffffff, #f7faff);
  border:1px solid #dce6f7;
  box-shadow:0 10px 22px rgba(17,24,39,.04);
}
.kpi b{
  display:block;
  font-size:1.8rem;
  line-height:1;
  letter-spacing:-.03em;
  color:var(--navy);
  margin-bottom:.3rem;
}
.kpi span{
  color:var(--muted);
  font-size:.94rem;
}
.hero-stack{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-visual{
  position:relative;
  width:100%;
  padding:1rem;
  border-radius:32px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,248,255,.92));
  border:1px solid #dce7f8;
  box-shadow:var(--shadow-hero);
}
.hero-visual::before{
  content:"";
  position:absolute;
  inset:auto auto -28px 44px;
  width:170px;
  height:170px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(23,105,255,.18) 0%, rgba(23,105,255,0) 72%);
  filter:blur(6px);
  pointer-events:none;
}
.hero-visual::after{
  content:"";
  position:absolute;
  inset:18px 18px auto auto;
  width:110px;
  height:110px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(23,105,255,.12) 0%, rgba(23,105,255,0) 72%);
  pointer-events:none;
}
.hero-visual img{
  border-radius:24px;
  box-shadow:0 18px 42px rgba(17,24,39,.10);
}
.float-note{
  position:absolute;
  z-index:2;
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  padding:.95rem 1rem;
  max-width:230px;
  border-radius:20px;
  background:rgba(255,255,255,.96);
  border:1px solid #dce7f8;
  box-shadow:0 18px 34px rgba(17,24,39,.08);
}
.float-note .dot{
  width:12px;
  height:12px;
  margin-top:.35rem;
  border-radius:50%;
  background:linear-gradient(180deg, var(--blue), var(--blue-deep));
  box-shadow:0 0 0 6px rgba(23,105,255,.09);
  flex:0 0 auto;
}
.float-note strong{
  display:block;
  margin-bottom:.24rem;
  font-size:.96rem;
  color:var(--navy);
}
.float-note small{
  display:block;
  color:var(--muted);
  font-size:.84rem;
  line-height:1.5;
}
.note-top{top:40px; right:-16px}
.note-bottom{left:-26px; bottom:58px}

.section{
  position:relative;
  padding:4.5rem 0;
}
.section p.sub{
  max-width:70ch;
}
.section-tone{
  background:linear-gradient(180deg, rgba(242,246,255,.90), rgba(255,255,255,.82));
}
.section-band{
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(242,246,255,.92)),
    radial-gradient(560px 220px at 20% 0%, rgba(23,105,255,.05), transparent 72%);
}
.section-shell{
  padding:1.2rem 0 1rem;
}
.section-shell .grid-3,
.section-shell .grid-2{
  gap:1.15rem;
}
.card,
.panel,
.hero-visual,
.kpi{
  border-radius:26px;
}
.card,
.panel{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,255,.92));
  border:1px solid #dfe7f4;
  box-shadow:var(--shadow);
}
.card:hover,
.panel:hover,
.hero-visual:hover{
  transform:translateY(-5px);
  border-color:#c9daf8;
  box-shadow:0 22px 42px rgba(17,24,39,.08);
}
.card h3,
.product h3{letter-spacing:-.015em}
.icon{
  width:50px;
  height:50px;
  border-radius:16px;
  background:linear-gradient(180deg, #eff5ff, #ffffff);
  border:1px solid #dbe6f8;
}
.split{
  gap:1.5rem;
}
.product{
  gap:1.05rem;
  padding:.75rem;
  border-radius:22px;
  transition:transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.product:hover{
  transform:translateX(4px);
  background:#f8fbff;
  box-shadow:0 16px 30px rgba(17,24,39,.05);
}
.product img{
  width:158px;
  height:118px;
  border-radius:18px;
  border:1px solid #dce7f8;
}
.showcase-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.15rem;
}
.showcase-card{
  position:relative;
  overflow:hidden;
  padding:1.15rem;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,255,.94));
  border:1px solid #dce7f8;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.showcase-card:hover{
  transform:translateY(-6px);
  border-color:#c8daf8;
  box-shadow:0 24px 44px rgba(17,24,39,.08);
}
.showcase-card img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:20px;
  border:1px solid #dce7f8;
  margin-bottom:1rem;
  background:#f7fbff;
}
.showcase-card h3{
  margin:0 0 .45rem;
  font-size:1.18rem;
  letter-spacing:-.02em;
}
.showcase-card p{
  margin:0;
  color:var(--muted);
  line-height:1.66;
}
.showcase-kicker{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  min-height:34px;
  padding:.45rem .78rem;
  border-radius:999px;
  background:#eef4ff;
  border:1px solid #d6e5ff;
  color:var(--blue-deep);
  font-size:.86rem;
  font-weight:700;
  margin-bottom:.9rem;
}
.page-hero{
  padding-top:5.7rem;
  padding-bottom:3.9rem;
}
.page-hero .lead{max-width:66ch}
.page-hero .hero-visual{padding:.9rem}

.contact-social-panel{
  margin-top:1rem;
  padding:1rem 1.05rem;
  border-radius:20px;
  background:linear-gradient(180deg, #ffffff, #f7faff);
  border:1px solid #dce7f8;
}
.social-stack{
  margin-top:1rem;
}
.social-title{
  margin-bottom:.75rem;
}
.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:.7rem;
  min-height:46px;
  padding:.7rem .95rem;
  border-radius:999px;
  background:#fff;
  border:1px solid #dfe7f4;
  box-shadow:0 10px 24px rgba(17,24,39,.04);
  color:var(--text);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.social-link:hover{
  transform:translateY(-2px);
  border-color:#bcd1f7;
  box-shadow:0 14px 28px rgba(17,24,39,.06);
}
.social-mark{
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#eef4ff;
  color:var(--blue);
}
.social-mark svg{
  width:15px;
  height:15px;
}
.footer{
  padding:2.8rem 0 3rem;
  background:linear-gradient(180deg, rgba(245,248,255,.90), rgba(255,255,255,.98));
  border-top:1px solid #dfe7f4;
}
.footer-grid{
  gap:1.4rem;
}
.footer h4{
  font-size:1rem;
  letter-spacing:-.01em;
}
.footer p,
.footer small,
.footer a{
  color:var(--muted);
}
input, textarea, select{
  border-radius:18px;
  border:1px solid #d9e2f0;
  background:#fff;
}
input:focus, textarea:focus, select:focus{
  border-color:#9dbef7;
  box-shadow:0 0 0 4px rgba(23,105,255,.08);
}
.notice{
  border:1px solid #cfe0ff;
  background:#f2f7ff;
  color:var(--navy);
}
.form-note{color:var(--muted)}
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .72s ease, transform .72s ease;
}
.reveal.in{
  opacity:1;
  transform:none;
}

@media (max-width: 980px){
  .hero{
    padding:6.35rem 0 3.9rem;
  }
  .hero-grid{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .hero-stack{
    min-height:unset;
  }
  .float-note{
    position:static;
    margin-top:1rem;
    max-width:none;
  }
  .note-top,
  .note-bottom{
    inset:auto;
  }
  .showcase-grid{
    grid-template-columns:1fr;
  }
  .page-hero{
    padding-top:4.8rem;
  }
}
@media (max-width: 900px){
  .section{
    padding:3.7rem 0;
  }
}
@media (max-width: 720px){
  .hero{
    padding:5.8rem 0 3.4rem;
  }
  h1{
    font-size:clamp(2.35rem, 11vw, 3.45rem);
  }
  .hero-proof{
    gap:.55rem;
  }
  .hero-proof span{
    min-height:36px;
    padding:.5rem .8rem;
    font-size:.88rem;
  }
  .kpis{
    grid-template-columns:1fr;
  }
}


/* Mini social icons in footer (small, professional, no stretching) */
.footer-mini-social{
  display:flex;
  gap:.55rem;
  margin-top:.75rem;
  align-items:center;
}
.footer-mini-social .mini-social{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  text-decoration:none;
  border:1px solid rgba(210,210,215,.75);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.footer-mini-social .mini-social:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
  border-color: rgba(0,113,227,.35);
  color: var(--text);
}
.footer-mini-social svg{
  width:16px;
  height:16px;
}


/* Mobile responsiveness tweaks v2 */
@media (max-width: 900px){
  .nav-inner{gap:.8rem}
  .nav-cta .btn.secondary{display:none}
  .hero-actions{flex-direction:column; align-items:stretch}
  .hero-actions .btn{width:100%}
  .hero-proof{justify-content:flex-start}
  .product{flex-direction:column; align-items:stretch}
  .product img{width:100%; height:auto; max-height:240px}
  .form-actions{flex-direction:column; align-items:flex-start}
  .footer-grid{grid-template-columns:1fr}
  .footer .form-row{flex-direction:column}
  .footer .form-row input,
  .footer .form-row button{width:100%}
}
@media (max-width: 720px){
  .footer-mini-social .mini-social{width:32px;height:32px}
}


/* Floating WhatsApp button */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.7rem .9rem;
  border-radius:999px;
  text-decoration:none;
  background:#25D366;
  color:#ffffff;
  box-shadow:0 16px 36px rgba(15,23,42,.18);
  border:1px solid rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow:0 20px 44px rgba(15,23,42,.22);
  filter: saturate(1.03);
}
.wa-icon{
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
}
.wa-icon svg{
  width:22px;
  height:22px;
}
.wa-text{
  font-weight:700;
  font-size:.95rem;
  letter-spacing:-.01em;
}
@media (max-width: 900px){
  .wa-float{
    right:14px;
    bottom:14px;
    padding:.68rem .82rem;
  }
}
@media (max-width: 560px){
  .wa-text{display:none;}
  .wa-float{border-radius:18px; padding:.72rem}
}
