/* ─── NAV ─── */
.topbar {
  background: var(--navy);
  padding: 6px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}
.topbar a { color: var(--text-muted); text-decoration: none; }
.topbar a:hover { color: var(--red); }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.back-link { display: flex; align-items: center; gap: 6px; color: var(--text-muted) !important; font-size: 12px; }
.back-link:hover { color: var(--red) !important; }

nav {
  background: var(--navy);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--navy-light);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.logo-img { height: 46px; width: auto; display: block; padding: 10px 0; }
.nav-links { display: flex; }
.nav-item {
  color: #c8d3e8;
  font-size: 13px;
  font-weight: 500;
  padding: 20px 16px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.nav-item:hover, .nav-item.active { color: var(--white); border-bottom-color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #c02020; }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(247,148,29,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(224,48,48,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #0f1a2e 0%, #1a2d4a 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 48px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.ns-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,148,29,0.12);
  border: 1px solid rgba(247,148,29,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ns-gold);
  margin-bottom: 20px;
}
.ns-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ns-gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 em { color: var(--ns-gold); font-style: italic; }
.hero-sub {
  font-size: 16px;
  color: #aab3c8;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-gold {
  background: var(--ns-gold);
  color: var(--navy);
  border: none;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-gold:hover { background: #e8870a; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--white); }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--ns-gold);
  font-weight: 600;
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 3px; letter-spacing: 0.3px; }

/* HERO CARD */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-card-header {
  background: rgba(247,148,29,0.12);
  border-bottom: 1px solid rgba(247,148,29,0.2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-title { font-size: 12px; font-weight: 600; color: var(--ns-gold); letter-spacing: 0.5px; }
.live-badge {
  background: rgba(37,199,140,0.15);
  border: 1px solid rgba(37,199,140,0.3);
  color: #25c78c;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: #25c78c; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero-card-body { padding: 20px; }
.module-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.module-name { font-size: 12px; color: #c8d8f0; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.module-icon { font-size: 14px; }
.module-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.status-live { background: rgba(37,199,140,0.15); color: #25c78c; }
.status-opt { background: rgba(247,148,29,0.15); color: var(--ns-gold); }
.hero-card-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-footer-text { font-size: 11px; color: var(--text-muted); }
.card-footer-link { font-size: 12px; color: var(--ns-gold); font-weight: 600; cursor: pointer; }

/* ─── BREADCRUMB STRIP ─── */
.breadcrumb-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 12px 48px;
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-strip a { color: var(--red); text-decoration: none; font-weight: 500; }
.breadcrumb-sep { color: #bbc; }

/* ─── SECTIONS SHARED ─── */
.section { padding: 72px 48px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.eyebrow.gold { color: var(--ns-gold); }
.eyebrow.red { color: var(--red); }
.eyebrow.teal { color: var(--ns-teal); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.section-sub { font-size: 15px; color: var(--gray); line-height: 1.75; max-width: 620px; }

/* ─── WHY NETSUITE ─── */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.why-visual {
  background: var(--off-white);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  border: 1px solid var(--gray-light);
}
.why-visual-title { font-size: 12px; font-weight: 600; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.growth-bar-wrap { margin-bottom: 14px; }
.growth-bar-label { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; }
.growth-bar-label span:first-child { color: var(--navy); font-weight: 500; }
.growth-bar-label span:last-child { color: var(--ns-gold); font-weight: 700; }
.bar-track { background: #e8edf5; border-radius: 4px; height: 8px; }
.bar-fill { height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--ns-gold), #ffb347); transition: width 1.5s ease; }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: rgba(247,148,29,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.why-point-text h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-point-text p { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ─── CAPABILITIES ─── */
.capabilities-section { background: var(--navy); padding: 72px 48px; }
.cap-tabs { display: flex; gap: 0; border-bottom: 2px solid rgba(255,255,255,0.08); margin-top: 40px; flex-wrap: wrap; }
.cap-tab {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.cap-tab:hover { color: #c8d8f0; }
.cap-tab.active { color: var(--ns-gold); border-bottom-color: var(--ns-gold); }
.cap-panel { display: none; margin-top: 36px; }
.cap-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.cap-detail h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}
.cap-detail p { font-size: 14px; color: #aab3c8; line-height: 1.75; margin-bottom: 24px; }
.cap-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.cap-features li { display: flex; gap: 10px; font-size: 13px; color: #c8d8f0; align-items: flex-start; line-height: 1.5; }
.cap-features li::before { content: '✓'; color: var(--ns-gold); font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.cap-link { font-size: 13px; color: var(--ns-gold); font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.cap-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 24px;
}
.cap-visual-title { font-size: 11px; font-weight: 700; color: var(--ns-gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.cap-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.cap-metric {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
.cap-metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--ns-gold);
  font-weight: 600;
}
.cap-metric-label { font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.cap-bar-item { margin-bottom: 10px; }
.cap-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: #aab3c8; margin-bottom: 4px; }
.cap-bar-track { background: rgba(255,255,255,0.08); border-radius: 3px; height: 6px; }
.cap-bar-fill { height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--ns-gold), #ffb347); }

/* ─── SEGMENT SECTION ─── */
.segment-section { background: var(--off-white); }
.seg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.seg-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 36px 32px;
  border-top: 4px solid var(--ns-gold);
  position: relative;
  overflow: hidden;
}
.seg-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(247,148,29,0.06), transparent 70%);
  border-radius: 50%;
}
.seg-icon { font-size: 28px; margin-bottom: 16px; }
.seg-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 10px;
}
.seg-card > p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.seg-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.seg-list li { font-size: 13px; color: var(--navy); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.seg-list li::before { content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.seg-badge-row { display: flex; gap: 8px; flex-wrap: wrap; }
.seg-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.seg-pill.emerging { background: rgba(247,148,29,0.1); color: #b87200; }
.seg-pill.midmarket { background: rgba(224,48,48,0.08); color: var(--red); }
.seg-pill.both { background: rgba(0,180,216,0.1); color: #008aaa; }

/* ─── MODULES GRID ─── */
.modules-section { background: var(--white); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
}
.module-tile {
  background: var(--white);
  padding: 28px 22px;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}
.module-tile:hover { background: #fffbf5; }
.module-tile:hover .module-tile-icon { background: rgba(247,148,29,0.15); }
.module-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: background 0.15s;
}
.module-tile h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.module-tile p { font-size: 12px; color: var(--gray); line-height: 1.55; }
.module-tile-arrow { font-size: 14px; color: var(--ns-gold); margin-top: 10px; display: block; }

/* ─── SUCCESS METRICS ─── */
.metrics-section { background: var(--navy); padding: 72px 48px; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); margin-top: 40px; border-radius: 8px; overflow: hidden; }
.metric-tile { background: var(--navy-mid); padding: 36px 28px; text-align: center; }
.metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--ns-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label { font-size: 14px; color: #c8d8f0; font-weight: 500; margin-bottom: 6px; }
.metric-sub { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ─── TESTIMONIALS ─── */
.testi-section { background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: rgba(247,148,29,0.15);
  position: absolute;
  top: 12px; right: 20px;
  line-height: 1;
}
.testi-seg-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.testi-seg-tag.emerging { background: rgba(247,148,29,0.1); color: #b87200; }
.testi-seg-tag.midmarket { background: rgba(224,48,48,0.08); color: var(--red); }
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--navy);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 18px;
}
.testi-attr { font-size: 12px; color: var(--gray); }
.testi-attr strong { color: var(--ns-gold); font-family: 'DM Sans', sans-serif; }
.testi-result {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(247,148,29,0.06);
  border-radius: 6px;
  border-left: 3px solid var(--ns-gold);
  font-size: 12px;
  color: var(--navy);
  font-weight: 500;
}

/* ─── ENCODLE ADVANTAGE ─── */
.advantage-section { background: var(--white); }
.advantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 48px; }
.adv-steps { display: flex; flex-direction: column; gap: 0; }
.adv-step { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--gray-light); }
.adv-step:last-child { border-bottom: none; }
.adv-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: rgba(247,148,29,0.2);
  font-weight: 600;
  min-width: 40px;
  line-height: 1;
  margin-top: 2px;
}
.adv-text h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.adv-text p { font-size: 13px; color: var(--gray); line-height: 1.65; }
.adv-visual {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.adv-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(247,148,29,0.12), transparent 70%);
  border-radius: 50%;
}
.adv-visual-title { font-size: 11px; font-weight: 700; color: var(--ns-gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.adv-comparison { display: flex; flex-direction: column; gap: 12px; }
.adv-row { display: flex; align-items: center; gap: 12px; }
.adv-row-label { font-size: 12px; color: #aab3c8; min-width: 130px; }
.adv-row-bar { flex: 1; }
.adv-bar-track { background: rgba(255,255,255,0.08); border-radius: 3px; height: 8px; position: relative; }
.adv-bar-fill { height: 8px; border-radius: 3px; }
.adv-bar-fill.encodle { background: linear-gradient(90deg, var(--ns-gold), #ffb347); }
.adv-bar-fill.typical { background: rgba(255,255,255,0.15); }
.adv-row-val { font-size: 12px; font-weight: 700; min-width: 36px; text-align: right; }
.adv-row-val.gold { color: var(--ns-gold); }
.adv-row-val.dim { color: var(--text-muted); }
.adv-legend { display: flex; gap: 20px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.adv-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 2px; }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, #0f1a2e 0%, #1a2d4a 100%);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(247,148,29,0.08), transparent 70%);
}
.cta-section-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}
.cta-section p { font-size: 16px; color: #aab3c8; margin-bottom: 32px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer { background: #060e1c; padding: 48px 48px 24px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; max-width: 1140px; margin: 0 auto; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-img { height: 40px; width: auto; display: block; margin-bottom: 12px; }
.footer-tagline { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ns-gold); margin-bottom: 12px; }
.footer-desc { font-size: 12px; color: #6b7a99; line-height: 1.7; }
.footer-col h5 { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #aab3c8; font-weight: 700; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: #6b7a99; text-decoration: none; margin-bottom: 8px; cursor: pointer; }
.footer-col a:hover { color: var(--ns-gold); }
.footer-bottom { max-width: 1140px; margin: 20px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #4a5580; }
.footer-bottom a { color: #4a5580; text-decoration: none; margin-left: 20px; }
.footer-bottom a:hover { color: var(--ns-gold); }


/* ====================================================
   ENCODLE — RESPONSIVE / MOBILE CSS
   Injected into all standalone HTML files.
   Breakpoints: tablet ≤1024px  |  mobile ≤768px  |  small ≤480px
   ==================================================== */

/* ── SHARED LAYOUT UTILITIES ── */
@media (max-width:1024px){
  /* Global padding */
  .topbar,nav,.sec,.pain-section,.included-section,.how-section,
  .plans-section,.compare-section,.metrics-section,.testi-section,
  .faq-section,.advantage-section,.final-cta,.cta-section,
  .editions-section,.segment-section,.modules-section,
  .why-section,.capabilities-section,.roi-section,
  footer,.hero,
  .hero-inner,.pain-inner,.included-inner,.how-inner,.plans-inner,
  .compare-inner,.metrics-inner,.testi-inner,.roi-inner,
  .insight-section,.insight-inner,.advantage-section{
    padding-left:28px !important;
    padding-right:28px !important;
  }
  /* Footer columns */
  .ftr-top,.footer-top{ grid-template-columns:1fr 1fr !important; gap:28px !important; }
  /* Metrics always 2-col on tablet */
  .met-grid,.metrics-grid,.roi-grid,.rgrid{ grid-template-columns:repeat(2,1fr) !important; }
  /* Plans: single col centered */
  .plans-grid,.pgrid2,.ed-grid,.editions-grid{ grid-template-columns:1fr !important; max-width:480px; margin-left:auto; margin-right:auto; }
  /* Testi: 2-col */
  .testi-grid,.tgrid{ grid-template-columns:1fr 1fr !important; }
  /* Nav */
  .nav-links,.nav-links{ display:none; }
  nav{ position:relative; flex-wrap:wrap; }
}

/* ── MOBILE ── */
@media (max-width:768px){
  /* Global padding */
  .topbar,nav,.sec,.pain-section,.included-section,.how-section,
  .plans-section,.compare-section,.metrics-section,.testi-section,
  .faq-section,.advantage-section,.final-cta,.cta-section,
  .editions-section,.segment-section,.modules-section,.why-section,
  .capabilities-section,.roi-section,footer,
  .hero,.hero-inner,.pain-inner,.how-inner,.plans-inner,
  .compare-inner,.metrics-inner,.testi-inner,.roi-inner,
  .included-inner,.insight-section,.insight-inner,
  .approach-grid,.approach-section{
    padding-left:20px !important;
    padding-right:20px !important;
  }

  /* ── NAV ── */
  nav{ padding:0 20px !important; gap:0; }
  .topbar{ display:none; }
  .nav-links,.enc-nav-menu{ display:none !important; }
  .nav-cta,.nc,.enc-nav-cta{ display:none !important; }
  .nav-logo img,.logo-img{ height:36px !important; }

  /* Mobile hamburger button */
  .enc-mobile-toggle{
    display:flex !important;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:12px 0;
    margin-left:auto;
  }
  .enc-mobile-toggle span{
    display:block;
    width:22px;
    height:2px;
    background:rgba(255,255,255,.8);
    border-radius:2px;
    transition:all .25s;
  }
  .enc-mobile-menu{
    display:none;
    position:fixed;
    top:0; left:0; right:0; bottom:0;
    background:rgba(15,26,46,.98);
    z-index:9999;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    overflow-y:auto;
    padding:60px 32px;
  }
  .enc-mobile-menu.open{ display:flex !important; }
  .enc-mobile-menu a{
    color:#c8d3e8;
    font-size:20px;
    font-weight:500;
    text-decoration:none;
    padding:12px 0;
    display:block;
    text-align:center;
    width:100%;
    border-bottom:1px solid rgba(255,255,255,.06);
    font-family:'DM Sans',sans-serif;
  }
  .enc-mobile-menu a:hover{ color:#fff; }
  .enc-mobile-menu .mob-cta{
    margin-top:16px;
    background:#e03030;
    color:#fff !important;
    padding:14px 32px !important;
    border-radius:3px;
    font-weight:700 !important;
    font-size:16px !important;
    border:none;
    border-bottom:none !important;
  }
  .enc-mobile-close{
    position:absolute;
    top:20px; right:20px;
    background:none;
    border:none;
    color:rgba(255,255,255,.6);
    font-size:28px;
    cursor:pointer;
    line-height:1;
    padding:4px;
  }

  /* ── HERO ── */
  .hero{ padding-top:48px !important; padding-bottom:48px !important; }
  .hero-inner,.hi,.hero-top{
    grid-template-columns:1fr !important;
    gap:32px !important;
  }
  .hero h1{ font-size:34px !important; line-height:1.15 !important; }
  .hero-sub,.hsub{ font-size:14px !important; }
  .hero-btns,.hbtns{ flex-direction:column; }
  .hero-btns button,.hbtns button,.hero-btns a,.hbtns a{
    width:100%;
    text-align:center;
  }
  /* Hero stat strip */
  .hero-proof,.hproof{ flex-wrap:wrap; gap:20px !important; }
  .proof-stat{ min-width:calc(50% - 10px); }
  /* Hero journey cards — hide on mobile, show CTA instead */
  .hero-cards,.hcard{ display:none !important; }
  /* Hero apps mosaic */
  .apps-mosaic,.apps-grid,.odoo-apps-grid{ grid-template-columns:repeat(4,1fr) !important; }
  /* Platform pills */
  .plat-pills,.home-plat-pills,.hpills{ gap:6px !important; }
  .plat-pill,.home-plat-pill{ font-size:11px !important; padding:4px 10px !important; }
  /* Trust strip */
  .home-hero-trust{ flex-direction:column; align-items:flex-start; gap:10px !important; }
  .ht-logos,.home-trust-logos{ gap:14px !important; }

  /* ── SECTION TITLES ── */
  .section-title,.sec-title,.st,.enc-section-title{ font-size:26px !important; }
  .section-sub,.sec-sub,.ss,.enc-section-sub{ font-size:14px !important; }

  /* ── GRIDS → SINGLE COL ── */
  .hero-inner,.hi,
  .why-grid,.pgrid,
  .journeys-grid,.home-journeys-grid,
  .serve-grid,.home-serve-grid,.sgg,
  .seg-grid,.odoo-seg-grid,
  .testi-grid,.tgrid,.enc-testi-grid,
  .advantage-grid,.adv-grid,.advg,
  .ftr-top,.footer-top,
  .insight-inner,.home-insight-inner,
  .cap-panel.active,.cpanel.active,
  .ns-cap-panel.active,
  .adv-visual,.adv-vis,
  .apanel.active,.odoo-app-panel.active,
  .home-plat-panel.active,.pp-left+.pp-right,
  .home-plat-panel.active,
  .plat-panel.active,
  .pp-left,.pp-right{ grid-template-columns:1fr !important; }

  /* Pain + stat side by side */
  .pgrid,.pain-grid,.pitch-pain-grid{ grid-template-columns:1fr !important; }
  /* Stat block */
  .psb,.pain-stat-block{ position:relative !important; top:auto !important; }

  /* ── 2-col grids → 1-col ── */
  .adv-comparison .adv-row{ flex-direction:column; gap:4px; }
  .adv-comparison .adv-row-label{ min-width:auto; }

  /* ── MODULES ── */
  .modules-grid,.ns-modules-grid,.mod-grid{ grid-template-columns:repeat(2,1fr) !important; }

  /* ── METRICS ── */
  .met-grid,.metrics-grid,.roi-grid,.rgrid,.met-tile,.mgt{ grid-template-columns:repeat(2,1fr) !important; }
  .met-num,.rnum,.mgn{ font-size:36px !important; }

  /* ── HOW-IT-WORKS TIMELINE ── */
  .how-timeline,.htl,.process-grid,.prg,.approach-grid,.home-approach-grid{
    grid-template-columns:1fr 1fr !important;
    position:relative;
  }
  .how-timeline::before,.htl::before{ display:none !important; }
  .process-connector,.prc,.ap-connector{ display:none !important; }

  /* ── PLANS ── */
  .plans-grid,.pgrid2,.enc-plans-grid{
    grid-template-columns:1fr !important;
    max-width:100% !important;
  }
  .featured-ribbon,.feat-ribbon,.frib{ font-size:9px !important; padding:3px 10px !important; }

  /* ── COMPARISON TABLE ── */
  .compare-table,.ctable,.compare-section table{
    display:block;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    font-size:12px;
  }
  .compare-hdr,.chdr,.compare-header{ min-width:520px; }
  .compare-row,.crow{ min-width:520px; }

  /* ── TABS ── */
  .cap-tabs,.ns-cap-tabs,.odoo-cat-tabs,.plat-tabs,.home-plat-tabs,
  .svc-tabs,.home-svc-tabs,.act-tabs{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    flex-wrap:nowrap !important;
    gap:0 !important;
    scrollbar-width:none;
  }
  .cap-tabs::-webkit-scrollbar,.ns-cap-tabs::-webkit-scrollbar,
  .act-tabs::-webkit-scrollbar{ display:none; }
  .cap-tab,.ctab,.ns-cap-tab,.odoo-ctab,.ptab,.home-ptab,.stab,.home-stab{
    white-space:nowrap;
    font-size:12px !important;
    padding:10px 14px !important;
  }
  .svc-panel.active,.home-svc-panel.active{ grid-template-columns:repeat(2,1fr) !important; }

  /* ── BLOG GRID ── */
  .blog-grid,.home-blog-grid{ grid-template-columns:1fr !important; }

  /* ── EDITIONS ── */
  .ed-grid,.editions-grid,.odoo-editions-grid{ grid-template-columns:1fr !important; }

  /* ── FOOTER ── */
  .ftr-top,.footer-top{ grid-template-columns:1fr !important; gap:28px !important; }
  .ftr-bot,.footer-bottom{ flex-direction:column; gap:8px; text-align:center; }
  .ftr-bot a,.footer-bottom a{ margin-left:10px; }

  /* ── BUTTONS ── */
  .hero-btns,.hbtns,.cta-btns,.fcta-btns,.home-cta-btns,.final-cta-btns{
    flex-direction:column;
    align-items:stretch;
  }
  .hero-btns button,.hero-btns a,
  .hbtns button,.hbtns a,
  .cta-btns button,.fcta-btns button,
  .home-cta-btns button,.home-cta-btns a,
  .final-cta-btns button{
    width:100% !important;
    text-align:center !important;
  }

  /* ── FORMS (contact popup) ── */
  .ec-row,.enc-form-row,.ec-form-row{ grid-template-columns:1fr !important; }
  .ec-modal-box,.ec-modal,.enc-modal-box{
    max-height:95vh;
    border-radius:12px 12px 0 0;
    margin-bottom:0;
  }
  #encodle-overlay,#enc-modal-overlay{
    align-items:flex-end !important;
    padding:0 !important;
  }
  .erp-grid{ grid-template-columns:repeat(2,1fr) !important; }
  .svc-grid,.enc-svc-grid{ grid-template-columns:1fr !important; }
  .tl-grid,.timeline-row{ grid-template-columns:repeat(2,1fr) !important; }

  /* ── ODOO HERO MOSAIC ── */
  .hero-apps{ display:none !important; }

  /* ── FAQ ── */
  .faq-q,.pitch-faq-q,.enc-faq-q{ font-size:14px !important; }

  /* ── BREADCRUMB ── */
  .breadcrumb-strip,.bc{ display:none; }
}

/* ── SMALL PHONES ── */
@media (max-width:480px){
  .hero h1{ font-size:28px !important; }
  .section-title,.sec-title,.st{ font-size:22px !important; }
  .met-num,.rnum,.mgn,.met-num{ font-size:30px !important; }
  .modules-grid,.ns-modules-grid,.mod-grid{ grid-template-columns:1fr !important; }
  .svc-panel.active,.home-svc-panel.active{ grid-template-columns:1fr !important; }
  .how-timeline,.htl,.process-grid,.prg,.approach-grid{ grid-template-columns:1fr !important; }
  .erp-grid{ grid-template-columns:repeat(2,1fr) !important; }
  .odoo-editions-grid,.ed-grid{ grid-template-columns:1fr !important; }
  .hero-proof,.hproof{ flex-direction:column; gap:14px !important; }
  .odoo-cat-tabs .odoo-ctab,.act-tabs .act{ font-size:11px !important; padding:6px 10px !important; }
  nav { padding: 0 16px !important; }
  .nav-logo img,.logo-img { height:32px !important; }
  .final-cta h2,.home-cta-inner h2{ font-size:26px !important; }
}

/* ── MOBILE NAV TOGGLE BUTTON BASE (hidden on desktop) ── */
.enc-mobile-toggle{ display:none; }
