/* =============================================================
   CloudERP Plus — Modern Homepage
   Every class below is prefixed cep-home- and used nowhere else
   on the site, so nothing here can collide with or be overridden
   by the legacy global stylesheets (style.css, general.css, etc).
   ============================================================= */

.cep-home-root {
  --cep-navy: #1f3a5f;
  --cep-navy-deep: #142942;
  --cep-blue: #2c5282;
  --cep-blue-bright: #2b6cb0;
  --cep-gold: #e8a317;
  --cep-gold-soft: #f5c65a;
  --cep-border: #c8d3e0;
  --cep-bg: #f6f8fb;
  --cep-ink: #16233a;
  --cep-ink-soft: #52627e;
  --cep-white: #ffffff;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--cep-ink);
  background: var(--cep-bg);
  display: block;
  width: 100%;
}

.cep-home-root, .cep-home-root * { box-sizing: border-box; }

.cep-home-root h1, .cep-home-root h2, .cep-home-root h3, .cep-home-root h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--cep-navy);
  margin: 0;
  font-weight: 600;
}
.cep-home-root p { margin: 0; }
.cep-home-root ul { list-style: none; margin: 0; padding: 0; }
.cep-home-root img { max-width: 100%; display: block; }
.cep-home-root a { text-decoration: none; cursor: pointer; }

.cep-home-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Hero / carousel ---------- */
.cep-home-hero { position: relative; overflow: hidden; }
.cep-home-hero .item {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.cep-home-hero .item img.first-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.cep-home-hero .item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,41,66,.94) 0%, rgba(31,58,95,.82) 38%, rgba(31,58,95,.35) 68%, rgba(31,58,95,.15) 100%);
}
.cep-home-hero-slide-content { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.cep-home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cep-gold);
  margin-bottom: 14px;
}
.cep-home-hero-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--cep-gold); display: inline-block; }
.cep-home-hero-title {
  font-size: 46px;
  font-weight: 700;
  color: var(--cep-white);
  line-height: 1.12;
  letter-spacing: -.01em;
  max-width: 620px;
}
.cep-home-hero-desc {
  color: #c7d5e8;
  font-size: 18px;
  font-weight: 400;
  margin-top: 18px;
  line-height: 1.6;
  max-width: 560px;
}
.cep-home-hero-cta-wrap { margin-top: 32px; }
.cep-home-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cep-gold);
  color: var(--cep-navy-deep);
  padding: 15px 32px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  transition: background .18s ease, transform .18s ease;
}
.cep-home-hero-cta:hover { background: var(--cep-gold-soft); transform: translateY(-1px); }

.cep-home-hero-in { opacity: 0; transform: translateY(16px); animation: cepHomeFadeUp .7s ease forwards; }
.cep-home-hero-in-1 { animation-delay: .05s; }
.cep-home-hero-in-2 { animation-delay: .15s; }
.cep-home-hero-in-3 { animation-delay: .28s; }
.cep-home-hero-in-4 { animation-delay: .4s; }
@keyframes cepHomeFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.cep-home-reveal { opacity: 0; animation: cepHomeReveal .8s ease forwards; }
@keyframes cepHomeReveal { to { opacity: 1; } }
.cep-home-pricing-grid .cep-home-reveal:nth-child(2) { animation-delay: .08s; }
.cep-home-pricing-grid .cep-home-reveal:nth-child(3) { animation-delay: .16s; }
.cep-home-pricing-grid .cep-home-reveal:nth-child(4) { animation-delay: .24s; }
.cep-home-features-grid .cep-home-reveal:nth-child(2) { animation-delay: .08s; }
.cep-home-features-grid .cep-home-reveal:nth-child(3) { animation-delay: .16s; }
.cep-home-features-grid .cep-home-reveal:nth-child(4) { animation-delay: .24s; }

