@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ═══ Global / Reset ═══ */
:root {
  --g9: #062518;
  --g7: #155237;
  --g6: #196b47;
  --g5: #1f8a5c;
  --g4: #28b574;
  --g3: #6dd4a4;
  --g2: #b2e8ce;
  --g0: #f0fbf5;
  --s5: #0896d8;
  --s4: #2cb4f0;
  --s3: #7ed0f5;
  --n9: #0d1f17;
  --n5: #546860;
  --n4: #7d9890;
  --n2: #d6e6e1;
  --wh: #ffffff;
  --lne: rgba(13,31,23,.08);
  --lne2: rgba(13,31,23,.13);
}


* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--wh);
  color: var(--n9);
  -webkit-font-smoothing: antialiased;
}

/* ═══ Section 1 – AI Infusion ═══ */
.ais {
  font-family: 'Inter', sans-serif;
  background: #f0faf5;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

.ais-hero {
  background: linear-gradient(160deg, #ffffff 0%, #f0fdf4 50%, #f0f9ff 100%);
  padding: 60px 40px 100px;
  position: relative;
  overflow: hidden;
}
.ais-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(27,170,94,.22) 0%, transparent 45%),
    radial-gradient(circle at 78% 30%, rgba(56,189,248,.18) 0%, transparent 40%),
    radial-gradient(circle at 60% 90%, rgba(27,170,94,.1) 0%, transparent 35%);
  pointer-events: none;
}
.ais-hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ais-hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.ais-hero-left { max-width: 580px; }

.ais-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(35, 191, 68, .35);
  background: rgba(35, 191, 68, .1);
  border-radius: 999px; padding: 6px 16px; margin-bottom: 22px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: #23bf44; text-transform: uppercase;
}
.ais-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #23bf44; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:.3;transform:scale(.8)} 50%{opacity:1;transform:scale(1)} }

