/* ═══════════════════════════════════════════
   VALUE POINT — SHARED STYLES
   Stuxen-inspired: White · Electric Blue
   ═══════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────── */
:root {
  --white:   #FFFFFF;
  --black:   #0A0A0A;
  --blue:    #0047FF;
  --blue2:   #0035CC;
  --blue3:   rgba(0,71,255,0.08);
  --blue4:   rgba(0,71,255,0.15);
  --grey:    #F5F5F7;
  --grey2:   #EBEBEB;
  --grey3:   #999999;
  --text:    #0A0A0A;
  --text2:   #555555;
  --text3:   #888888;
  --border:  #E5E5E5;
  --font:    'Plus Jakarta Sans', sans-serif;
  --r:       10px;
  --r-lg:    18px;
  --r-xl:    28px;
  --shadow:  0 2px 16px rgba(0,0,0,0.06);
  --shadow2: 0 8px 40px rgba(0,0,0,0.10);
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--white); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ── LAYOUT ──────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.sec  { padding: 100px 0; }
.sec-sm { padding: 72px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── TYPOGRAPHY ──────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue3); border: 1px solid var(--blue4);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.tag-dark {
  color: var(--white); background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
h1,h2,h3,h4,h5 { line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; }
h1 { font-size: clamp(44px, 6vw, 80px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: 20px; }
.sec-title { margin-bottom: 56px; }
.sec-title h2 { margin-bottom: 14px; }
.sec-title p  { font-size: 17px; color: var(--text2); max-width: 560px; line-height: 1.7; }
.sec-title.center { text-align: center; }
.sec-title.center p { margin: 0 auto; }
.blue-text { color: var(--blue); }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 14px; font-weight: 700; font-family: var(--font);
  transition: all 0.22s ease; white-space: nowrap; border: none;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,71,255,0.35); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-lg { padding: 16px 32px; font-size: 15px; border-radius: var(--r-lg); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-arrow::after { content: '→'; margin-left: 2px; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── NAV ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a {
  font-size: 14px; font-weight: 600; color: var(--text2);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--blue); transform: scaleX(0);
  transition: transform 0.2s; transform-origin: left;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 8px 0 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 600; color: var(--text2); padding: 13px 32px; border-bottom: 1px solid var(--grey2); }
.mobile-menu a:hover { color: var(--blue); }

/* ── HERO ────────────────────────────────── */
.hero { padding: 160px 0 100px; position: relative; overflow: hidden; }
.hero-label { margin-bottom: 24px; }
.hero h1 { margin-bottom: 24px; max-width: 900px; }
.hero h1 span { color: var(--blue); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--text2); max-width: 580px; line-height: 1.7; margin-bottom: 44px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 72px; }
.hero-line { width: 100%; height: 1px; background: var(--border); margin-bottom: 48px; }

/* Hero decorative elements */
.hero-dot {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-dot-1 {
  width: 500px; height: 500px; right: -120px; top: -120px;
  background: radial-gradient(circle, rgba(0,71,255,0.06) 0%, transparent 70%);
}
.hero-dot-2 {
  width: 300px; height: 300px; left: -60px; bottom: -60px;
  background: radial-gradient(circle, rgba(0,71,255,0.04) 0%, transparent 70%);
}

/* ── MARQUEE ─────────────────────────────── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0; background: var(--grey);
}
.marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 36px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text3); white-space: nowrap;
}
.marquee-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── CARDS ───────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); border-color: rgba(0,71,255,0.2); }
.card-grey { background: var(--grey); border-color: transparent; }
.card-grey:hover { border-color: rgba(0,71,255,0.15); }
.card-blue { background: var(--blue); color: var(--white); border-color: transparent; }
.card-blue:hover { background: var(--blue2); transform: translateY(-4px); }
.card-dark { background: var(--black); color: var(--white); border-color: transparent; }

/* Service card */
.service-card { position: relative; overflow: hidden; }
.service-num { font-size: 13px; font-weight: 700; color: var(--text3); margin-bottom: 20px; font-variant-numeric: tabular-nums; }
.service-icon { font-size: 32px; margin-bottom: 16px; }
.service-card h4 { font-size: 20px; margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text2); line-height: 1.7; }
.service-link { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--blue); margin-top: 20px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* Blog card */
.blog-card { display: flex; flex-direction: column; }
.blog-img { aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; margin-bottom: 20px; background: var(--grey); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-tag { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.blog-card h4 { font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.blog-card p  { font-size: 14px; color: var(--text2); margin-bottom: 16px; flex: 1; }
.blog-meta { font-size: 12px; color: var(--text3); }

/* Work card */
.work-card { overflow: hidden; border-radius: var(--r-xl); position: relative; }
.work-img { aspect-ratio: 4/3; background: var(--grey); display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; overflow: hidden; }
.work-overlay { position: absolute; inset: 0; background: rgba(0,71,255,0.9); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay span { color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; }
.work-info { padding: 20px 0 0; }
.work-category { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 6px; }
.work-card h4 { font-size: 18px; transition: color 0.2s; }
.work-card:hover h4 { color: var(--blue); }

/* ── STATS ───────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; }
.stat-item { padding: 32px 28px; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-size: 40px; font-weight: 900; letter-spacing: -0.04em; color: var(--text); margin-bottom: 4px; }
.stat-item .num span { color: var(--blue); }
.stat-item .lbl { font-size: 13px; color: var(--text3); }

/* ── TESTIMONIAL ─────────────────────────── */
.testimonial-card { padding: 36px; border-radius: var(--r-xl); background: var(--grey); border: 1px solid transparent; }
.testimonial-card:hover { border-color: var(--blue4); }
.stars { color: var(--blue); font-size: 14px; margin-bottom: 16px; }
.testimonial-card blockquote { font-size: 16px; line-height: 1.75; color: var(--text2); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; font-weight: 700; flex-shrink: 0; }
.author-name  { font-size: 14px; font-weight: 700; }
.author-role  { font-size: 12px; color: var(--text3); }

/* ── PRICING ─────────────────────────────── */
.pricing-card { border: 1px solid var(--border); border-radius: var(--r-xl); padding: 40px 36px; position: relative; transition: box-shadow 0.25s, transform 0.25s; }
.pricing-card:hover { box-shadow: var(--shadow2); transform: translateY(-6px); }
.pricing-card.featured { border-color: var(--blue); border-width: 2px; }
.pricing-card .popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.pricing-stage { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.pricing-card h3 { font-size: 24px; margin-bottom: 8px; }
.pricing-price { margin: 20px 0; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-price .amount { font-size: 36px; font-weight: 900; letter-spacing: -0.03em; }
.pricing-price .period { font-size: 14px; color: var(--text3); margin-top: 4px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text2); }
.feat-check { width: 20px; height: 20px; border-radius: 50%; background: var(--blue3); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900; flex-shrink: 0; margin-top: 1px; border: 1px solid var(--blue4); }
.pricing-card .btn { width: 100%; justify-content: center; font-size: 14px; }

/* ── FAQ ─────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-size: 16px; font-weight: 700; transition: color 0.2s; gap: 20px; }
.faq-q:hover { color: var(--blue); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; flex-shrink: 0; transition: all 0.3s; color: var(--text3); }
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; font-size: 15px; color: var(--text2); line-height: 1.75; max-width: 680px; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT FORM ────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: var(--font); font-size: 14px;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue3); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; padding: 16px 20px; background: #E8F8F0; border: 1.5px solid #34C77A; border-radius: var(--r); color: #1A7A4A; font-size: 14px; font-weight: 600; margin-top: 12px; }
.form-success.show { display: block; }

/* ── CTA SECTION ─────────────────────────── */
.cta-section { background: var(--blue); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 70%); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,0.72); font-size: 17px; margin-bottom: 36px; max-width: 520px; }

/* ── FOOTER ──────────────────────────────── */
.footer { background: var(--white); color: var(--text); padding: 80px 0 40px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { height: 42px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text2); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer-founder { font-size: 12px; color: var(--text3); margin-bottom: 22px; margin-top: -10px; }
.footer-founder span { color: var(--blue); font-weight: 600; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 8px; background: var(--grey); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.footer-socials a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.footer-socials svg { width: 15px; height: 15px; fill: var(--text2); }
.footer-socials a:hover svg { fill: var(--white); }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text2); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--blue); }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--text3); }
.footer-bottom a { color: var(--blue); }

/* ── PAGE HERO (inner pages) ─────────────── */
.page-hero { padding: 140px 0 80px; background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: -200px; top: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(0,71,255,0.20) 0%, transparent 65%); pointer-events: none; }
.page-hero .tag-dark { margin-bottom: 20px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p  { font-size: 18px; color: rgba(255,255,255,0.60); max-width: 580px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.40); margin-bottom: 20px; }
.breadcrumb a  { color: rgba(255,255,255,0.40); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.20); }