.cep-home-hero .carousel-indicators { bottom: 26px; z-index: 3; }
.cep-home-hero .carousel-indicators li { width: 26px; height: 3px; border-radius: 0; border: none; background: rgba(255,255,255,.35); margin: 0 4px; }
.cep-home-hero .carousel-indicators li.active { background: var(--cep-gold); width: 34px; }
.cep-home-hero .carousel-control { background-image: none !important; opacity: 1; width: 60px; }
.cep-home-hero .icon-prev, .cep-home-hero .icon-next {
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,41,66,.5);
}
.cep-home-hero .icon-prev::before { content: '\2039'; font-size: 22px; color: #fff; }
.cep-home-hero .icon-next::before { content: '\203A'; font-size: 22px; color: #fff; }
.cep-home-hero .bgimg { display: none; }

/* ---------- Pricing ---------- */
.cep-home-pricing { background: var(--cep-bg); padding: 90px 0 100px; }
.cep-home-pricing-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.cep-home-pricing-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cep-gold); margin-bottom: 14px; width: 100%;
}
.cep-home-pricing-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--cep-gold); display: inline-block; }
.cep-home-pricing-heading { font-size: 38px; line-height: 1.15; letter-spacing: -.01em; }
.cep-home-pricing-sub { font-size: 17px; color: var(--cep-ink-soft); line-height: 1.65; margin-top: 16px; display: block; }

.cep-home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  align-items: start;
}

.cep-home-price-card {
  background: var(--cep-white);
  border: 1px solid var(--cep-border);
  border-radius: 10px;
  padding: 44px 28px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 1px 3px rgba(20,41,66,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cep-home-price-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -14px rgba(20,41,66,.22); }

.cep-home-price-card-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cep-blue);
  display: block;
  margin-bottom: 44px;
}

.cep-home-price-badge-wrap { position: absolute; top: -34px; left: 50%; transform: translateX(-50%); }
.cep-home-price-badge {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--cep-white); border: 3px solid var(--cep-gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(232,163,23,.45);
}
.cep-home-price-badge-amount { font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 700; color: var(--cep-navy); }

.cep-home-price-period {
  font-size: 13px; font-weight: 600; color: var(--cep-ink-soft);
  text-transform: uppercase; letter-spacing: .05em;
  display: block; margin-top: 8px; margin-bottom: 18px;
}
.cep-home-price-features {
  font-size: 14px; color: var(--cep-ink-soft); line-height: 1.7;
  text-align: left; display: block; padding: 0 4px 22px;
  border-bottom: 1px solid var(--cep-border); margin-bottom: 20px;
}
.cep-home-price-stat {
  display: block; width: 100%; background: var(--cep-white);
  border: 1px solid var(--cep-border); color: var(--cep-navy);
  border-radius: 4px; padding: 8px 18px; font-size: 13px; font-weight: 600;
  text-align: center;
}
.cep-home-price-stat + .cep-home-price-stat { margin-top: 5px; }

.cep-home-price-cta {
  display: block; width: 100%; margin-top: 22px;
  border-radius: 5px; background: var(--cep-blue-bright);
  border: 1px solid var(--cep-blue-bright); color: var(--cep-white);
  padding: 13px 20px; font-size: 14px; font-weight: 600; text-align: center;
}
.cep-home-price-cta-gold { background: var(--cep-gold); border-color: var(--cep-gold); color: var(--cep-navy-deep); }
.cep-home-price-cta-outline { background: var(--cep-white); color: var(--cep-blue-bright); }

/* ---------- Explainer (SAP-style "what is it") ---------- */
.cep-home-explainer { background: var(--cep-white); padding: 80px 0; }
.cep-home-explainer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cep-home-explainer-text .cep-home-pricing-heading { text-align: left; margin: 0; }
.cep-home-explainer-text .cep-home-pricing-sub { text-align: left; margin-top: 14px; }
.cep-home-explainer-list { display: flex; flex-direction: column; gap: 16px; }
.cep-home-explainer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--cep-ink-soft);
  line-height: 1.6;
  background: var(--cep-bg);
  border: 1px solid var(--cep-border);
  border-radius: 8px;
  padding: 14px 16px;
}
.cep-home-explainer-check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cep-gold);
  color: var(--cep-navy-deep);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) { .cep-home-explainer-inner { grid-template-columns: 1fr; } }

