/* ---------- Premium Typography ---------- */
#io-main {
  font-family: var(--ff-body, 'Plus Jakarta Sans', sans-serif);
}
#io-main h1, #io-main h2, #io-main h3, #io-main h4, .io-text-gradient {
  font-family: var(--ff-display, 'Plus Jakarta Sans', sans-serif) !important;
}
#io-main p, #io-main li, #io-main span, #io-main a, #io-main div {
  font-family: var(--ff-body, 'Plus Jakarta Sans', sans-serif);
}

/* ============================================================================
   IncepOne Software Page — Premium Redesign
   Brand: Navy #004D88 · Teal #009C8D
   Typography: Plus Jakarta Sans
   Features: Glassmorphism, Bento Grid, Timeline Infographic
   ============================================================================ */

#io-main {
  --navy: #004D88;
  --navy-dark: #1c2f35;
  --navy-tint: #f0f3f9;
  --teal: #009C8D;
  --teal-light: #00BBA8;
  --teal-tint: #e4f2f6;
  --amber: #f5a623;
  --gradient: linear-gradient(120deg, #004D88 0%, #007E92 50%, #009C8D 100%);
  --gradient-soft: linear-gradient(135deg, rgba(0,78,138,.08) 0%, rgba(0,151,157,.08) 100%);
  --ink: #1d3131;
  --body-text: #4b5563;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.05);
  --shadow-md: 0 12px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.14);
  --radius: 24px;
  --radius-sm: 12px;

  background: var(--white);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  overflow-x: hidden;
}

#io-main h1, #io-main h2, #io-main h3, #io-main h4, #io-main p, #io-main span, #io-main a {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.io-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.io-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gradient);
  color: var(--white) !important;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,151,157, 0.25);
  font-size: 15px;
}
.io-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,151,157, 0.4);
}
.io-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--white);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--border, #eaeaea);
  transition: all 0.3s ease;
  font-size: 15px;
}
.io-btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
  background: var(--teal-tint);
}

/* ---------- 1. Hero Section (Glassmorphism) ---------- */
.io-hero {
  position: relative;
  padding: 160px 0 120px;
  background: var(--navy-tint);
  overflow: hidden;
  text-align: center;
}
.io-hero::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 600px; height: 600px;
  background: var(--teal);
  filter: blur(140px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}
.io-hero::after {
  content: "";
  position: absolute;
  bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  background: var(--navy);
  filter: blur(140px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}
.io-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.io-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,151,157, 0.1);
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.io-hero h1 {
  font-size: 56px;
  line-height: 1.15;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.io-hero p {
  font-size: 20px;
  color: var(--body-text);
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}
.io-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Hero Glass Dashboard mockup */
.io-dashboard-mockup {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 40px 80px rgba(0,78,138, 0.1);
  padding: 16px;
  transform: perspective(1000px) rotateX(4deg);
  transition: transform 0.5s ease;
}
.io-dashboard-mockup:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}
.io-dashboard-mockup img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: var(--shadow-sm);
}

/* ---------- 2. Bento Grid Section ---------- */
.io-bento-section {
  padding: 120px 0;
  background: var(--white);
}
.io-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.io-section-head h2 {
  font-size: 40px;
  color: var(--navy);
  font-weight: 800;
  margin-top: 16px;
  line-height: 1.2;
}

.io-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 24px;
}
.io-bento-card {
  background: var(--navy-tint);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.io-bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,151,157,0.2);
  background: var(--white);
}
.io-bento-large {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--gradient-soft);
}
.io-bento-vertical {
  grid-row: span 2;
}

.io-bento-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.io-bento-large .io-bento-icon {
  background: var(--teal);
  color: var(--navy);
}
.io-bento-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.io-bento-card p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
}

/* ---------- 3. Rapid Infographic Timeline ---------- */
.io-timeline-section {
  padding: 120px 0;
  background: var(--white);
  color: var(--navy);
}
.io-timeline-section .io-section-head h2 {
  color: var(--navy);
}
.io-timeline-section .io-eyebrow {
  background: rgba(255,255,255,0.1);
  color: var(--teal);
}

.io-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}
.io-timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.1);
  transform: translateX(-50%);
}
.io-timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.io-timeline-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
.io-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.io-timeline-content {
  width: 45%;
  background: var(--white); box-shadow: var(--shadow-sm);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}
.io-timeline-content h3 {
  color: var(--teal);
  font-size: 22px;
  margin-bottom: 12px;
}
.io-timeline-content p {
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.6;
}
.io-timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 3px solid var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--teal);
  font-size: 20px;
  box-shadow: 0 0 0 8px rgba(0, 187, 168, 0.1);
}

/* ---------- 4. Outcomes Cards ---------- */
.io-outcomes-section {
  padding: 120px 0;
  background: var(--teal-tint);
}
.io-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.io-outcome-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s ease;
}
.io-outcome-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.io-outcome-card .val {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
}
.io-outcome-card .lbl {
  font-size: 15px;
  color: var(--body-text);
  font-weight: 600;
}

/* ---------- Media Queries ---------- */
@media (max-width: 991px) {
  .io-bento-grid, .io-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .io-timeline::before {
    left: 24px;
  }
  .io-timeline-item, .io-timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-end;
  }
  .io-timeline-content {
    width: calc(100% - 70px);
  }
  .io-timeline-marker {
    left: 24px;
  }
  .io-hero h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .io-bento-grid, .io-cards-grid {
    grid-template-columns: 1fr;
  }
  .io-bento-large, .io-bento-vertical {
    grid-column: span 1;
    grid-row: auto;
  }
}
.io-text-gradient { background: linear-gradient(100deg, #004D88, #009C8D 65%, #12C7A9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent !important; display: inline-block; }




