/* ============================================================
   DESI FINAN ERP — Landing Page CSS
   Font: Roboto | Fully Responsive
   ============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --primary: #1B4FD8;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --green: #16a34a;
  --green-dark: #15803d;
  --accent: #F97316;
  --dark: #0F172A;
  --gray: #6b7280;
  --light-gray: #f1f5f9;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --radius: 12px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ── ANNOUNCE BAR ── */
.announce-bar {
  background: #1e3a5f;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}
.announce-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -.5px;
}
.erp-badge {
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: .5px;
  font-family: 'Roboto', sans-serif;
}
.nav-tagline { font-size: 11px; color: var(--gray); margin-top: 2px; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-login {
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Roboto', sans-serif;
  transition: all .2s;
}
.btn-login:hover { border-color: var(--primary); color: var(--primary); }
.btn-demo {
  padding: 9px 20px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  transition: all .2s;
  white-space: nowrap;
}
.btn-demo:hover { background: var(--green-dark); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
  padding: 4px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #eef2ff 0%, #f0fdf4 50%, #fff7ed 100%);
  padding: 70px 0 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}
.hero-text h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--dark);
}
.highlight-green { color: var(--green); }
.hero-sub { font-size: 17px; color: #374151; margin-bottom: 26px; line-height: 1.6; }
.hero-checks { margin-bottom: 28px; }
.check-row { display: flex; gap: 32px; margin-bottom: 12px; }
.check { font-size: 14px; font-weight: 500; color: #1f2937; display: flex; align-items: center; gap: 6px; }
.hero-btns { display: flex; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.btn-hero-green {
  padding: 14px 32px;
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(22,163,74,.3);
}
.btn-hero-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-hero-outline {
  padding: 14px 32px;
  border: 2px solid var(--dark);
  color: var(--dark);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  transition: all .2s;
}
.btn-hero-outline:hover { border-color: var(--primary); color: var(--primary); }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #fff;
  border: 2px solid #fff;
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.a1 { background: #1B4FD8; } .a2 { background: #F97316; }
.a3 { background: #16a34a; } .a4 { background: #7c3aed; }
.trust-label { font-size: 13px; font-weight: 600; color: var(--dark); }
.trust-stars { font-size: 12px; color: var(--gray); }

/* ── DASHBOARD PREVIEW ── */
.hero-visual { perspective: 1000px; }
.dashboard-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.15);
  overflow: hidden;
  border: 1px solid var(--border);
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform .4s;
}
.dashboard-preview:hover { transform: rotateY(0deg) rotateX(0deg); }
.dp-header {
  background: #1e3a5f;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dp-dot { width: 11px; height: 11px; border-radius: 50%; }
.dp-dot.r { background: #ef4444; }
.dp-dot.y { background: #f59e0b; }
.dp-dot.g { background: #22c55e; }
.dp-title { font-size: 12px; color: #94a3b8; margin-left: 10px; font-family: 'Roboto', sans-serif; }
.dp-body { display: grid; grid-template-columns: 120px 1fr; }
.dp-sidebar { background: #f8fafc; border-right: 1px solid var(--border); padding: 8px 0; }
.dp-item {
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}
.dp-item.active { background: var(--primary-light); color: var(--primary); font-weight: 700; border-left: 3px solid var(--primary); }
.dp-main { padding: 12px; }
.dp-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 10px; }
.dp-stat { background: var(--light-gray); border-radius: 8px; padding: 8px; border: 1px solid var(--border); }
.dp-sl { font-size: 8px; color: var(--gray); margin-bottom: 3px; font-family: 'Roboto', sans-serif; }
.dp-sv { font-size: 12px; font-weight: 900; font-family: 'Roboto', sans-serif; }
.dp-sv.green { color: var(--green); }
.dp-sv.blue { color: var(--primary); }
.dp-sv.orange { color: var(--accent); }
.dp-sv.red { color: #ef4444; }
.dp-sc { font-size: 8px; font-weight: 600; font-family: 'Roboto', sans-serif; }
.dp-sc.pos { color: var(--green); } .dp-sc.neg { color: #ef4444; }
.dp-charts { display: grid; grid-template-columns: 1.5fr 1fr; gap: 8px; margin-bottom: 8px; }
.dp-ct { font-size: 9px; font-weight: 700; color: var(--dark); margin-bottom: 6px; font-family: 'Roboto', sans-serif; }
.dp-bars { display: flex; align-items: flex-end; gap: 4px; height: 65px; padding-top: 8px; }
.dp-bar { flex: 1; background: var(--primary); border-radius: 3px 3px 0 0; opacity: .8; }
.dp-bar.acc { background: var(--accent); opacity: 1; }
.dp-pie-box { background: var(--light-gray); border-radius: 8px; padding: 8px; border: 1px solid var(--border); }
.dp-pie-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: conic-gradient(var(--primary) 0% 40%, var(--accent) 40% 65%, var(--green) 65% 82%, #94a3b8 82% 100%);
  margin: 0 auto;
}
.dp-table { background: var(--light-gray); border-radius: 8px; padding: 8px; border: 1px solid var(--border); }
.dp-tr { display: grid; grid-template-columns: 1fr 1.3fr 1fr .8fr; gap: 4px; padding: 3px 0; font-size: 8px; border-bottom: 1px solid var(--border); font-family: 'Roboto', sans-serif; }
.dp-tr.hd { font-weight: 700; color: var(--dark); }
.dp-badge { font-size: 7px; font-weight: 700; padding: 1px 5px; border-radius: 3px; }
.dp-badge.paid { background: #dcfce7; color: var(--green); }
.dp-badge.pend { background: #fef3c7; color: #b45309; }

/* ── FEATURE ROW ── */
.feature-icons-row {
  background: #fff;
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fi-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; }
.fi-item { text-align: center; padding: 20px 12px; border-radius: var(--radius); transition: all .2s; }
.fi-item:hover { background: var(--light-gray); transform: translateY(-3px); }
.fi-icon { font-size: 38px; margin-bottom: 12px; display: block; }
.fi-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; font-family: 'Roboto', sans-serif; }
.fi-desc { font-size: 12px; color: var(--gray); line-height: 1.5; font-family: 'Roboto', sans-serif; }

/* ── STATS BAR ── */
.stats-bar { background: #1e3a5f; padding: 40px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; text-align: center; }
.stat-num { font-size: 34px; font-weight: 900; color: #fff; margin-bottom: 6px; font-family: 'Roboto', sans-serif; }
.stat-lbl { font-size: 13px; color: #94a3b8; font-weight: 500; font-family: 'Roboto', sans-serif; }

/* ── WHY SECTION ── */
.why-section { padding: 80px 0; background: #fff; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 12px; font-family: 'Roboto', sans-serif; }
.why-sub { font-size: 15px; color: var(--gray); margin-bottom: 30px; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; margin-top: 2px;
}
.why-item strong { font-size: 15px; font-weight: 700; display: block; margin-bottom: 3px; font-family: 'Roboto', sans-serif; }
.why-item p { font-size: 13px; color: var(--gray); font-family: 'Roboto', sans-serif; }
.laptop-wrap { position: relative; }
.laptop-screen {
  background: #fff;
  border: 8px solid #1e3a5f;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.ls-topbar { background: #1e3a5f; padding: 7px 14px; font-size: 10px; color: #94a3b8; font-family: 'Roboto', sans-serif; }
.ls-body { padding: 14px; }
.ls-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13px; font-family: 'Roboto', sans-serif; }
.ls-green { color: var(--green); font-weight: 700; }
.ls-blue { color: var(--primary); font-weight: 700; }
.ls-orange { color: var(--accent); font-weight: 700; }
.ls-chart { display: flex; align-items: flex-end; gap: 5px; height: 48px; margin-top: 12px; }
.ls-b { flex: 1; background: var(--primary); border-radius: 3px 3px 0 0; opacity: .7; }
.ls-b.acc { background: var(--accent); opacity: 1; }
.laptop-stand { height: 18px; background: #1e3a5f; width: 60px; margin: 0 auto; clip-path: polygon(20% 0,80% 0,100% 100%,0 100%); }
.laptop-foot { height: 6px; background: #334155; border-radius: 3px; width: 120px; margin: 0 auto; }
.secure-badge {
  position: absolute;
  bottom: 30px; right: -10px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
  font-size: 12px;
  text-align: center;
  border: 1px solid var(--border);
  font-family: 'Roboto', sans-serif;
}

/* ── SECTION COMMON ── */
.section-title { text-align: center; font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 10px; font-family: 'Roboto', sans-serif; }
.section-sub { text-align: center; font-size: 15px; color: var(--gray); margin-bottom: 44px; font-family: 'Roboto', sans-serif; }

/* ── INDUSTRY ── */
.industry-section { padding: 80px 0; background: var(--light-gray); }
.ind-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 16px; }
.ind-item {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 10px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  transition: all .2s;
  cursor: default;
  font-family: 'Roboto', sans-serif;
}
.ind-item:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(27,79,216,.12); transform: translateY(-2px); }
.ind-icon { font-size: 34px; margin-bottom: 10px; display: block; }

/* ── PRICING ── */
.pricing-section { padding: 80px 0; background: #fff; }
.pricing-grid { display: grid; gap: 24px; margin: 0 auto 24px; width: 100%; }
.pricing-col-1 { grid-template-columns: 1fr; max-width: 420px; }
.pricing-col-2 { grid-template-columns: repeat(2,1fr); max-width: 820px; }
.pricing-col-3 { grid-template-columns: repeat(3,1fr); max-width: 1040px; }
.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  transition: all .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--green); box-shadow: 0 8px 32px rgba(22,163,74,.15); }
.popular-ribbon {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
  font-family: 'Roboto', sans-serif;
}
.plan-name { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--dark); font-family: 'Roboto', sans-serif; }
.plan-price { font-size: 40px; font-weight: 900; color: var(--primary); margin-bottom: 24px; font-family: 'Roboto', sans-serif; }
.plan-per { font-size: 15px; font-weight: 400; color: var(--gray); }
.plan-features { margin-bottom: 30px; }
.plan-features li { padding: 9px 0; font-size: 14px; border-bottom: 1px solid var(--border); font-family: 'Roboto', sans-serif; }
.btn-plan-blue, .btn-plan-green {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  transition: all .2s;
}
.btn-plan-blue { background: var(--primary); color: #fff; }
.btn-plan-blue:hover { background: var(--primary-dark); }
.btn-plan-green { background: var(--green); color: #fff; }
.btn-plan-green:hover { background: var(--green-dark); }
.pricing-note { text-align: center; font-size: 13px; color: var(--gray); font-family: 'Roboto', sans-serif; }

/* ── TESTIMONIALS ── */
.testi-section { padding: 80px 0; background: var(--light-gray); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: all .2s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testi-stars { font-size: 16px; margin-bottom: 14px; }
.testi-card p { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 22px; font-style: italic; font-family: 'Roboto', sans-serif; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Roboto', sans-serif;
}
.testi-av.g { background: var(--green); }
.testi-av.o { background: var(--accent); }
.testi-author strong { font-size: 14px; font-weight: 700; font-family: 'Roboto', sans-serif; }
.testi-author small { font-size: 12px; color: var(--gray); font-family: 'Roboto', sans-serif; }

/* ── BRANDS ── */
.brands-section { padding: 60px 0; background: #fff; }
.brands-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 24px; margin-top: 10px; }
.brand-item { text-align: center; font-size: 12px; font-weight: 600; color: #374151; font-family: 'Roboto', sans-serif; }
.brand-av {
  width: 60px; height: 60px; border-radius: 14px;
  color: #fff; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  font-family: 'Roboto', sans-serif;
}

/* ── BLOG ── */
.blog-section { padding: 80px 0; background: var(--light-gray); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-thumb { height: 150px; display: flex; align-items: flex-end; padding: 16px; }
.blog-tag {
  background: rgba(255,255,255,.92);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
}
.blog-body { padding: 22px; }
.blog-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); line-height: 1.4; font-family: 'Roboto', sans-serif; }
.blog-body p { font-size: 13px; color: var(--gray); margin-bottom: 14px; font-family: 'Roboto', sans-serif; }
.read-more { font-size: 13px; font-weight: 700; color: var(--primary); font-family: 'Roboto', sans-serif; }
.read-more:hover { color: var(--primary-dark); }
.btn-view-all {
  padding: 12px 32px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  transition: all .2s;
  display: inline-block;
}
.btn-view-all:hover { background: var(--primary); color: #fff; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, #1B4FD8, #16a34a); padding: 64px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-text h2 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 8px; font-family: 'Roboto', sans-serif; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,.85); font-family: 'Roboto', sans-serif; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; }
.btn-cta-white {
  padding: 14px 30px;
  background: #fff;
  color: var(--green);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  transition: all .2s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.btn-cta-outline {
  padding: 14px 30px;
  border: 2px solid rgba(255,255,255,.8);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  transition: all .2s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ── FOOTER ── */
.footer { background: #0F172A; padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 48px; }
.footer-logo { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; font-family: 'Roboto', sans-serif; }
.erp-f { background: var(--green); font-size: 11px; padding: 2px 8px; border-radius: 5px; font-weight: 700; }
.footer-about { font-size: 13px; color: #94a3b8; line-height: 1.7; margin-bottom: 20px; font-family: 'Roboto', sans-serif; }
.social-row { display: flex; gap: 8px; }
.soc-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  transition: background .2s;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}
.soc-btn:hover { background: rgba(255,255,255,.2); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .6px; font-family: 'Roboto', sans-serif; }
.footer-col a { display: block; font-size: 13px; color: #94a3b8; margin-bottom: 10px; transition: color .2s; font-family: 'Roboto', sans-serif; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 13px; color: #94a3b8; margin-bottom: 8px; line-height: 1.6; font-family: 'Roboto', sans-serif; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer-btm { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #64748b; font-family: 'Roboto', sans-serif; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .fi-grid { grid-template-columns: repeat(3,1fr); }
  .ind-grid { grid-template-columns: repeat(4,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .brands-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 36px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .laptop-wrap { max-width: 400px; margin: 0 auto; }
  .secure-badge { right: 0; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .stats-inner { grid-template-columns: repeat(3,1fr); }
  .pricing-grid,
  .pricing-col-1,
  .pricing-col-2,
  .pricing-col-3 { max-width: 480px; grid-template-columns: 1fr; margin: 0 auto 24px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .hero { padding: 44px 0 36px; }
  .hero-text h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .check-row { flex-direction: column; gap: 8px; }
  .hero-btns { flex-direction: column; }
  .btn-hero-green, .btn-hero-outline { text-align: center; padding: 13px 24px; }
  .hero-visual { display: none; }
  .fi-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .stat-num { font-size: 26px; }
  .ind-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .section-title { font-size: 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-btm { flex-direction: column; gap: 8px; text-align: center; }
  .cta-text h2 { font-size: 22px; }
  .cta-banner { padding: 44px 0; }
  .announce-bar { font-size: 11px; }
  .navbar-inner { padding: 12px 16px; }
  .nav-logo { font-size: 18px; }
  .btn-login, .btn-demo { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 380px) {
  .hero-text h1 { font-size: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-price { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* Mobile nav menu (shown when hamburger clicked) */
.nav-mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 999;
}