/* ── PROCESS STEPS ───────────────────────── */
.process-step { display: flex; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.process-num { font-size: 48px; font-weight: 900; color: var(--grey2); letter-spacing: -0.04em; line-height: 1; width: 64px; flex-shrink: 0; padding-top: 4px; }
.process-content h4 { font-size: 20px; margin-bottom: 8px; }
.process-content p  { font-size: 15px; color: var(--text2); line-height: 1.7; }

/* ── DIVIDER ─────────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--border); }
.divider-v { width: 1px; background: var(--border); }

/* ── TEAM ────────────────────────────────── */
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1/1; border-radius: var(--r-xl); background: var(--grey); display: flex; align-items: center; justify-content: center; font-size: 48px; margin-bottom: 16px; overflow: hidden; }
.team-name { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text3); }

/* ── SPLIT SECTION ───────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }
.split-visual { border-radius: var(--r-xl); overflow: hidden; background: var(--grey); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 80px; }

/* ── ANIMATIONS ──────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.10s; }
.fade-up-d2 { transition-delay: 0.20s; }
.fade-up-d3 { transition-delay: 0.30s; }
.fade-up-d4 { transition-delay: 0.40s; }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-left.in  { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-right.in { opacity: 1; transform: translateX(0); }

/* Counter animation */
.counter-num { display: inline-block; }

