/* =========================================================
   IZRE — Software Product Company
   Design tokens
   ========================================================= */
:root{
  --c-green:   #1BAB33;
  --c-mint:    #24D48A;
  --c-cyan:    #3FCFD1;
  --c-blue:    #1C9BEB;
  --c-red:     #E04343;
  --c-orange:  #E8A23A;

  --spectrum: linear-gradient(100deg, var(--c-green), var(--c-mint) 22%, var(--c-cyan) 44%, var(--c-blue) 66%, var(--c-red) 84%, var(--c-orange));
  --spectrum-soft: linear-gradient(120deg, rgba(27,171,51,.14), rgba(36,212,138,.14) 25%, rgba(63,207,209,.14) 50%, rgba(28,155,235,.14) 75%, rgba(232,162,58,.14));

  --ink:       #0B1120;
  --ink-soft:  #4B5568;
  --paper:     #FBFBFA;
  --paper-2:   #F1F3F4;
  --line:      #E6E8EB;
  --card:      #FFFFFF;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(11,17,32,.06);
  --shadow-md: 0 12px 30px rgba(11,17,32,.09);
  --shadow-lg: 0 24px 60px rgba(11,17,32,.14);

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input, textarea{ font-family:inherit; }

.container{
  width:100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: .78rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--c-blue);
  margin-bottom: 16px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background: var(--spectrum);
  border-radius: 2px;
  display:inline-block;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
}

.section{ padding: 100px 0; position:relative; }
.section-tight{ padding: 64px 0; }