/* ---------- Dashboard showcase ---------- */
.cep-home-dv2 { font-size: 13px; background: #eef1f5; }
.cep-home-dv2-topbar {
  background: var(--cep-white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; border-bottom: 1px solid var(--cep-border);
}
.cep-home-dv2-brand { font-weight: 700; color: var(--cep-navy); font-size: 14px; }
.cep-home-dv2-topnav { display: flex; gap: 6px; }
.cep-home-dv2-navbtn {
  font-size: 10px; font-weight: 700; letter-spacing: .04em;
  border: 1px solid var(--cep-border); border-radius: 4px; padding: 6px 10px; color: var(--cep-ink-soft);
}
.cep-home-dv2-navbtn-active { background: var(--cep-navy); color: var(--cep-white); border-color: var(--cep-navy); }
.cep-home-dv2-titlebar {
  background: var(--cep-navy); color: var(--cep-white);
  padding: 12px 18px; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 3px solid var(--cep-gold);
}
.cep-home-dv2-date { font-size: 11px; font-weight: 400; color: #b7c6dc; }
.cep-home-dv2-welcome {
  background: linear-gradient(135deg, var(--cep-navy-deep), var(--cep-blue));
  color: var(--cep-white); padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.cep-home-dv2-welcome strong { font-size: 15px; }
.cep-home-dv2-welcome span { font-size: 11px; color: #c7d5e8; display: block; margin-top: 2px; }
.cep-home-dv2-welcome-btns { display: flex; gap: 8px; }
.cep-home-dv2-welcome-btns span {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px; padding: 6px 12px; font-size: 11px; font-weight: 600; color: var(--cep-white);
}
.cep-home-dv2-welcome-btns span:first-child { background: var(--cep-gold); border-color: var(--cep-gold); color: var(--cep-navy-deep); }

.cep-home-dv2-stats-primary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 14px 18px 0; }
.cep-home-dv2-stat {
  background: var(--cep-white); border: 1px solid var(--cep-border); border-left: 4px solid var(--cep-blue-bright);
  border-radius: 4px; padding: 12px 14px;
}
.cep-home-dv2-stat-gold { border-left-color: var(--cep-gold); }
.cep-home-dv2-stat-green { border-left-color: #2e7d4f; }
.cep-home-dv2-stat-red { border-left-color: #d64545; }
.cep-home-dv2-stat-num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; color: var(--cep-navy); }
.cep-home-dv2-stat-lbl { font-size: 11px; color: var(--cep-ink-soft); }

.cep-home-dv2-stats-secondary { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; padding: 10px 18px 0; }
.cep-home-dv2-stat2 { background: var(--cep-white); border: 1px solid var(--cep-border); border-radius: 4px; padding: 10px 12px; }
.cep-home-dv2-stat2-num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: var(--cep-navy); }
.cep-home-dv2-stat2-lbl { font-size: 10px; color: var(--cep-ink-soft); }

.cep-home-dv2-chartrow { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; padding: 14px 18px 0; }
.cep-home-dv2-panel { background: var(--cep-white); border: 1px solid var(--cep-border); border-radius: 4px; overflow: hidden; }
.cep-home-dv2-panel-head {
  background: var(--cep-bg); border-bottom: 1px solid var(--cep-border);
  font-size: 10px; font-weight: 700; letter-spacing: .04em; color: var(--cep-ink-soft);
  padding: 8px 12px;
}
.cep-home-dv2-bars { display: flex; align-items: flex-end; gap: 8px; height: 130px; padding: 14px; }
.cep-home-dv2-bar { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--cep-blue-bright), var(--cep-navy)); border-radius: 2px 2px 0 0; }
.cep-home-dv2-donut-wrap { display: flex; flex-direction: column; align-items: center; padding: 14px; }
.cep-home-dv2-donut { width: 120px; height: 120px; border-radius: 50%; background: var(--g); position: relative; }
.cep-home-dv2-donut::after { content: ''; position: absolute; inset: 22px; border-radius: 50%; background: var(--cep-white); }
.cep-home-dv2-legend { display: flex; flex-wrap: wrap; gap: 6px 10px; justify-content: center; margin-top: 12px; font-size: 10px; color: var(--cep-ink-soft); }
.cep-home-dv2-legend span { display: inline-flex; align-items: center; gap: 4px; }
.cep-home-dv2-legend i { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }

.cep-home-dv2-bottomrow { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; padding: 10px 18px 18px; }
.cep-home-dv2-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.cep-home-dv2-table th { background: var(--cep-navy); color: var(--cep-white); text-align: left; padding: 7px 12px; font-size: 10px; }
.cep-home-dv2-table td { padding: 7px 12px; border-top: 1px solid var(--cep-border); color: var(--cep-ink); }
.cep-home-dv2-pill { display: inline-block; padding: 2px 7px; border-radius: 3px; font-size: 10px; font-weight: 600; }
.cep-home-dv2-pill-pending { background: #fdf1dc; color: #a3660c; }
.cep-home-dv2-pill-ordered { background: #eceff3; color: #52627e; }
.cep-home-dv2-pill-picking { background: #dbeafe; color: #1d5fa8; }
.cep-home-dv2-toplist { padding: 10px 12px; }
.cep-home-dv2-toprow { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--cep-border); font-size: 11px; color: var(--cep-ink); }
.cep-home-dv2-toprow:last-child { border-bottom: none; }
.cep-home-dv2-toprow strong { color: var(--cep-navy); font-weight: 700; }
.cep-home-dv2-toprank {
  width: 18px; height: 18px; border-radius: 50%; background: var(--cep-navy); color: var(--cep-white);
  font-size: 9px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-right: 8px;
}
.cep-home-dv2-quickgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 10px 12px; }
.cep-home-dv2-quickbtn { background: var(--cep-bg); border: 1px solid var(--cep-border); border-radius: 4px; padding: 8px 10px; font-size: 10px; font-weight: 600; color: var(--cep-navy); }
@media (max-width: 700px) {
  .cep-home-dv2-stats-primary, .cep-home-dv2-stats-secondary { grid-template-columns: repeat(2, 1fr); }
  .cep-home-dv2-chartrow, .cep-home-dv2-bottomrow { grid-template-columns: 1fr; }
}
.cep-home-dash { background: var(--cep-bg); padding: 90px 0; }
.cep-home-dash-inner { text-align: center; }
.cep-home-dash-text { max-width: 640px; margin: 0 auto 44px; }
.cep-home-dash-text .cep-home-pricing-heading,
.cep-home-dash-text .cep-home-pricing-sub { text-align: center; margin-left: auto; margin-right: auto; }
.cep-home-dash-mockup {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cep-border);
  box-shadow: 0 24px 48px -24px rgba(20,41,66,.25);
  text-align: left;
  background: var(--cep-white);
}
.cep-home-dash-tabs {
  display: flex;
  gap: 4px;
  background: var(--cep-navy-deep);
  padding: 10px 14px 0;
}
.cep-home-dash-tab {
  background: none;
  border: none;
  color: #9db2ce;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
}
.cep-home-dash-tab-active { background: var(--cep-white); color: var(--cep-navy); }
.cep-home-dash-panel { display: none; }
.cep-home-dash-panel-active { display: block; }
.cep-home-dash-chrome {
  background: #e9edf3;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cep-home-dash-chrome span {
  width: 9px; height: 9px; border-radius: 50%; background: #c3ccd9; display: inline-block;
}
.cep-home-dash-chrome-url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--cep-ink-soft);
  background: var(--cep-white);
  border-radius: 4px;
  padding: 3px 10px;
}
.cep-home-dash-body { display: flex; min-height: 320px; }
.cep-home-dash-sidebar {
  flex: 0 0 150px;
  background: var(--cep-navy-deep);
  padding: 18px 0;
}
.cep-home-dash-side-item {
  color: #9db2ce;
  font-size: 13px;
  padding: 11px 20px;
}
.cep-home-dash-side-active { color: var(--cep-white); background: rgba(255,255,255,.08); border-left: 3px solid var(--cep-gold); font-weight: 600; }
.cep-home-dash-main { flex: 1; padding: 22px 26px; }
.cep-home-dash-stats { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.cep-home-dash-stat {
  flex: 1 1 140px;
  background: var(--cep-bg);
  border: 1px solid var(--cep-border);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
}
.cep-home-dash-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--cep-navy); }
.cep-home-dash-stat-lbl { font-size: 11px; color: var(--cep-ink-soft); margin-top: 2px; }
.cep-home-dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  padding: 0 4px;
  margin-bottom: 20px;
}
.cep-home-dash-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--cep-blue-bright), var(--cep-navy));
  border-radius: 3px 3px 0 0;
}
.cep-home-dash-table { border: 1px solid var(--cep-border); border-radius: 8px; overflow: hidden; }
.cep-home-dash-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--cep-ink);
  border-top: 1px solid var(--cep-border);
}
.cep-home-dash-row:first-child { border-top: none; }
.cep-home-dash-row-head { background: var(--cep-bg); font-weight: 600; color: var(--cep-ink-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.cep-home-dash-pill { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; width: fit-content; }
.cep-home-dash-pill-ok { background: #e3f3e8; color: #227a4a; }
.cep-home-dash-pill-wait { background: #fdf1dc; color: #a3660c; }
.cep-home-dash-note { text-align: center; font-size: 12px; color: var(--cep-ink-soft); margin-top: 16px; font-style: italic; }
@media (max-width: 700px) { .cep-home-dash-sidebar { display: none; } }

/* ---------- Animated workflow ---------- */
.cep-home-flow { background: var(--cep-white); padding: 90px 0; }
.cep-home-flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 20px auto 0;
}
.cep-home-flow-line {
  position: absolute;
  top: 22px; left: 6%; right: 6%;
  height: 2px;
  background: var(--cep-border);
  z-index: 0;
}
.cep-home-flow-pulse {
  position: absolute;
  top: 18px; left: 6%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cep-gold);
  animation: cepHomeFlowPulse 3.6s ease-in-out infinite;
  z-index: 1;
}
@keyframes cepHomeFlowPulse {
  0% { left: 6%; opacity: 1; }
  95% { left: 90%; opacity: 1; }
  100% { left: 90%; opacity: 0; }
}
.cep-home-flow-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  opacity: 0;
  animation: cepHomeFlowStepIn .5s ease forwards;
  animation-delay: var(--d);
}
@keyframes cepHomeFlowStepIn { to { opacity: 1; } }
.cep-home-flow-dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cep-white);
  border: 2px solid var(--cep-gold);
  color: var(--cep-navy);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.cep-home-flow-step span { font-size: 13px; font-weight: 600; color: var(--cep-ink-soft); max-width: 110px; }