/* ── CHATBOT ─────────────────────────────── */
.chatbot-toggle {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--blue); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(0,71,255,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(0,71,255,0.55); }
.chatbot-toggle svg { width: 26px; height: 26px; fill: white; transition: opacity 0.2s; }
.chatbot-toggle .ico-close { display: none; }
.chatbot-toggle.open .ico-chat  { display: none; }
.chatbot-toggle.open .ico-close { display: block; }

.chatbot-panel {
  position: fixed; bottom: 100px; right: 28px; z-index: 900;
  width: 380px; max-width: calc(100vw - 40px);
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0; pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: bottom right;
}
.chatbot-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chatbot-header {
  background: var(--blue); padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
}
.chatbot-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.chatbot-title { color: var(--white); }
.chatbot-title strong { display: block; font-size: 14px; font-weight: 700; }
.chatbot-title small { font-size: 12px; color: rgba(255,255,255,0.70); }
.chatbot-status { width: 8px; height: 8px; border-radius: 50%; background: #34C77A; margin-left: auto; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(52,199,122,0.3); }

.chatbot-messages { flex: 1; height: 340px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--grey2); border-radius: 4px; }

.msg { display: flex; gap: 8px; max-width: 88%; }
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }
.msg-bubble { padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.55; }
.msg.bot  .msg-bubble { background: var(--grey); color: var(--text); border-bottom-left-radius: 4px; }
.msg.user .msg-bubble { background: var(--blue); color: var(--white); border-bottom-right-radius: 4px; }
.msg-time { font-size: 10px; color: var(--text3); align-self: flex-end; margin-bottom: 2px; }

.typing-dots { display: flex; gap: 4px; padding: 12px 14px; }
.typing-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--text3); animation: typing 1.2s infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