.section-head{
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head h2{ font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 14px; }
.section-head p{ color: var(--ink-soft); font-size: 1.05rem; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.text-gradient{
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 6s linear infinite;
}
@keyframes shine{
  to{ background-position: 200% center; }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background: var(--spectrum);
  background-size: 200% auto;
  color:#fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover{
  background: var(--c-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-outline{
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.btn-outline:hover{
  border-color: var(--c-blue);
  color: var(--c-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.btn-sm{ padding: 10px 20px; font-size: .85rem; }
.btn-block{ width:100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 999;
  background: rgba(251,251,250,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled{ box-shadow: var(--shadow-sm); }

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 76px;
  gap: 20px;
}

.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand img{ height: 36px; width:36px; border-radius: 9px; }
.brand span{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -.02em;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap: 34px;
}
.nav-menu a{
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.nav-menu a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  height:2px; width:0;
  background: var(--spectrum);
  border-radius:2px;
  transition: width .3s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.active{ color: var(--ink); }
.nav-menu a:hover::after,
.nav-menu a.active::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:18px; }

.social-mini{ display:flex; align-items:center; gap:10px; }
.social-mini a{
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.social-mini a:hover{
  color:#fff;
  background: var(--spectrum);
  border-color: transparent;
  transform: translateY(-3px);
}
.social-mini svg{ width:16px; height:16px; }

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  width:32px;
  z-index: 1001;
}
.hamburger span{
  height:2px;
  width:100%;
  background: var(--ink);
  border-radius:2px;
  transition: all .35s var(--ease);
}
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  padding: 96px 0 110px;
  overflow:hidden;
}
.hero-blob{
  position:absolute;
  inset: -20% -10% auto auto;
  width: 640px; height: 640px;
  background: var(--spectrum-soft);
  filter: blur(70px);
  border-radius: 50%;
  z-index:0;
  animation: float 12s ease-in-out infinite;
}
@keyframes float{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-30px, 40px) scale(1.08); }
}
.hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items:center;
}
.hero h1{
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  margin-bottom: 22px;
}
.hero p.lead{
  font-size: 1.14rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 46px; }

.hero-stats{
  display:flex;
  gap: 38px;
  flex-wrap:wrap;
}
.hero-stats div strong{
  display:block;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.hero-stats div span{
  font-size: .82rem;
  color: var(--ink-soft);
}

.hero-visual{
  position:relative;
  aspect-ratio: 1/1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.orbit-ring{
  position:absolute;
  border-radius:50%;
  border: 1.5px dashed var(--line);
  animation: spin 30s linear infinite;
}
.orbit-ring.r1{ width:100%; height:100%; }
.orbit-ring.r2{ width:70%; height:70%; animation-duration: 22s; animation-direction: reverse; }
@keyframes spin{ to{ transform: rotate(360deg); } }

.orbit-dot{
  position:absolute;
  width:16px; height:16px;
  border-radius:50%;
  box-shadow: var(--shadow-sm);
}
.hero-core{
  width: 46%;
  aspect-ratio:1/1;
  border-radius: 40%;
  background: var(--spectrum);
  background-size: 220% 220%;
  animation: shine 8s ease infinite, morph 10s ease-in-out infinite;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: var(--shadow-lg);
}
.hero-core span{
  font-family: var(--font-display);
  color:#fff;
  font-weight:700;
  font-size: 2.4rem;
}
@keyframes morph{
  0%,100%{ border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
  50%{ border-radius: 55% 45% 40% 60% / 55% 60% 40% 45%; }
}

.product-visual{
  min-height: 430px;
  align-items:center;
}
.product-visual::before{
  content:"";
  position:absolute;
  width:78%;
  height:78%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(36,212,138,.16), rgba(28,155,235,.16), rgba(232,162,58,.12));
  filter: blur(28px);
  transform: rotate(-8deg);
}
.dashboard-card{
  position:absolute;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(230,232,235,.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.main-panel{
  width:min(420px, 88%);
  border-radius: 24px;
  padding: 20px;
  animation: dashboardFloat 6s var(--ease) infinite;
}
.panel-top{
  display:flex;
  align-items:center;
  gap:8px;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}
.panel-top span{
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--c-red);
}
.panel-top span:nth-child(2){ background: var(--c-orange); }
.panel-top span:nth-child(3){ background: var(--c-mint); }
.panel-top strong{
  margin-left:auto;
  font-family:var(--font-display);
  font-size:.9rem;
}
.metric-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:20px 0;
}
.metric-row div{
  padding:16px;
  border-radius:16px;
  background:var(--paper-2);
}
.metric-row span,
.mini-panel small{
  display:block;
  color:var(--ink-soft);
  font-size:.78rem;
}
.metric-row strong{
  display:block;
  margin-top:4px;
  font-family:var(--font-display);
  font-size:1.55rem;
}
.flow-lines{
  display:grid;
  gap:12px;
}
.flow-lines span{
  width:var(--w);
  height:12px;
  border-radius:100px;
  background:linear-gradient(90deg, var(--c-green), var(--c-cyan), var(--c-blue));
  background-size:180% auto;
  animation: flowPulse 2.8s ease-in-out infinite;
  animation-delay:var(--d);
}
.mini-panel{
  display:flex;
  align-items:center;
  gap:12px;
  border-radius:18px;
  padding:15px 18px;
  min-width:210px;
}
.mini-panel strong{
  display:block;
  font-family:var(--font-display);
  font-size:.95rem;
}
.panel-ai{
  top:8%;
  right:2%;
  animation: cardDrift 5.5s ease-in-out infinite;
}
.panel-sync{
  left:2%;
  bottom:9%;
  animation: cardDrift 6.4s ease-in-out infinite reverse;
}
.mini-dot{
  width:28px;
  height:28px;
  border-radius:10px;
  background:var(--spectrum);
  box-shadow:0 0 0 8px rgba(28,155,235,.1);
}
.sync-ring{
  width:28px;
  height:28px;
  border-radius:50%;
  border:4px solid rgba(28,155,235,.18);
  border-top-color:var(--c-blue);
  animation: spin 1.2s linear infinite;
}
.status-pill{
  position:absolute;
  right:15%;
  bottom:2%;
  padding:10px 16px;
  border-radius:100px;
  background:var(--ink);
  color:#fff;
  font-size:.82rem;
  font-weight:700;
  box-shadow:var(--shadow-md);
  animation: pillPop 3.4s ease-in-out infinite;
}
@keyframes dashboardFloat{
  0%,100%{ transform: translateY(0) rotate(-1deg); }
  50%{ transform: translateY(-16px) rotate(1deg); }
}
@keyframes cardDrift{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(10px,-12px); }
}
@keyframes flowPulse{
  0%,100%{ opacity:.55; background-position:0 center; transform:scaleX(.92); transform-origin:left; }
  50%{ opacity:1; background-position:100% center; transform:scaleX(1); }
}
@keyframes pillPop{
  0%,100%{ transform: translateY(0) scale(1); }
  50%{ transform: translateY(-10px) scale(1.03); }
}

/* Trust bar */
.trust-bar{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.trust-bar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 30px;
  flex-wrap:wrap;
}
.trust-bar p{ font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); font-weight:600; }
.trust-logos{ display:flex; gap: 36px; flex-wrap:wrap; align-items:center; }
.trust-logos span{ font-family: var(--font-display); font-weight:600; color: var(--ink-soft); opacity:.7; font-size:1.05rem; }

/* =========================================================
   CARDS — features / products
   ========================================================= */
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.grid-2{ display:grid; grid-template-columns: repeat(2,1fr); gap: 26px; }

.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view{ opacity:1; transform: translateY(0); }

.feature-card, .product-card, .blog-card, .value-card, .team-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position:relative;
  overflow:hidden;
}
.feature-card:hover, .product-card:hover, .blog-card:hover, .value-card:hover, .team-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.icon-badge{
  width: 54px; height:54px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
  color:#fff;
}
.icon-badge svg{ width:26px; height:26px; }

.feature-card h3, .product-card h3{ font-size: 1.2rem; margin-bottom:10px; }
.feature-card p, .product-card p, .blog-card p{ color: var(--ink-soft); font-size: .96rem; }

/* Product card specifics */
.product-card{ display:flex; flex-direction:column; }
.product-tag{
  align-self:flex-start;
  font-size: .72rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  color:#fff;
  margin-bottom: 18px;
}
.product-features{ margin: 18px 0 24px; }
.product-features li{
  display:flex; align-items:flex-start; gap:10px;
  font-size:.9rem; color: var(--ink-soft);
  padding: 5px 0;
}
.product-features li svg{ flex-shrink:0; width:16px; height:16px; margin-top:3px; color: var(--c-mint); }
.product-card .btn{ margin-top:auto; }

/* Blog cards */
.blog-card{ padding:0; overflow:hidden; }
.blog-thumb{
  height: 190px;
  background: var(--spectrum-soft);
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.blog-thumb::before{
  content:"";
  position:absolute; inset:0;
  background: var(--spectrum);
  opacity:.9;
}
.blog-thumb span{
  position:relative; z-index:1;
  color:#fff; font-family:var(--font-display); font-weight:700;
  font-size:.78rem; letter-spacing:.1em; text-transform:uppercase;
  background: rgba(0,0,0,.18);
  padding:6px 14px; border-radius:100px;
}
.blog-body{ padding: 26px 28px 28px; }
.blog-meta{ display:flex; gap:14px; font-size:.78rem; color: var(--ink-soft); margin-bottom:12px; }
.blog-body h3{ font-size: 1.12rem; margin-bottom: 10px; }
.blog-read{
  display:inline-flex; align-items:center; gap:6px;
  font-size:.88rem; font-weight:600; color: var(--c-blue);
  margin-top:16px;
  transition: gap .3s ease;
}
.blog-read:hover{ gap:10px; }

.blog-image-thumb{
  background:#fff;
}
.blog-image-thumb::before{
  display:none;
}
.blog-image-thumb img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}
.blog-image-thumb span{
  z-index:2;
}

.product-thumb{
  background-size: cover;
  background-position: center;
}
.product-thumb::before{
  background: transparent;
}
.document-thumb{ background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=900&q=80"); }
.scanner-thumb{ background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=900&q=80"); }
.crm-thumb{ background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=80"); }
.product-card-image{
  height: 170px;
  border-radius: 16px;
  margin-bottom: 22px;
  background:#fff;
}
.product-card-image img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  z-index:1;
}
.product-card-image span{
  z-index:2;
}
.product-card-image::before{
  display:none;
}

.product-detail-visual{
  min-height: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow:hidden;
  background-size: cover;
  background-position:center;
  position:relative;
  box-shadow: var(--shadow-md);
}
.product-detail-visual::before{
  content:"";
  position:absolute;
  inset:0;
  background: transparent;
}
.product-detail-visual span{
  position:absolute;
  inset:auto 28px 28px 28px;
  color:#fff;
  font-family:var(--font-display);
  font-size:1.8rem;
  font-weight:700;
  line-height:1.1;
}
.document-detail{
    background-image: url("../images/d1.png");
}

.scanner-detail{
    background-image: url("../images/card.png");
}

.crm-detail{
    background-image: url("../images/crm.png");
}

/* Values / process */
.value-card{ text-align:left; }
.process-step{
  display:flex; gap:22px; align-items:flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.process-step:last-child{ border-bottom:none; }
.process-num{
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight:700;
  background: var(--spectrum);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  flex-shrink:0;
  width: 60px;
}
.process-step h4{ font-size:1.1rem; margin-bottom:6px; }
.process-step p{ color: var(--ink-soft); font-size:.94rem; max-width:560px; }

/* Team */
.team-card{ text-align:center; }
.team-avatar{
  width:84px; height:84px; border-radius:50%;
  margin: 0 auto 18px;
  background: #aaabad;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family:var(--font-display); font-weight:700; font-size:1.4rem;
  box-shadow: 0 10px 24px rgba(28,155,235,.22);
}
.team-card h4{ font-size:1.05rem; margin-bottom:4px; }
.team-card span{ font-size:.85rem; color: var(--c-blue); font-weight:600; }

/* Stats band */
.stats-band{
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  text-align:center;
}
.stats-band div strong{
  font-family: var(--font-display);
  font-size: 2.4rem;
  background: var(--spectrum);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  display:block;
}
.stats-band div span{ color:#B7BEC9; font-size:.88rem; }

/* CTA band */
.cta-band{
  background: var(--c-blue);
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 30px;
  flex-wrap:wrap;
  color:#fff;
}
.cta-band h2{ color:#fff; font-size: clamp(1.6rem,3vw,2.2rem); max-width:520px; }
.cta-band p{ color: rgba(255,255,255,.85); margin-top:10px; }
.cta-band .btn-outline{ background:#fff; border-color:#fff; color: var(--ink); }
.cta-band .btn-outline:hover{ transform: translateY(-3px); }

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-hero{
  padding: 76px 0 66px;
  background: var(--paper-2);
  position:relative;
  overflow:hidden;
  text-align:center;
}
.page-hero::before{
  content:"";
  position:absolute; top:-40%; left:50%; transform:translateX(-50%);
  width:900px; height:400px;
  background: var(--spectrum-soft);
  filter: blur(60px);
}
.page-hero .container{ position:relative; z-index:1; }
.page-hero h1{ font-size: clamp(2rem,4vw,3rem); margin-bottom:14px; }
.page-hero p{ color: var(--ink-soft); max-width:600px; margin:0 auto; font-size:1.05rem; }
.breadcrumb{ display:flex; justify-content:center; gap:8px; font-size:.85rem; color:var(--ink-soft); margin-bottom:18px; }
.breadcrumb a:hover{ color: var(--c-blue); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-wrap{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items:start;
}
.contact-info-card{
  background: var(--ink);
  color:#fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
}
.contact-info-card h3{ color:#fff; font-size:1.4rem; margin-bottom: 12px; }
.contact-info-card > p{ color:#B7BEC9; margin-bottom: 30px; font-size:.95rem; }
.contact-line{
  display:flex; gap:16px; align-items:flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-line:first-of-type{ border-top:none; }
.contact-line .icon-badge{ width:42px; height:42px; margin-bottom:0; flex-shrink:0; }
.contact-line h5{ font-size:.9rem; margin-bottom:3px; }
.contact-line p{ color:#B7BEC9; font-size:.88rem; }
.contact-social{ display:flex; gap:10px; margin-top:30px; }
.contact-social a{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08);
  transition: all .3s var(--ease);
}
.contact-social a:hover{ background: var(--spectrum); transform: translateY(-3px); }
.contact-social svg{ width:16px;height:16px; }

.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:20px; }
.form-group{ margin-bottom: 20px; }
.form-group label{ display:block; font-size:.85rem; font-weight:600; margin-bottom:8px; }
.form-group input, .form-group select, .form-group textarea{
  width:100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  transition: border-color .3s ease, box-shadow .3s ease;
  background: var(--paper);
}
.form-group textarea{ resize:vertical; min-height:120px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(28,155,235,.12);
  background:#fff;
}
.form-note{ font-size:.82rem; color: var(--ink-soft); margin-top:14px; text-align:center; }
.form-success{
  display:none;
  align-items:center; gap:10px;
  background: rgba(36,212,138,.1);
  border: 1px solid var(--c-mint);
  color: #178a55;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size:.9rem;
  margin-bottom:20px;
  font-weight:600;
}
.form-success.show{ display:flex; }

.map-embed{
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--line);
  height: 320px;
}
.map-embed iframe{ width:100%; height:100%; border:0; }

/* FAQ */
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-q{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 4px;
  cursor:pointer;
  font-weight:600;
  font-size: 1.02rem;
}
.faq-q svg{ transition: transform .35s var(--ease); flex-shrink:0; color: var(--c-blue); }
.faq-item.open .faq-q svg{ transform: rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .4s var(--ease);
  color: var(--ink-soft);
  font-size:.95rem;
}
.faq-a p{ padding: 0 4px 22px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--ink);
  color: #C6CCD6;
  padding: 76px 0 0;
  position:relative;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.footer-brand img{ height:34px; width:34px; border-radius:8px; }
.footer-brand span{ font-family: var(--font-display); font-weight:700; font-size:1.2rem; color:#fff; }
.footer-col p{ font-size:.9rem; line-height:1.7; margin-bottom: 22px; max-width:280px; }
.footer-col h5{ color:#fff; font-size:.92rem; margin-bottom: 18px; letter-spacing:.03em; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col ul li a{ font-size:.9rem; transition: color .3s ease, padding-left .3s ease; }
.footer-col ul li a:hover{ color:#fff; padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:.88rem; margin-bottom:14px; }
.footer-contact svg{ flex-shrink:0; margin-top:3px; color: var(--c-mint); width:16px; height:16px; }
.footer-social{ display:flex; gap:10px; margin-top:8px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.06);
  transition: all .3s var(--ease);
}
.footer-social a:hover{ background: var(--spectrum); transform: translateY(-3px); }
.footer-social svg{ width:15px; height:15px; }

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  padding: 24px 0 30px;
  font-size:.82rem;
  color:#8890A0;
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom-links{ display:flex; gap:20px; }
.footer-bottom-links a:hover{ color:#fff; }

/* =========================================================
   FLOATING WIDGETS: chatbot + whatsapp
   ========================================================= */
.floating-whatsapp{
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 58px; height:58px;
  border-radius:50%;
  background: #25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  z-index: 900;
  animation: pulse-wa 2.4s ease-in-out infinite;
  transition: transform .3s var(--ease);
}
.floating-whatsapp:hover{ transform: scale(1.08); }
.floating-whatsapp svg{ width:28px; height:28px; fill:#fff; }
@keyframes pulse-wa{
  0%,100%{ box-shadow: 0 10px 26px rgba(37,211,102,.45); }
  50%{ box-shadow: 0 10px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}

.bot-launcher{
  position: fixed;
  right: 26px;
  bottom: 98px;
  width: 60px; height:60px;
  border-radius:50%;
  background: var(--spectrum);
  background-size:200% auto;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  animation: bot-bob 3s ease-in-out infinite;
  transition: transform .3s var(--ease);
}
.bot-launcher:hover{ transform: scale(1.08); }
@keyframes bot-bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.bot-launcher svg{ width:30px; height:30px; }
.bot-eye{ animation: blink 4s infinite; transform-origin:center; }
@keyframes blink{
  0%,92%,100%{ transform: scaleY(1); }
  95%{ transform: scaleY(.1); }
}

.chat-box{
  position: fixed;
  right: 26px;
  bottom: 170px;
  width: 330px;
  max-width: calc(100vw - 52px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow:hidden;
  z-index: 899;
  opacity:0;
  transform: translateY(20px) scale(.96);
  pointer-events:none;
  transition: all .35s var(--ease);
  display:flex;
  flex-direction:column;
}
.chat-box.open{
  opacity:1;
  transform: translateY(0) scale(1);
  pointer-events:auto;
}
.chat-head{
  background: var(--spectrum);
  padding: 16px 18px;
  display:flex; align-items:center; gap:10px;
  color:#fff;
}
.chat-head .dot{ width:9px; height:9px; border-radius:50%; background:#7CFFB2; box-shadow:0 0 0 3px rgba(124,255,178,.25); }
.chat-head strong{ font-size:.95rem; display:block; }
.chat-head small{ font-size:.74rem; opacity:.85; }
.chat-close{ margin-left:auto; color:#fff; font-size:1.1rem; opacity:.85; }
.chat-close:hover{ opacity:1; }
.chat-body{
  padding: 16px;
  height: 260px;
  overflow-y:auto;
  background: var(--paper-2);
  display:flex; flex-direction:column; gap:10px;
}
.msg{
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .87rem;
  line-height:1.5;
}
.msg.bot{
  background:#fff; border:1px solid var(--line);
  border-bottom-left-radius:4px;
  align-self:flex-start;
}
.msg.user{
  background: var(--spectrum);
  color:#fff;
  border-bottom-right-radius:4px;
  align-self:flex-end;
}
.chat-quick{ display:flex; flex-wrap:wrap; gap:8px; padding: 0 16px 12px; background: var(--paper-2); }
.chat-quick button{
  font-size:.78rem;
  padding: 7px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background:#fff;
  transition: all .25s ease;
}
.chat-quick button:hover{ border-color: var(--c-blue); color: var(--c-blue); }
.chat-input{
  display:flex;
  border-top:1px solid var(--line);
  background:#fff;
}
.chat-input input{
  flex:1;
  border:none;
  padding: 14px 16px;
  font-size:.88rem;
}
.chat-input input:focus{ outline:none; }
.chat-input button{
  padding: 0 18px;
  color: var(--c-blue);
  font-weight:700;
}

/* =========================================================
   UTILITIES / ANIMATIONS
   ========================================================= */
.fade-up{ animation: fadeUp .9s var(--ease) both; }
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(24px); }
  to{ opacity:1; transform: translateY(0); }
}
.delay-1{ animation-delay:.1s; }
.delay-2{ animation-delay:.22s; }
.delay-3{ animation-delay:.34s; }

::selection{ background: var(--c-mint); color:#fff; }

/* scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: var(--paper-2); }
::-webkit-scrollbar-thumb{ background: var(--c-cyan); border-radius:10px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ max-width:340px; margin:0 auto; }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .stats-band{ grid-template-columns: repeat(2,1fr); }
  .contact-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .nav-menu{
    position: fixed;
    top: 76px; left:0; right:0;
    bottom:0;
    background: #fff;
    flex-direction:column;
    align-items:flex-start;
    padding: 30px 26px;
    gap: 6px;
    transform: translateX(-100%);
    transition: transform .4s var(--ease);
    overflow-y:auto;
  }
  .nav-menu.open{ transform: translateX(0); }
  .nav-menu a{ width:100%; padding:14px 0; border-bottom:1px solid var(--line); font-size:1.02rem; }
  .nav-menu .header-mobile-only{ display:flex; margin-top:20px; width:100%; }
  .social-mini{ display:none; }
  .hamburger{ display:flex; }
  .header-actions .btn-primary.desktop-only{ display:none; }

  .grid-3, .grid-2, .form-row{ grid-template-columns:1fr; }
  .stats-band{ grid-template-columns: repeat(2,1fr); padding: 40px 24px; }
  .cta-band{ flex-direction:column; text-align:center; padding: 44px 28px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .section{ padding: 66px 0; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .product-visual{ min-height:380px; }
  .main-panel{ width:92%; }
  .panel-ai{ top:2%; right:0; }
  .panel-sync{ left:0; bottom:4%; }
  .status-pill{ right:8%; bottom:0; }
}

@media (max-width: 480px){
  .hero{ padding: 70px 0 80px; }
  .hero-stats{ gap:24px; }
  .contact-info-card, .contact-form{ padding: 28px 22px; }
  .product-visual{ min-height:360px; }
  .mini-panel{ min-width:188px; padding:12px 14px; }
  .metric-row{ gap:10px; }
  .metric-row div{ padding:12px; }
  .metric-row strong{ font-size:1.25rem; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
}





/* ================================
   Software Preview Section
================================ */

.software-preview {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f7fff9, #eefcff);
}

.preview-container {
    max-width: 1250px;
    margin: auto;
    text-align: center;
}

.preview-head span {
    display: inline-block;
    color: #1BAB33;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.preview-head h2 {
    font-size: 42px;
    color: #111;
    margin-bottom: 15px;
}

.preview-head p {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* ================================
   Screenshot Grid
================================ */

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 45px;
}

/* ================================
   Screenshot Card
================================ */

.preview-card {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s ease;
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(28,155,235,.18);
}

.preview-card img {
    width: 100%;
    height: auto;
    max-height: 390px;

    object-fit: contain;
    object-position: center;

    display: block;
    border-radius: 14px;
    transition: .4s;
}

.preview-card:hover img{
    transform: scale(1.03);
}

/* ================================
   Button
================================ */

.software-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 38px;
    border-radius: 50px;

    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;

    background: linear-gradient(135deg,#1BAB33,#24D48A,#1C9BEB);

    box-shadow: 0 15px 35px rgba(27,171,51,.28);

    transition: .35s;
}

.software-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(28,155,235,.35);
}

/* ================================
   Tablet
================================ */

@media (max-width:992px){

.preview-head h2{
    font-size:34px;
}

.preview-grid{
    grid-template-columns:repeat(2,1fr);
}

.preview-card{
    min-height:380px;
}

.preview-card img{
    max-height:340px;
}

}

/* ================================
   Mobile
================================ */

@media (max-width:768px){

.software-preview{
    padding:70px 15px;
}

.preview-head h2{
    font-size:28px;
}

.preview-head p{
    font-size:15px;
}

.preview-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.preview-card{
    min-height:350px;
    padding:15px;
}

.preview-card img{
    max-height:320px;
}

.software-btn{
    width:100%;
    max-width:280px;
}

}

/* ================================
   Small Mobile
================================ */

@media (max-width:480px){

.preview-head h2{
    font-size:24px;
}

.preview-card{
    min-height:320px;
}

.preview-card img{
    max-height:290px;
}

}


@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
  }

  .nav-wrap {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
  }

  .brand span {
    font-size: 18px;
    font-weight: 700;
  }

  .social-mini,
  .desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
  }

  .hamburger span {
    width: 26px;
    height: 2px;
    background: #111827;
    border-radius: 10px;
    transition: 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: #fff;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transform: translateX(-100%);
    transition: 0.35s ease;
    z-index: 10000;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    border-bottom: 1px solid #eee;
  }
}



/* Hide on Desktop */
.mobile-contact-btn{
    display:none;
}

@media (max-width:768px){

.mobile-contact-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:180px;
    height:50px;
    margin:30px auto 0;

    text-decoration:none;
    color:#fff !important;
    font-size:16px;
    font-weight:600;

    border-radius:50px;
    background:linear-gradient(135deg,#1BAB33,#24D48A,#1C9BEB);

    box-shadow:0 10px 25px rgba(28,155,235,.25);
    transition:.3s ease;
}

.mobile-contact-btn:hover{
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 15px 30px rgba(28,155,235,.35);
}

}