.ais-hero-title {
  font-size: clamp(36px, 5vw, 58px); font-weight: 900;
  color: #28332ebe; line-height: 1.04; letter-spacing: -2px;
  margin-bottom: 18px;
}
.ais-hero-title em  { font-style: normal; color: #23bf44; }
.ais-hero-title span {
    font-style: italic;padding-right:5px; 
    background: linear-gradient(90deg, #196b47, #0896d8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    /*color: #0693e3;*/
}

.ais-hero-desc {
  font-size: 16px; color: var(--body); line-height: 1.7;
  max-width: 480px; margin-bottom: 36px;
}

.ais-hero-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.ais-hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
}
.ais-pill-green {
  text-decoration:none;
  background: #1baa5e; color: white;
}
.ais-pill-green:hover { background: #0f7a42; }
.ais-pill-ghost {
  text-decoration:none;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--body);
}

/* ── HERO CAROUSEL ────────────────── */
.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 880px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.hero-carousel:hover {
  transform: translateY(-5px);
}

.hero-carousel-slides {
  position: relative;
  height: 600px;
  width: 100%;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-modal-overlay.active .image-modal-content {
  transform: scale(1) translateY(0);
}

.image-modal-content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.hero-carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  object-fit: contain;
  display: block;
 
}




/* ── BROWSER FRAME ────────────────── */
.browser-frame {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.browser-header {
  height: 28px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.carousel-dot {
  width: 12px;
  height: 6px;
  border-radius: 99px;
  background: rgba(6, 147, 227, 0.12);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.carousel-dot.on {
  background: #0693e3;
  width: 36px;
}

.ais-features {
  padding: 72px 64px 80px;
  max-width: 100%; margin: 0 auto;
}

.ais-section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: #dcf5e9; border: 1px solid #96d4b4;
  border-radius: 999px; padding: 5px 14px; margin-bottom: 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2px;
  color: #1baa5e; text-transform: uppercase;
}
.ais-section-title {
  font-size: clamp(24px, 3vw, 34px); font-weight: 900;
  color: #0c1a12; letter-spacing: -1px; margin-bottom: 6px; line-height: 1.1;
}
.ais-section-title em { font-style: italic; background: linear-gradient(90deg, #196b47, #0896d8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;  padding-right: 3px; }
.ais-section-sub { font-size: 15px; color: #5a7a68; line-height: 1.65; max-width: 520px; }

.ais-grid {
  display: grid;
  grid-template-columns: repeat(6, calc((425px + 24px) / 2));
  grid-template-rows: 625px 625px;
  gap: 0;
  row-gap: 24px;
  margin-top: 48px;
  justify-content: center;
}

.ais-grid .fc:nth-child(1) { grid-column: 1 / span 2; grid-row: 1; margin-right: 12px; }
.ais-grid .fc:nth-child(2) { grid-column: 3 / span 2; grid-row: 1; margin-left: 12px; margin-right: 12px; }
.ais-grid .fc:nth-child(3) { grid-column: 5 / span 2; grid-row: 1; margin-left: 12px; }
.ais-grid .fc:nth-child(4) { grid-column: 2 / span 2; grid-row: 2; margin-left: 12px; margin-right: 12px; }
.ais-grid .fc:nth-child(5) { grid-column: 4 / span 2; grid-row: 2; margin-left: 12px; margin-right: 12px; }

.fc {
  background: #ffffff;
  border-radius: 22px;
  border: 1.5px solid #c8e8d8;
  padding: 28px 26px 22px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative; overflow: hidden;
  width: 425px;
  height: 625px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.fc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(27,170,94,.12);
  border-color: #1baa5e;
}

.fc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 22px 22px 0 0;
}
.fc.green::before { background: linear-gradient(90deg, #1baa5e, #22c55e); }
.fc.sky::before   { background: linear-gradient(90deg, #38bdf8, #0284c7); }
.fc.dark::before  { background: linear-gradient(90deg, #0c1a12, #1d3828); }

.fc.tall { grid-row: 1 / 3; }

.fc-ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px; flex-shrink: 0;
}
.fc-ico.g { background: linear-gradient(135deg, #dcf5e9, #b8ecd4); }
.fc-ico.s { background: linear-gradient(135deg, #daf0fe, #b3e0fb); }
.fc-ico.p { background: linear-gradient(135deg, #ede9fe, #d4c8fc); }
.fc-ico.d { background: linear-gradient(135deg, #f0f4f2, #dce8e2); }

.fc-title {
  font-size: 17px; font-weight: 800; color: #0c1a12;
  letter-spacing: -.4px; margin-bottom: 8px;
}
.fc-desc {
  font-size: 13px; color: #5a7a68; line-height: 1.65;
  margin-bottom: 14px;
}

.mock {
  background: #f4fbf7;
  border: 1.5px solid #c8e8d8;
  border-radius: 14px;
  padding: 16px;
}

.mm-hdr {
  display: flex; justify-content: space-between;
  font-size: 10px; font-weight: 700; color: #5a7a68;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px;
}
.mm-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.mm-box {
  flex: 1; background: white; border: 1.5px solid #d0e8da;
  border-radius: 8px; padding: 7px 11px;
  font-size: 12px; font-weight: 500; color: #0c1a12;
}
.mm-box.hit { border-color: #1baa5e; background: #f0fdf6; color: #1baa5e; font-weight: 700; }
.mm-box.miss { opacity: .38; border-style: dashed; color: #9ab5a8; font-style: italic; }
.mm-tag {
  font-size: 9.5px; font-weight: 800; padding: 2px 7px; border-radius: 5px;
  background: #1baa5e; color: white; letter-spacing: .3px; flex-shrink: 0;
}
.mm-arr {
  width: 24px; height: 2px; background: #1baa5e;
  position: relative; flex-shrink: 0;
}
.mm-arr::after {
  content: ''; position: absolute; right: -1px; top: -4px;
  border: 5px solid transparent; border-left-color: #1baa5e;
}
.mm-arr.grey { background: #c0d0c8; }
.mm-arr.grey::after { border-left-color: #c0d0c8; }
.mm-stats { display: flex; gap: 8px; margin-top: 12px; }
.mm-stat {
  flex: 1; text-align: center; background: white;
  border: 1.5px solid #d0e8da; border-radius: 10px; padding: 10px 6px;
}
.mm-stat .n { font-size: 20px; font-weight: 900; color: #1baa5e; display: block; line-height: 1; }
.mm-stat .n.red { color: #e24b4a; }
.mm-stat .l { font-size: 10px; color: #5a7a68; display: block; margin-top: 3px; font-weight: 500; }

.mf-prompt {
  background: linear-gradient(135deg, #dcf5e9, #d4f0fd);
  border: 1.5px solid #a4dfc0;
  border-radius: 10px; padding: 11px 13px;
  font-size: 12px; color: #0a3322; line-height: 1.55;
  margin-bottom: 13px; font-style: italic; font-weight: 500;
}
.mf-row { display: flex; gap: 10px; margin-bottom: 9px; align-items: center; }
.mf-lbl {
  width: 88px; font-size: 11px; font-weight: 700; color: #5a7a68;
  letter-spacing: .3px; flex-shrink: 0;
}
.mf-val {
  flex: 1; background: white; border: 1.5px solid #c8e8d8;
  border-radius: 8px; padding: 6px 11px;
  font-size: 12.5px; color: #0c1a12; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
}
.mf-val.empty { color: #9ab5a8; font-style: italic; font-size: 12px; font-weight: 400; }
.ai-tag {
  font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 5px;
  background: #0284c7; color: white; flex-shrink: 0; letter-spacing: .3px;
}

.mc-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 9px; margin-bottom: 8px;
}
.mc-row.err { background: #fff5f5; border: 1.5px solid #fcc; }
.mc-row.ok  { background: #f0fdf6; border: 1.5px solid #a4e0bc; }
.mc-before { flex: 1; color: #e24b4a; text-decoration: line-through; font-size: 12px; }
.mc-after  { flex: 1; color: #1baa5e; font-weight: 600; font-size: 12px; }
.mc-badge {
  font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 5px; flex-shrink: 0; letter-spacing: .3px;
}
.mc-badge.dup { background: #fde8e8; color: #a32d2d; }
.mc-badge.fmt { background: #daf0fe; color: #0284c7; }
.mc-badge.ok  { background: #dcf5e9; color: #0f7a42; }
.mc-summary { display: flex; gap: 8px; margin-top: 10px; }
.mc-sum { flex: 1; text-align: center; padding: 7px 4px; border-radius: 9px; font-size: 11px; font-weight: 700; }
.mc-sum.r { background: #fde8e8; color: #a32d2d; }
.mc-sum.b { background: #daf0fe; color: #0284c7; }
.mc-sum.g { background: #dcf5e9; color: #0f7a42; }

.ap-tabs {
  display: flex; gap: 4px; margin-bottom: 14px;
  background: #e4f3ec; border-radius: 9px; padding: 3px;
}
.ap-tab {
  flex: 1; text-align: center; padding: 6px;
  border-radius: 7px; font-size: 10.5px; font-weight: 700;
  color: #5a7a68; transition: all .15s;
}
.ap-tab.on { background: white; color: #0c1a12; box-shadow: 0 1px 4px rgba(0,0,0,.08); }

.ap-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: white; border: 1.5px solid #dceae4;
  border-radius: 12px; padding: 12px 13px; margin-bottom: 9px;
  transition: border-color .18s;
}
.ap-item:hover { border-color: #1baa5e; }
.ap-item:last-child { margin-bottom: 0; }

.ap-bar {
  width: 4px; border-radius: 3px; flex-shrink: 0; align-self: stretch; min-height: 40px;
}
.ap-bar.tr { background: #0284c7; }
.ap-bar.mn { background: #f59e0b; }
.ap-bar.wr { background: #7c3aed; }
.ap-bar.ow { background: #e24b4a; }

.ap-pill {
  font-size: 9px; font-weight: 800; padding: 2px 8px; border-radius: 5px;
  flex-shrink: 0; letter-spacing: .4px; text-transform: uppercase;
}
.ap-pill.tr { background: #daf0fe; color: #0284c7; }
.ap-pill.mn { background: #fef3dc; color: #854f0b; }
.ap-pill.wr { background: #ede9fe; color: #5b21b6; }
.ap-pill.ow { background: #fff0f0; color: #a32d2d; }

.ap-name { font-size: 12.5px; font-weight: 700; color: #0c1a12; }
.ap-code { font-size: 10.5px; color: #5a7a68; margin: 2px 0 3px; }
.ap-reason { font-size: 11px; color: #7a9a88; line-height: 1.4; }

.ap-status {
  font-size: 9.5px; font-weight: 700; padding: 3px 9px; border-radius: 6px; white-space: nowrap;
}
.ap-status.ap  { background: #dcf5e9; color: #0f7a42; }
.ap-status.esc { background: #faeeda; color: #633806; }
.ap-status.rev { background: #daf0fe; color: #0284c7; }

.ap-conf { display: flex; align-items: center; gap: 5px; margin-top: 5px; }
.ap-conf-pct { font-size: 10px; font-weight: 700; width: 28px; text-align: right; }
.ap-conf-pct.hi { color: #1baa5e; }
.ap-conf-pct.md { color: #f59e0b; }
.ap-conf-pct.lo { color: #e24b4a; }
.ap-conf-track { flex: 1; height: 5px; background: #e0ece6; border-radius: 3px; overflow: hidden; }
.ap-conf-fill { height: 100%; border-radius: 3px; animation: grow .7s ease both; }
@keyframes grow { from { width: 0; } }
.ap-conf-fill.hi { background: #1baa5e; }
.ap-conf-fill.md { background: #f59e0b; }
.ap-conf-fill.lo { background: #e24b4a; }

.ap-footer { display: flex; gap: 8px; margin-top: 12px; }
.ap-foot-pill { flex: 1; text-align: center; padding: 7px; border-radius: 9px; font-size: 10.5px; font-weight: 700; }
.ap-foot-pill.g { background: #dcf5e9; color: #0f7a42; }
.ap-foot-pill.a { background: #faeeda; color: #633806; }
.ap-foot-pill.b { background: #daf0fe; color: #0284c7; }

.ms-bar {
  display: flex; align-items: center; gap: 9px;
  background: white; border: 2px solid #1baa5e;
  border-radius: 10px; padding: 9px 14px; margin-bottom: 12px;
}
.ms-bar-icon { color: #1baa5e; font-size: 14px; }
.ms-bar-txt  { flex: 1; font-size: 12px; color: #0c1a12; font-style: italic; }
.ms-bar-tag  { font-size: 9px; font-weight: 800; background: #1baa5e; color: white; padding: 3px 8px; border-radius: 5px; }

.ms-item {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1.5px solid #d0e8da;
  border-radius: 10px; padding: 10px 12px; margin-bottom: 8px;
}
.ms-item:last-child { margin-bottom: 0; }
.ms-item-info { flex: 1; }
.ms-item-name { font-size: 12.5px; font-weight: 700; color: #0c1a12; }
.ms-item-sub  { font-size: 10.5px; color: #5a7a68; margin-top: 1px; }
.ms-score { font-size: 11px; font-weight: 800; color: #1baa5e; }

.mi-bars {
  display: flex; align-items: flex-end; gap: 6px; height: 52px; margin-bottom: 12px;
}
.mi-bar-col { flex: 1; border-radius: 5px 5px 0 0; background: #c0e0ce; }
.mi-bar-col.hi  { background: #1baa5e; }
.mi-bar-col.red { background: #e24b4a; }

.mi-alert {
  display: flex; align-items: flex-start; gap: 9px;
  border-radius: 10px; padding: 9px 11px; margin-bottom: 8px;
  font-size: 11.5px; line-height: 1.5;
}
.mi-alert:last-child { margin-bottom: 0; }
.mi-alert.warn { background: #fff5f5; border: 1.5px solid #fcc; color: #0c1a12; }
.mi-alert.good { background: #f0fdf6; border: 1.5px solid #a4e0bc; color: #0c1a12; }
.mi-alert-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.mi-alert strong.r { color: #e24b4a; }
.mi-alert strong.g { color: #1baa5e; }

.fc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px;
  flex-shrink: 0;
}
.fc-tag {
  font-size: 10.5px; font-weight: 700; padding: 4px 12px; border-radius: 7px; letter-spacing: .3px;
}
.fc-tag.g { background: #dcf5e9; color: #0f7a42; }
.fc-tag.s { background: #daf0fe; color: #0284c7; }
.fc-tag.p { background: #ede9fe; color: #3c3489; }
.fc-powered {
  font-size: 10.5px; font-weight: 600; color: #5a7a68;
  display: flex; align-items: center; gap: 5px;
}
.fc-powered::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: #1baa5e; display: inline-block;
  animation: pulse 1.8s infinite;
}

.ais-cta {
  background: linear-gradient(135deg, #0a3322 0%, #0d2b1a 50%, #062840 100%);
  padding: 56px 64px;
  position: relative; overflow: hidden;
}
.ais-cta::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(27,170,94,.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(56,189,248,.15) 0%, transparent 40%);
}
.ais-cta-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.ais-cta-text h3 {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 900;
  color: white; letter-spacing: -.5px; margin-bottom: 6px;
}
.ais-cta-text p { font-size: 14px; color: rgba(255,255,255,.5); max-width: 480px; line-height: 1.6; }
.ais-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cta-wht {
  padding: 13px 28px; border-radius: 10px; font-size: 14px; font-weight: 700;
  background: white; color: #0c1a12; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all .18s;text-decoration:none;
}
.cta-wht:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.cta-ghost {
  padding: 13px 28px; border-radius: 10px; font-size: 14px; font-weight: 600;
  background: rgba(255,255,255,.08); color: white;
  border: 1.5px solid rgba(255,255,255,.22); cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all .18s;text-decoration:none;
}
.cta-ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.14); }


/*14 may*/
/*img {*/
/*  max-width: 100%;*/
/*  height: auto;*/
/*}*/
@media(max-width:960px) {
  .ais-grid { grid-template-columns: 1fr 1fr; }
  .fc.tall  { grid-row: auto; }
  /*.ais-hero-inner { flex-direction: column; }*/
  .ais-hero-stats { flex-direction: row; flex-wrap: wrap; }
  
  
  
  /* 14 may */
    .ais-hero {
    padding: 40px 20px 60px;
  }

  .ais-hero-inner {
    display: grid;
    grid-template-columns: 1fr;   /* ONE COLUMN */
    gap: 40px;
    text-align: center;
  }

  .ais-hero-left {
    max-width: 100%;
    margin: 0 auto;
  }

  .ais-hero-desc {
    max-width: 100%;
    margin: 0 auto 28px;
  }

  .ais-hero-pills {
    justify-content: center;
  }

  .hero-carousel {
    max-width: 100%;
  }

  .hero-carousel-slides {
    height: auto;
    min-height: 300px;
  }

  .hero-carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
@media (max-width: 600px) {

  .ais-hero-title {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .hero-carousel-slides {
    min-height: 220px;
  }

}
@media(max-width:600px) {
  .ais-grid { grid-template-columns: 1fr; }
  .ais-hero, .ais-features, .ais-cta { padding-left: 24px; padding-right: 24px; }
}

/* ═══ Section 2 – Auto Onboard ═══ */
.ao-section {
  width: 100%;
  height: 400px;
  background: var(--wh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--lne2);
  border-bottom: 1px solid var(--lne2);
}

.ao-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  /*background:*/
  /*  radial-gradient(ellipse 60% 80% at 90% 50%, rgba(8,150,216,.06) 0%, transparent 65%),*/
  /*  radial-gradient(ellipse 50% 70% at 10% 50%, rgba(25,107,71,.07) 0%, transparent 65%),*/
  /*  repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(13,31,23,.025) 56px, rgba(13,31,23,.025) 57px),*/
  /*  repeating-linear-gradient(0deg,  transparent, transparent 56px, rgba(13,31,23,.025) 56px, rgba(13,31,23,.025) 57px);*/
}

.ao-eyebrow {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 12px; position: relative; z-index: 2;
}
.ao-dash {
  width: 24px; height: 1.5px;
  background: linear-gradient(90deg, var(--g6), var(--s5));
}
.ao-eye {
  font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ao-hed {
  font-size: clamp(20px, 2.6vw, 28px); font-weight: 900;
  letter-spacing: -.05em; color: var(--n9);
  margin-bottom: 5px; position: relative; z-index: 2; text-align: center;
  line-height: 1.05;
}
.ao-hed em {
  padding-right: 3px;
  font-style: italic; font-weight: 900;
  background: linear-gradient(110deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ao-sub {
  font-size: 10px; font-weight: 200; color: var(--n4);
  margin-bottom: 36px; position: relative; z-index: 2; text-align: center;
  letter-spacing: -.01em;
}

.pipeline {
  display: flex; align-items: center;
  gap: 0; position: relative; z-index: 2;
  width: 100%; max-width: 860px; padding: 0 40px;
}

.conn { flex: 1; height: 2px; position: relative; }
.conn-track {
  width: 100%; height: 2px;
  background: rgba(13,31,23,.1); border-radius: 2px;
  position: relative; overflow: hidden;
}
.conn-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--g6), var(--s5));
  border-radius: 2px;
  transition: width .7s cubic-bezier(.4,0,.2,1);
}

.step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; flex-shrink: 0;
}

.step-icon {
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  transition: transform .25s, box-shadow .25s;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--wh), var(--wh)) padding-box,
    linear-gradient(135deg, rgba(13,31,23,.12), rgba(13,31,23,.06)) border-box;
}
.step-icon svg, .step-icon img { transition: transform .25s; }
.step:hover .step-icon { transform: translateY(-4px); }

.step.done .step-icon {
  background:
    linear-gradient(var(--wh), var(--wh)) padding-box,
    linear-gradient(135deg, var(--g6), var(--s5)) border-box;
  box-shadow: 0 0 0 4px rgba(25,107,71,.45);
}

.step.active .step-icon {
  background:
    linear-gradient(var(--wh), var(--wh)) padding-box,
    linear-gradient(135deg, var(--g6), var(--s5)) border-box;
  border: 2px solid transparent;
  animation: stepGlow 2s ease-in-out infinite;
}

@keyframes stepGlow {
  0%,100% { box-shadow: 0 0 0 4px rgba(25,107,71,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(25,107,71,.6); }
}

.step-check {
  position: absolute; bottom: -2px; right: -2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g6), var(--s5));
  border: 2px solid var(--wh);
  display: none; align-items: center; justify-content: center;
}
.step.done .step-check { display: flex; }

.step-pulse {
  display: none;
  position: absolute; top: -6px; right: -6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g4), var(--s4));
  animation: stepPing 1.4s ease-in-out infinite;
}
.step.active .step-pulse { display: block; }

@keyframes stepPing {
  0%       { transform: scale(1); opacity: 1; }
  70%,100% { transform: scale(2); opacity: 0; }
}

.step-num {
  font-size: 13px; font-weight: 900; letter-spacing: -.02em;
  color: rgba(13,31,23,.22); transition: color .25s;
  line-height: 1;
}
.step.done .step-num,
.step.active .step-num {
  background: linear-gradient(90deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-label {
  font-size: 12px; font-weight: 800; color: var(--n5);
  text-align: center; max-width: 84px; line-height: 1.25;
  transition: color .25s; letter-spacing: -.02em;
}
.step.done .step-label,
.step.active .step-label { color: var(--n9); }

.step-tag {
  font-size: 9px; font-weight: 700; color: rgba(13,31,23,.28);
  letter-spacing: .08em; text-align: center; text-transform: uppercase;
}
.step.active .step-tag,
.step.final .step-tag {
  background: linear-gradient(90deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ao-status {
  font-size: 11px; font-weight: 700; color: var(--n4);
  margin-top: 4px; position: relative; z-index: 2;
  height: 16px; text-align: center;
  transition: opacity .3s; letter-spacing: -.01em;
}

.ao-controls {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px; position: relative; z-index: 2;
}
.ao-btn {
  padding: 8px 22px; border-radius: 20px;
  font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 800;
  cursor: pointer; transition: all .18s; letter-spacing: -.01em; border: 1.5px solid;
}
.ao-btn.primary {
  background: linear-gradient(135deg, var(--g6), var(--s5));
  border-color: transparent; color: var(--wh);
}
.ao-btn.primary:hover { opacity: .88; transform: translateY(-1px); }
.ao-btn.ghost {
  background: transparent; border-color: var(--lne2); color: var(--n5);
}
.ao-btn.ghost:hover { border-color: var(--g6); color: var(--g6); }

.ao-zoom-wrapper {
  transform: scale(1.5);
  transform-origin: top center;
  width: 100%;
}
.ao-zoom-outer {
  width: 100%;
  overflow: hidden;
  height: calc(400px * 1.5);
}

@media (max-width: 700px) {
  .ao-section { height: auto; padding: 40px 20px; }
  .pipeline   { padding: 0 16px; max-width: 100%; }
  .step-icon  { width: 56px; height: 56px; }
  .step-label { font-size: 10px; max-width: 60px; }
  .step-tag   { display: none; }
  .step-num   { display: none; }
  .conn-track { height: 1.5px; }
}

/* ═══ Section 3 – Mind Map ═══ */
.wrap {
  width: 100%;
  background: #f2f7f4;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  padding: 56px 32px 48px;
}
.wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #b4d4c2 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  opacity: 0.4;
}
.blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.blob-1 { width: 420px; height: 420px; background: #a8edca; top: -120px; left: -80px; opacity: 0.28; }
.blob-2 { width: 320px; height: 320px; background: #b2dff5; bottom: -80px; right: -60px; opacity: 0.25; }

.inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }

/*.eyebrow { display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }*/
/*.eyebrow-tag {*/
/*  background: #e2f5eb; border: 1px solid #9ed4b8; border-radius: 999px;*/
/*  padding: 5px 16px; font-size: 11px; font-weight: 600;*/
/*  letter-spacing: 2px; color: #1a8a50; text-transform: uppercase;*/
/*}*/

 .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 0px; space between line & text */
  margin-bottom: 14px;
}

.line {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--g6), var(--s5));
  flex-shrink: 0;
}

.eyebrow-tag {
  padding: 5px 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  /* gradient text (optional nice effect) */
  background: linear-gradient(90deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading { text-align: center; margin-bottom: 8px; }
.heading h2 {
  font-size: clamp(26px, 4vw, 40px); font-weight: 800;
  color: #0f1c14; line-height: 1.12; letter-spacing: -1px;
}
.heading h2 em { font-style: italic;   background: linear-gradient(110deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; }
.sub {
  text-align: center; font-size: 14px; color: #7a9986;
  font-weight: 400; margin-bottom: 40px; line-height: 1.6;
}

.map-wrap { width: 100%; }
.map-wrap svg { width: 100%; height: auto; display: block; overflow: visible; }

.sat { cursor: pointer; outline: none; }
.sat:hover .ncard,
.sat:focus .ncard {
  transform: translateY(-8px) scale(1.02);
  filter: none;
}
.ncard {
  transition: transform 0.24s ease, filter 0.24s ease;
  transform-origin: center;
}
.nlogo { pointer-events: none; }
.card-face { fill: url(#cardshine); }
.card-shadow { fill: rgba(15, 28, 20, 0.08); }
.card-edge { fill: rgba(255,255,255,0.82); }

@keyframes drawray { to { stroke-dashoffset: 0; } }
.ray {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawray 1s cubic-bezier(0.4,0,0.2,1) forwards;
  fill: none;
}

@keyframes cpulse { 0%,100%{opacity:.10} 50%{opacity:.22} }
.cring  { animation: cpulse 3s ease-in-out infinite; }
.cring2 { animation: cpulse 3s ease-in-out infinite 1.2s; }

@keyframes dblink { 0%,100%{opacity:.35} 50%{opacity:1} }
.dblink { animation: dblink 2.2s ease-in-out infinite; }

.stats {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; margin-top: 32px; border-top: 1px solid #d0e8da; padding-top: 24px;
}
.stat {
  display: flex; align-items: center; gap: 9px; padding: 0 24px;
  border-right: 1px solid #d0e8da; font-size: 12.5px; color: #6a8870;
}
.stat:last-child { border-right: none; }
.stat strong { font-weight: 700; font-size: 14px; color: #0f1c14; }
.sdot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

.sap-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 20, 15, 0.45);
  backdrop-filter: blur(8px);
  z-index: 9999;
}
.sap-modal.open { display: flex; }
.sap-dialog {
  width: min(460px, 100%);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
  border: 1px solid rgba(26, 138, 80, 0.12);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(9, 20, 15, 0.22);
  padding: 26px 26px 22px;
  position: relative;
}
.sap-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #e9f5ee;
  color: #236e48;
  font-size: 18px;
  cursor: pointer;
}
.sap-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e9f5ee;
  color: #1a8a50;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 14px;
}
.sap-dialog h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f1c14;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.sap-dialog p {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.7;
  color: #547369;
}

@media (max-width: 860px) {
  .wrap { padding: 44px 16px 38px; }
  .sub { margin-bottom: 26px; }
  .stats { gap: 12px; }
  .stat { border-right: none; padding: 0 8px; }
}


/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band {
  /* margin:0 48px 72px; */
  background: linear-gradient(130deg, #0d3d28 0%, var(--g6) 50%, #0272b0 100%);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-band::before {
  content: "What's New";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 160px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, .05);
  letter-spacing: -.06em;
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -120px;
  right: 180px;
}

.cta-text h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.cta-text h2 em {
  font-style: italic
}

.cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 400px
}

.cta-acts {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.cbtn-w {
  padding: 12px 24px;
  border-radius: 9px;
  background: #fff;
  color: #0d3d28;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .16s;
  text-decoration:none;
}

.cbtn-w:hover {
  opacity: .92;
  transform: translateY(-2px)
}

.cbtn-g {
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: all .14s;
  font-family: 'Inter', sans-serif;text-decoration:none;
}

.cbtn-g:hover {
  background: rgba(255, 255, 255, .17);
  color: #fff
}
@media (max-width: 768px) {
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    margin: 0 16px 40px;
    border-radius: 20px;
  }
  .cta-band::before {
    font-size: 80px;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
  }
  .cta-band::after {
    display: none;
  }
  .cta-acts {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .cbtn-w, .cbtn-g {
    width: 100%;
  }
  .fc {
    width: 100%;
    height: auto;
    min-height: 400px;
  }
  .map-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .map-wrap svg {
    min-width: 800px;
  }
}

@media (max-width: 960px) {
  .ais-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
  }
  .ais-grid .fc:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    width: 100%;
    height: auto;
  }
  .pipeline-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
  }
  .pipeline {
    min-width: 600px;
  }
}


@media (max-width: 960px) {
  .ao-zoom-wrapper { transform: scale(1); }
  .ao-zoom-outer { height: 400px; }
  .map-wrap svg { min-width: 0 !important; width: 100%; height: auto; }
  .map-wrap { overflow-x: hidden !important; }
  .pipeline-wrapper { overflow-x: hidden !important; }
}

@media (max-width: 768px) {
  .ao-zoom-wrapper { transform: scale(0.85); }
  .ao-zoom-outer { height: calc(400px * 0.85); }
}

@media (max-width: 500px) {
  .ao-zoom-wrapper { transform: scale(0.65); transform-origin: top center; }
  .ao-zoom-outer { height: calc(400px * 0.65); }
  .map-wrap svg { min-width: 115% !important; margin-left: -7.5%; }
}


@media (max-width: 768px) {
  .ao-zoom-wrapper {
    transform: none !important;
  }
  .ao-zoom-outer {
    height: auto !important;
  }
  .ao-section {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 40px 16px;
  }
  .ao-eyebrow { order: 1; }
  .ao-hed { order: 2; }
  .ao-sub { order: 3; }
  
  .ao-controls { 
    order: 4; 
    margin-top: 10px; 
    margin-bottom: 30px; 
  }
  
  .pipeline {
    order: 5;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-width: auto;
    padding: 0;
  }
  
  .step {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--lne2);
    border-radius: 12px;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  }
  
  .step-icon {
    width: 56px;
    height: 56px;
  }
  
  .step-label {
    max-width: none;
    font-size: 14px;
    text-align: left;
  }
  
  .step-tag {
    display: block;
    text-align: left;
  }
  
  .conn {
    display: none;
  }
  
  .ao-status {
    order: 6;
    margin-top: 20px;
  }
}


/*@media (max-width: 960px) {*/
/*  .map-wrap svg { min-width: 130% !important; margin-left: -15%; }*/
/*}*/
/*@media (max-width: 600px) {*/
/*  .map-wrap svg { min-width: 150% !important; margin-left: -25%; }*/
/*}*/
/*@media (max-width: 400px) {*/
/*  .map-wrap svg { min-width: 180% !important; margin-left: -40%; }*/
/*}*/

/* =========================================
   MOBILE SVG FIX
========================================= */

.map-wrap {
  width: 100%;
  overflow-x: hidden;
}

.map-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

/* TABLET */
@media (max-width: 768px) {

  .wrap {
    padding: 40px 16px;
  }

  .heading h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .sub {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .map-wrap svg {
    width: 115%;
    margin-left: -7.5%;
  }

}

/* SMALL MOBILE */
@media (max-width: 600px) {

  .wrap {
    padding: 32px 12px;
  }

  .heading h2 {
    font-size: 24px;
  }

  .sub {
    font-size: 12px;
    line-height: 1.5;
  }

  .map-wrap svg {
    width: 135%;
    margin-left: -17.5%;
  }

}

/* VERY SMALL DEVICES */
@media (max-width: 342px) {

  .wrap {
    padding: 24px 8px;
  }

  .heading h2 {
    font-size: 19px;
    line-height: 1.3;
  }

  .sub {
    font-size: 10px;
    line-height: 1.5;
  }

  .map-wrap svg {
    width: 165%;
    margin-left: -32.5%;
  }

}
/* VERY SMALL MOBILE */
/*@media (max-width: 380px) {*/

/*  .map-wrap svg {*/
/*    width: 155%;*/
/*    margin-left: -27.5%;*/
/*  }*/

/*}*/
/* EXTRA SMALL PHONES */
/*@media (max-width: 344px) {*/
/* .map-wrap svg {*/
/*    width: 150%;*/
    /*margin-left: -.5%;*/
/*  }*/
/*}*/

/* ================================
   IMAGE LIGHTBOX / FULLSCREEN
================================ */

.image-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.image-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.image-modal-content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content img {
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 14px;
}


/* CLOSE BUTTON */

.image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;

  width: 42px;
  height: 42px;

  border:1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;

  background:black;
  color: white;

  font-size: 28px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* HOVER EFFECT */

.image-modal-close:hover {
  background: #ff5f57;
  color: white;

  transform: rotate(90deg) scale(1.08);

  box-shadow:
    0 8px 20px rgba(255, 59, 48, 0.35);
}

 MOBILE FIX 
.hero-carousel img {
  touch-action: manipulation;
  -webkit-user-drag: none;
  user-select: none;
}

 MOBILE RESPONSIVE 
@media (max-width: 768px) {

  .image-modal-overlay {
    padding: 14px;
  }

  .image-modal-content img {
    max-height: 80vh;
    border-radius: 10px;
  }

  .image-modal-close {
    top: -42px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

}
/* MOBILE IMAGE FIX */

.hero-carousel-slide img {
  cursor: zoom-in;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}


/* MOBILE FULLSCREEN FIX */

@media (max-width: 768px) {

  .image-modal-overlay {
    padding: 10px;
  }

  .image-modal-content {
    width: 100%;
    height: 100%;
  }

  .image-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
  }
  .image-modal-close {

    top: 27%;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

}

/* =========================================
   MOBILE FIX —  CTA 
========================================= */

@media (max-width: 768px) {


  /* CTA SECTION */
  .ais-cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ais-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .ais-cta-text h3 {
    font-size: 26px;
    line-height: 1.2;
  }

  .ais-cta-text p {
    max-width: 100%;
    font-size: 14px;
  }

  .ais-cta-btns {
    width: 100%;
    flex-direction: column;
  }

  .cta-wht,
  .cta-ghost {
    width: 100%;
    text-align: center;
  }
}



/* =========================================================================
   WHAT'S NEW PAGE — IPAD PRO TOP NAV
   IDENTICAL TO ASSET SCORE NAVIGATION
   ========================================================================= */

@media only screen 
and (min-width: 820px) 
and (max-width: 1180px) {

  /* ─── NAVBAR (matches Asset Score) ────────────────────────── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px !important;
    overflow: visible !important;
    background: #ffffff !important;
    border-bottom: 1px solid #eef2f7 !important;
    position: relative !important;
  }

  /* LOGO — max-height 30px, auto width (no fixed width) */
  .nav-logo img,
  .nav-logo-mark img {
    max-height: 30px !important;
    width: auto !important;
  }

  /* NAV LINKS CONTAINER */
  .nav-links {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0px;
    flex: 0 1 auto !important;    /* prevents pushing login too far */
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible !important;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  /* INDIVIDUAL NAV LINKS */
  .nav-links a {
    white-space: nowrap;
    font-size: 10px !important;
    padding: 5px 6px !important;
    flex-shrink: 0;
  }

  /* RIGHT BUTTON AREA (Login / Demo) */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 12px !important;  /* controls gap between last link and login */
  }

  /* LOGIN BUTTON (matches Asset Score .nbtn) */
  .nav-actions a,
  .nav-actions button,
  .btn-ghost-sm {
    font-size: 10px !important;
    padding: 7px 10px !important;
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
  }

  /* DROPDOWN FIX – ensure they stay on top */
  .dropdown,
  .dropdown-menu,
  .submenu {
    z-index: 99999 !important;
  }

  .dropdown-menu,
  .submenu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    padding: 8px 0;
    min-width: 220px;
  }

  /* Ensure no top gap above nav */
  html,
  body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body > *:first-child {
    margin-top: 0 !important;
  }

  /* ========== REMAINING WHAT'S NEW LAYOUT (unchanged) ========== */
  /* HERO */
  .ais-hero {
    padding: 60px 32px 80px;
  }

  .ais-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .ais-hero-left {
    max-width: 100%;
    margin: auto;
  }

  .ais-hero-desc {
    max-width: 800px;
    margin: 0 auto 30px;
  }

  .ais-hero-pills {
    justify-content: center;
  }

  /* HERO CAROUSEL */
  .hero-carousel {
    max-width: 100%;
  }

  .hero-carousel-slides {
    height: auto;
    min-height: 500px;
  }

  .hero-carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* FEATURES SECTION */
  .ais-features {
    padding: 60px 32px;
  }

  .ais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .ais-grid .fc:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .fc {
    width: 100%;
    height: auto;
    min-height: unset;
  }

  /* AUTO ONBOARD */
  .ao-section {
    height: auto;
    padding: 60px 24px;
  }

  .ao-zoom-wrapper {
    transform: none;
  }

  .ao-zoom-outer {
    height: auto;
  }

  .pipeline {
    max-width: 100%;
    padding: 0;
  }

  /* SVG MAP */
  .wrap {
    padding: 50px 24px;
  }

  .map-wrap {
    overflow-x: auto;
  }

  .map-wrap svg {
    width: 100%;
    min-width: 900px;
    height: auto;
  }

  /* CTA */
  .cta-band {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 50px 32px;
  }

  .cta-acts {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cbtn-w,
  .cbtn-g {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* AIS CTA */
  .ais-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .ais-cta-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
}
body {
     padding-top: 0px; 
}
}