.chatbot-input-row { padding: 12px 14px; border-top: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-end; }
.chatbot-input {
  flex: 1; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 10px 14px; font-family: var(--font); font-size: 13px;
  resize: none; outline: none; max-height: 100px; color: var(--text);
  transition: border-color 0.2s;
}
.chatbot-input:focus { border-color: var(--blue); }
.chatbot-send { width: 38px; height: 38px; border-radius: 10px; background: var(--blue); border: none; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; cursor: pointer; }
.chatbot-send:hover { background: var(--blue2); }
.chatbot-send svg { width: 16px; height: 16px; fill: white; }
.chatbot-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 14px 0; }
.suggestion-chip { font-size: 11px; font-weight: 600; color: var(--blue); background: var(--blue3); border: 1px solid var(--blue4); padding: 5px 10px; border-radius: 100px; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.suggestion-chip:hover { background: var(--blue4); }

/* WA Float */
.wa-float { position: fixed; bottom: 28px; left: 28px; z-index: 900; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── HERO VISUAL (animated dashboard) ───── */
.hero-split {
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}
.hero-split .hero-btns { margin-bottom: 0; }

.hero-visual {
  position: relative;
  height: 440px;
  flex-shrink: 0;
}
.hv-glow {
  position: absolute;
  width: 380px; height: 380px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,71,255,0.13) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

/* Dashboard card */
.hv-dash {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
  background: #0A0A18;
  border: 1px solid rgba(0,71,255,0.45);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 0 0 1px rgba(0,71,255,0.1), 0 0 40px rgba(0,71,255,0.18), 0 24px 60px rgba(0,0,0,0.35);
  animation: heroFloat 5s ease-in-out infinite;
  z-index: 2;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50%       { transform: translate(-50%, calc(-50% - 10px)); }
}

.hv-dash-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.hv-dash-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.hv-dot-live {
  width: 7px; height: 7px; border-radius: 50%; background: #22C55E;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* Star rating row */
.hv-rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hv-stars { color: #F0A500; font-size: 14px; letter-spacing: 2px; }
.hv-rating-num { font-size: 18px; font-weight: 900; color: #fff; line-height: 1; }
.hv-rating-label { font-size: 9px; color: rgba(255,255,255,0.38); margin-left: auto; }

/* Bar chart */
.hv-chart { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hv-chart-bars {
  display: flex; align-items: flex-end; gap: 6px;
  height: 64px; margin-bottom: 8px;
}
.hv-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: #0047FF;
  animation: barGrow 0.9s cubic-bezier(0.34, 1.5, 0.64, 1) both;
  transform-origin: bottom;
}
.hv-bar:nth-child(1) { background: rgba(0,71,255,0.5); }
.hv-bar:nth-child(2) { background: rgba(0,71,255,0.65); }
.hv-bar:nth-child(3) { background: rgba(0,71,255,0.82); }
@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
.hv-chart-label { font-size: 9px; color: rgba(255,255,255,0.4); }

/* Map pin with ripple */
.hv-map-row { display: flex; align-items: center; gap: 12px; }
.hv-pin-wrap {
  position: relative; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hv-ripple {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(0,71,255,0.7);
  animation: rippleOut 2.4s ease-out infinite;
  opacity: 0;
}
.hv-r1 { width: 12px; height: 12px; animation-delay: 0s; }
.hv-r2 { width: 22px; height: 22px; animation-delay: 0.7s; }
.hv-r3 { width: 32px; height: 32px; animation-delay: 1.4s; }
@keyframes rippleOut {
  0%   { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.hv-pin-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #0047FF; position: relative; z-index: 1;
  box-shadow: 0 0 8px rgba(0,71,255,0.8);
}
.hv-map-text { font-size: 10px; color: rgba(255,255,255,0.45); line-height: 1.4; }

/* Notification toasts */
.hv-notif {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px; font-weight: 700; color: var(--text);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  white-space: nowrap; z-index: 3;
  animation: notifFloat 9s ease-in-out infinite;
  opacity: 0;
}
.hv-notif-1 { top: 5%;   right: 0%;  animation-delay: 0s; }
.hv-notif-2 { top: 42%;  right: -6%; animation-delay: 3s; }
.hv-notif-3 { bottom: 6%; left: 0%;  animation-delay: 6s; }
@keyframes notifFloat {
  0%   { opacity: 0; transform: translateY(8px); }
  10%  { opacity: 1; transform: translateY(0); }
  40%  { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 0; transform: translateY(-6px); }
}

@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; margin-bottom: 48px; }
  .hero-visual { display: none; }
  .hero-split .hero-btns { margin-bottom: 0; }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .grid-4     { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .split      { grid-template-columns: 1fr; gap: 48px; }
  .split.flip { direction: ltr; }
  .stats-row  { grid-template-columns: repeat(2,1fr); }
  .stats-row .stat-item:nth-child(2) { border-right: none; }
  .stats-row .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stats-row .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .nav-menu   { display: none; }
  .hamburger  { display: flex; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 768px) {
  .container   { padding: 0 20px; }
  .sec         { padding: 72px 0; }
  .hero        { padding: 120px 0 72px; }
  .grid-2      { grid-template-columns: 1fr; }
  .grid-3      { grid-template-columns: 1fr; }
  .stats-row   { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top  { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .chatbot-panel { right: 16px; bottom: 90px; }
  .chatbot-toggle { right: 16px; bottom: 16px; }
  .wa-float { left: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