@media (max-width: 700px) {
  .cep-home-flow-track { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cep-home-flow-line, .cep-home-flow-pulse { display: none; }
}

/* ---------- Stats band (placeholder values) ---------- */
.cep-home-stats { background: linear-gradient(135deg, var(--cep-navy-deep), var(--cep-navy)); padding: 60px 0; }
.cep-home-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.cep-home-stat-item { display: flex; flex-direction: column; gap: 6px; }
.cep-home-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 700; color: var(--cep-gold); }
.cep-home-stat-lbl { font-size: 13px; color: #b7c6dc; }

/* ---------- FAQ ---------- */
.cep-home-faq { background: var(--cep-bg); padding: 90px 0; }
.cep-home-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.cep-home-faq-item { background: var(--cep-white); border: 1px solid var(--cep-border); border-radius: 8px; overflow: hidden; }
.cep-home-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cep-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.cep-home-faq-toggle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: var(--cep-blue-bright);
  transition: transform .2s ease;
}
.cep-home-faq-open .cep-home-faq-toggle { transform: rotate(45deg); }
.cep-home-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 20px;
}
.cep-home-faq-open .cep-home-faq-a { max-height: 200px; padding-bottom: 18px; }
.cep-home-faq-a p { font-size: 14px; color: var(--cep-ink-soft); line-height: 1.65; }

