/* ══════════════════════════════════════════
   SANVIDHI TECH — style.css
   Version: 1.0 | 2025
══════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --navy:        #0b1a38;
  --navy-2:      #0f2248;
  --navy-3:      #162e5e;
  --blue:        #2563eb;
  --indigo:      #4f46e5;
  --purple:      #7c3aed;
  --pink:        #db2777;
  --grad:        linear-gradient(135deg, #db2777 0%, #7c3aed 48%, #2563eb 100%);
  --grad-subtle: linear-gradient(135deg, rgba(219,39,119,.10) 0%, rgba(124,58,237,.10) 48%, rgba(37,99,235,.10) 100%);
  --white:       #ffffff;
  --off-white:   #f5f7ff;
  --border:      #dde6f8;
  --text:        #0d1f40;
  --text-2:      #3b507d;
  --text-3:      #6b7fa8;
  --shadow:      0 4px 24px rgba(11,26,56,.09);
  --shadow-lg:   0 16px 48px rgba(11,26,56,.14);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   6px;
  --ease:        cubic-bezier(.4, 0, .2, 1);
  --t:           .25s;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; line-height: 1.18; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 700; }
p  { color: var(--text-2); line-height: 1.78; }

/* ── LAYOUT ── */
.wrap    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--alt  { background: var(--off-white); }
.section--dark { background: var(--navy); }

/* ── EYEBROW TAGS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 5px 13px; border-radius: 50px; margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad); flex-shrink: 0;
}
.eyebrow--light {
  background: var(--grad-subtle);
  border: 1px solid rgba(124,58,237,.2);
  color: var(--purple);
}
.eyebrow--dark {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-size: .88rem; font-weight: 700;
  border-radius: 50px; padding: 13px 26px;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              background var(--t) var(--ease),
              border-color var(--t) var(--ease),
              opacity var(--t) var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 18px rgba(124,58,237,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,.45);
}
.btn--ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--outline {
  background: transparent; color: var(--purple);
  border: 1.5px solid rgba(124,58,237,.35);
}
.btn--outline:hover { background: var(--grad-subtle); border-color: rgba(124,58,237,.5); }
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.topbar {
  background: var(--navy-2); padding: 7px 0;
  font-size: .8rem; color: rgba(255,255,255,.6);
}
.topbar .wrap {
  display: flex; justify-content: space-between;
  align-items: center; gap: 8px; flex-wrap: wrap;
}
.topbar-links { display: flex; gap: 22px; }
.topbar-links a {
  color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: 5px;
  transition: color var(--t);
}
.topbar-links a:hover { color: #fff; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(11,26,56,.06);
}
.navbar .wrap {
  display: flex; align-items: center;
  justify-content: space-between; height: 68px;
}
.nav-logo img { height: 46px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item  { position: relative; }

.nav-link {
  display: block; padding: 8px 13px;
  font-family: 'Syne', sans-serif; font-size: .87rem; font-weight: 600;
  color: var(--text); border-radius: var(--radius-xs);
  transition: color var(--t), background var(--t);
}
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-link.active { color: var(--purple); background: var(--grad-subtle); }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 230px; padding: 8px;
  animation: dropIn .18s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 9px 13px; font-size: .86rem;
  color: var(--text-2); border-radius: var(--radius-xs);
  transition: color var(--t), background var(--t);
}
.dropdown a:hover { color: var(--purple); background: var(--grad-subtle); }

/* Hamburger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: var(--radius-xs);
}
.burger span {
  width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: var(--t) var(--ease);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: var(--navy); position: relative;
  overflow: hidden; padding: 96px 0 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(124,58,237,.28) 0%, transparent 65%),
    radial-gradient(ellipse 45% 70% at 15% 90%, rgba(37,99,235,.22) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 5% 5%,   rgba(219,39,119,.12) 0%, transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; }

.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Syne', sans-serif; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 22px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad); animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.04rem; color: rgba(255,255,255,.65);
  margin-bottom: 34px; max-width: 460px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero cards (right column) */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hcard {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 20px 22px;
  transition: background var(--t);
}
.hcard:hover { background: rgba(255,255,255,.11); }
.hcard:nth-child(2) { margin-left: 20px; }
.hcard-label {
  font-size: .7rem; font-family: 'Syne', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.45); margin-bottom: 6px;
}
.hcard-val  { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800; color: #fff; line-height: 1.2; }
.hcard-sub  { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ══════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════ */
.statsband {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 32px 0;
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  text-align: center; padding: 14px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Syne', sans-serif; font-size: 2.1rem; font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-l { font-size: .78rem; color: rgba(255,255,255,.48); margin-top: 2px; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head h2 { margin-bottom: 12px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.scard {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
  display: flex; flex-direction: column;
}
.scard::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity var(--t);
}
.scard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124,58,237,.2);
}
.scard:hover::after { opacity: 1; }