/* ---------- Features (drawn from real product workflow) ---------- */
.cep-home-features { background: var(--cep-white); padding: 90px 0; }
.cep-home-features-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.cep-home-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.cep-home-feature-card {
  background: var(--cep-bg);
  border: 1px solid var(--cep-border);
  border-radius: 10px;
  padding: 30px 26px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cep-home-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px -16px rgba(20,41,66,.2);
  border-color: var(--cep-blue-bright);
}
.cep-home-feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cep-navy);
  color: var(--cep-gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform .22s ease, background .22s ease;
}
.cep-home-feature-card:hover .cep-home-feature-icon {
  transform: scale(1.08) rotate(-6deg);
  background: var(--cep-blue-bright);
}
.cep-home-feature-title { font-size: 17px; margin-bottom: 8px; display: block; }
.cep-home-feature-desc { font-size: 14px; color: var(--cep-ink-soft); line-height: 1.65; }

/* ---------- About ---------- */
.cep-home-about { background: var(--cep-white); border-top: 1px solid var(--cep-border); border-bottom: 1px solid var(--cep-border); }
.cep-home-about-inner { max-width: 1180px; margin: 0 auto; padding: 90px 24px; display: flex; align-items: center; gap: 64px; }
.cep-home-about-text { flex: 1 1 48%; }
.cep-home-about-image { flex: 1 1 42%; text-align: center; }
.cep-home-about-heading { font-size: 32px; margin-bottom: 18px; display: block; }
.cep-home-about-heading b { color: var(--cep-gold); font-weight: 700; }
.cep-home-about-text p { font-size: 16px; line-height: 1.75; color: var(--cep-ink-soft); }

/* ---------- CTA band ---------- */
.cep-home-cta-band { background: linear-gradient(135deg, var(--cep-navy-deep), var(--cep-blue)); padding: 70px 0; }
.cep-home-cta-band-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; text-align: center; }
.cep-home-cta-band-heading { color: var(--cep-white); font-size: 28px; line-height: 1.4; display: block; }
.cep-home-cta-band-sub { display: block; color: #b7c6dc; font-size: 16px; font-weight: 400; margin-top: 8px; }
.cep-home-cta-band-btn {
  display: inline-flex; background: var(--cep-gold); color: var(--cep-navy-deep);
  border-radius: 5px; padding: 14px 30px; margin-top: 24px; font-weight: 700; font-size: 15px;
}

/* ---------- App download ---------- */
.cep-home-appdl { background: var(--cep-bg); padding: 90px 0; }
.cep-home-appdl-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 56px; }
.cep-home-appdl-text { flex: 1 1 50%; }
.cep-home-appdl-image { flex: 1 1 44%; text-align: center; }
.cep-home-appdl-heading { font-size: 30px; margin-bottom: 14px; display: block; }
.cep-home-appdl-text p { font-size: 16px; color: var(--cep-ink-soft); line-height: 1.7; }
.cep-home-appdl-buttons { margin-top: 26px; display: flex; gap: 14px; }
.cep-home-appdl-buttons a { display: inline-block; width: 100%; max-width: 171px; height: 50px; }
.cep-home-appdl-btn-gpay { background: url(../image/catalog/google-play-btn.png) no-repeat center center; background-size: cover; }
.cep-home-appdl-btn-appstore { background: url(../image/catalog/app-store-btn.png) no-repeat center center; background-size: cover; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cep-home-hero .item { min-height: 460px; }
  .cep-home-hero-title { font-size: 32px; }
  .cep-home-about-inner, .cep-home-appdl-inner { flex-direction: column; text-align: center; }
  .cep-home-pricing-heading { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .cep-home-root * { transition: none !important; animation: none !important; }
  .cep-home-reveal, .cep-home-hero-in, .cep-home-flow-step { opacity: 1 !important; transform: none !important; }
  .cep-home-flow-pulse { display: none; }
}