/* Featured hero card */
.scard--hero {
  grid-column: span 2;
  background: var(--navy); border-color: var(--navy-3);
}
.scard--hero::after { opacity: 1; }
.scard--hero .scard-tag   { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.75); }
.scard--hero .scard-title { color: #fff; }
.scard--hero .scard-desc  { color: rgba(255,255,255,.6); }
.scard--hero .scard-feat li           { color: rgba(255,255,255,.55); }
.scard--hero .scard-feat li::before   { color: #a78bfa; }
.scard--hero .scard-more  { color: #a78bfa; }

.scard-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--off-white); border: 1px solid var(--border);
  color: var(--text-3); padding: 3px 10px; border-radius: 20px; margin-bottom: 14px;
}
.scard-icon  { font-size: 1.8rem; margin-bottom: 14px; }
.scard-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.scard-desc  { font-size: .87rem; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; flex: 1; }

.scard-feat  { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.scard-feat li { font-size: .82rem; color: var(--text-2); padding-left: 16px; position: relative; }
.scard-feat li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700; font-size: .78rem;
}
.scard-more {
  display: inline-flex; align-items: center; gap: 5px; margin-top: auto;
  font-family: 'Syne', sans-serif; font-size: .82rem; font-weight: 700;
  color: var(--purple); transition: gap var(--t);
}
.scard:hover .scard-more { gap: 9px; }

/* ══════════════════════════════════════════
   ERPNEXT DEEP-DIVE
══════════════════════════════════════════ */
.erpx-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.erpx-text h2   { color: #fff; margin-bottom: 14px; }
.erpx-text > p  { color: rgba(255,255,255,.62); margin-bottom: 32px; }

.steps { display: flex; flex-direction: column; }
.step  {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.step:last-child { border: none; }
.step-n {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif; font-size: .78rem; font-weight: 800; color: #fff;
}
.step-title { font-family: 'Syne', sans-serif; font-size: .93rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.step-txt   { font-size: .8rem; color: rgba(255,255,255,.48); line-height: 1.55; }

.erpx-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.efeat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm); padding: 16px;
  transition: background var(--t);
}
.efeat:hover { background: rgba(255,255,255,.09); }
.efeat-icon  { font-size: 1.25rem; margin-bottom: 6px; }
.efeat-title { font-family: 'Syne', sans-serif; font-size: .85rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.efeat-txt   { font-size: .76rem; color: rgba(255,255,255,.45); line-height: 1.5; }

.erpx-cta {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 26px;
}
.erpx-cta p { color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 18px; }

/* ══════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════ */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.icard {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 18px; text-align: center;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  cursor: default;
}
.icard:hover {
  border-color: rgba(124,58,237,.3);
  box-shadow: var(--shadow); transform: translateY(-3px);
}
.icard-icon { font-size: 1.9rem; margin-bottom: 10px; }
.icard-name { font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.icard-desc { font-size: .75rem; color: var(--text-3); line-height: 1.5; }

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.why-items { display: flex; flex-direction: column; gap: 18px; }
.witem { display: flex; gap: 15px; align-items: flex-start; }
.wicon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: var(--grad-subtle); border: 1px solid rgba(124,58,237,.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.wtitle { font-family: 'Syne', sans-serif; font-size: .97rem; font-weight: 700; margin-bottom: 3px; }
.wtxt   { font-size: .85rem; color: var(--text-2); }

.why-panel {
  background: var(--navy); border-radius: var(--radius);
  padding: 36px 30px; position: relative; overflow: hidden;
}
.why-panel::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.35), transparent 70%);
  pointer-events: none;
}
.wbadge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 14px;
}
.wbadge-icon { font-size: 1.5rem; }
.wbadge-lbl  {
  font-size: .7rem; color: rgba(255,255,255,.4);
  font-family: 'Syne', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px;
}
.wbadge-val  { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; color: #fff; }

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust {
  background: var(--off-white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.trust-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 32px; flex-wrap: wrap;
}
.titem {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-size: .82rem;
  font-weight: 700; color: var(--text-2);
}
.titem .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: .65rem; flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.contact-info h2     { color: #fff; margin-bottom: 12px; }
.contact-info > p    { color: rgba(255,255,255,.6); margin-bottom: 34px; }

.cdetails { display: flex; flex-direction: column; gap: 16px; }
.citem    { display: flex; gap: 13px; align-items: flex-start; }
.cicon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.clbl  {
  font-size: .68rem; color: rgba(255,255,255,.4);
  font-family: 'Syne', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px;
}
.cval   { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.cval a { color: rgba(255,255,255,.8); transition: color var(--t); }
.cval a:hover { color: #fff; }

/* Form */
.form-card { background: #fff; border-radius: var(--radius); padding: 36px 32px; }
.form-card h3 { font-size: 1.2rem; margin-bottom: 22px; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgroup { margin-bottom: 16px; }
.fgroup label {
  display: block; font-size: .8rem; font-family: 'Syne', sans-serif;
  font-weight: 700; color: var(--text); margin-bottom: 5px;
}
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text);
  background: var(--off-white); outline: none;
  transition: border-color var(--t), background var(--t);
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus { border-color: var(--purple); background: #fff; }
.fgroup textarea { height: 100px; resize: vertical; }

.fsubmit {
  width: 100%; padding: 13px;
  background: var(--grad); color: #fff; border-radius: 50px;
  font-family: 'Syne', sans-serif; font-size: .93rem; font-weight: 700;
  transition: opacity var(--t), transform var(--t), box-shadow var(--t);
}
.fsubmit:hover {
  opacity: .9; transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(124,58,237,.35);
}
.form-success {
  margin-top: 12px; font-size: .83rem; text-align: center;
  color: #16a34a; font-weight: 600; display: none;
  padding: 10px; background: #f0fdf4; border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: #060e1f; padding: 60px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 44px;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 42px; }
.footer-about {
  font-size: .84rem; color: rgba(255,255,255,.38);
  line-height: 1.72; max-width: 270px; margin-bottom: 20px;
}
.socials { display: flex; gap: 9px; }
.social {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: .82rem; font-weight: 700;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.social:hover { background: var(--purple); border-color: var(--purple); color: #fff; }

.footer-col h4 {
  font-family: 'Syne', sans-serif; font-size: .78rem; font-weight: 700;
  color: rgba(255,255,255,.9); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 14px;
}
.flinks li   { margin-bottom: 7px; }
.flinks a    { font-size: .83rem; color: rgba(255,255,255,.38); transition: color var(--t); }
.flinks a:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-copy  { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.28); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .scard--hero   { grid-column: span 2; }
  .ind-grid      { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE MENU ── */
@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: 12px; box-shadow: var(--shadow-lg); z-index: 300; gap: 2px;
  }
  .nav-menu.is-open { display: flex; }
  .dropdown {
    position: static; box-shadow: none; border: none;
    padding-left: 12px; animation: none; display: none;
  }
  .nav-item.is-open .dropdown { display: block; }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero    { padding: 64px 0 56px; }

  .hero-layout,
  .erpx-layout,
  .why-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .services-grid { grid-template-columns: 1fr; }
  .scard--hero   { grid-column: span 1; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat:nth-child(2n) { border-right: none; }

  .ind-grid    { grid-template-columns: repeat(2, 1fr); }
  .erpx-feats  { grid-template-columns: 1fr; }
  .frow        { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .topbar .wrap { flex-direction: column; text-align: center; gap: 4px; }
}

@media (max-width: 480px) {
  .ind-grid    { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { gap: 18px; }
}

/* ══════════════════════════════════════════
   TAGLINE ADDITIONS
══════════════════════════════════════════ */

/* Navbar logo tagline */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.nav-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--purple);
  line-height: 1;
  padding-left: 2px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Hero tagline badge */
.hero-tagline {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.0); /* transparent text, show gradient */
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  position: relative;
}
.hero-tagline::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--grad);
  margin-top: 6px;
  border-radius: 2px;
}
