/* -------------------------
   Base / Reset
   ------------------------- */
:root{
  --bg:#f0f1f4;
  --purple:#7c55e6;
  --indigo:#5b36d6;
  --deep:#111827;
  --muted:#6b7280;
  --card:#ffffff;
  --accent:#c6f6d5;
  --cta:#9eea4b;
  --maxw:1100px;
  --container-pad:20px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:80px}
html,body{height:100%}
body{
  margin:0;
  padding-top:72px;
  background:var(--bg);
  color:var(--deep);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block;height:auto}

/* -------------------------
   Layout container
   ------------------------- */
.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:24px;
}

/* -------------------------
   NAV
   ------------------------- */
header.site-header{
  background:#fff;
  box-shadow:0 2px 0 rgba(0,0,0,0.03);
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:50;
}
.nav-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:14px var(--container-pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  font-weight:800;
  font-size:20px;
  letter-spacing:-0.4px;
  color:var(--deep);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
}
.brand .dot{color:var(--purple);margin-left:0}
nav.primary{
  display:flex;
  gap:18px;
  align-items:center;
  font-size:14px;
  color:var(--muted);
}
.nav-cta{display:flex;gap:12px;align-items:center}
.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
}
.btn-outline{border:1px solid #eee;background:#fff;color:var(--deep)}
.btn-primary{background:var(--indigo);color:#fff;box-shadow:0 6px 18px rgba(91,54,214,0.12)}
.hamburger{display:none;border:0;background:transparent;padding:8px;border-radius:8px;cursor:pointer}

/* -------------------------
   HERO
   ------------------------- */
.hero{
  max-width:1200px;
  margin:30px auto;
  display:grid;
  grid-template-columns:1fr 460px;
  gap:0;
  align-items:stretch;
  background:transparent;
}
.hero-left{
  background:linear-gradient(180deg,var(--purple),#7b6be3);
  color:white;
  padding:48px 56px;
  border-top-left-radius:6px;
  border-bottom-left-radius:6px;
  position:relative;
  overflow:hidden;
}
.kicker{
  display:inline-block;
  font-size:13px;
  opacity:0.9;
  margin-bottom:16px;
}
.hero h1{
  margin:10px 0 8px 0;
  font-size:35px;
  line-height:1.02;
  font-weight:800;
  letter-spacing:-0.6px;
}
.hero p.lead{
  color:rgba(255,255,255,0.92);
  max-width:520px;
  margin:18px 0 0 0;
  font-size:16px;
}
.hero-actions{margin-top:22px;display:flex;gap:12px;align-items:center}
.trusted-bar{
  background:#0f1724;
  color:#fff;
  padding:12px 20px;
  display:flex;
  gap:18px;
  align-items:center;
  margin-top:26px;
  border-radius:6px;
  font-size:13px;
  width:100%;
}

.hero-right{
  background:#fff;
  border-top-right-radius:6px;
  border-bottom-right-radius:6px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:26px;
}
.hero-right .mock{
  width:100%;
  height:100%;
  max-height:420px;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(16,24,40,0.12);
  position:relative;
}
/* decorative green clock bubble */
.bubble{
  position:absolute;
  right:32px;
  top:56px;
  width:72px;height:72px;border-radius:50%;
  background:#d8ff90;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;color:#173e0a;
  transform:translateY(-10%);
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  z-index:3;
}

/* -------------------------
   Main content sections
   ------------------------- */
main .section{
  max-width:var(--maxw);
  margin:0 auto;
  padding:48px var(--container-pad);
  background:transparent;
}
.eyebrow{color:var(--purple);font-size:13px;font-weight:600;margin-bottom:10px}
h2.big{font-size:28px;margin:4px 0 14px;font-weight:800;line-height:1.12}

/* Feature grid (two column with image on right) */
.grid-2{
  display:grid;
  grid-template-columns:1fr 460px;
  gap:36px;
  align-items:center;
}
.card{
  background:#fff;
  border-radius:10px;
  padding:18px;
  box-shadow:0 6px 20px rgba(15,23,42,0.06);
  border:1px solid #f1f1f5;
}
.profile-chip{
  display:flex;align-items:center;gap:12px;padding:12px;border-radius:999px;background:rgba(255,255,255,0.9);box-shadow:0 6px 18px rgba(15,23,42,0.06);
}
.profile-chip img{width:42px;height:42px;border-radius:50%;object-fit:cover}

/* two-column stacked sections */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}
.graph{
  height:180px;
  border-radius:10px;
  background:linear-gradient(180deg, rgba(88,143,255,0.06), rgba(255,255,255,0.0));
  display:flex;align-items:center;justify-content:center;
}

/* Steps */
.steps{
  display:flex;
  gap:20px;
  justify-content:space-between;
  margin-top:24px;
  flex-wrap:wrap;
}
.step{
  flex:1;
  min-width:200px;
  background:#fff;padding:18px;border-radius:10px;box-shadow:0 6px 20px rgba(15,23,42,0.04);
}
.step .num{width:44px;height:44px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:var(--purple);color:white;font-weight:700;margin-bottom:10px}

/* Testimonials grid 
.testgrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:18px;
}
.testimonial{
  background:#fff;padding:18px;border-radius:10px;box-shadow:0 6px 18px rgba(15,23,42,0.05);
  font-size:14px;color:var(--muted);
}
.testimonial .by{margin-top:12px;font-size:13px;color:var(--deep);font-weight:600;display:flex;gap:10px;align-items:center}
*/
/* FAQ Accordion */
.accordion { border-top: 1px solid #eee; border-radius:10px; padding: 5px 10px; margin-top: 20px;background: #f9f9fc; }
.acc-item { border-bottom: 1px solid #eee; }
.acc-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--deep);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
  gap: 16px;
}
.acc-btn:hover { color: var(--purple); }
.acc-btn::after {
  content: '+'; font-size: 20px; color: var(--purple); font-weight: 400; line-height: 1;
  flex-shrink: 0;
  margin-left: auto;
}
.acc-btn.active::after { content: '−'; }
.acc-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.acc-body { padding-bottom: 20px; color: var(--muted); line-height: 1.6; font-size: 15px; background: #f9f9fc; }


/* Vertical Timeline in Slide Panel */
.timeline-v {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #eee;
  margin-top: 10px;
}
.v-item {
  position: relative;
  margin-bottom: 32px;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.v-item.active { opacity: 1; }
.v-item:last-child { margin-bottom: 0; }

.v-marker {
  position: absolute;
  left: -27px;
  top: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ccc;
  transition: all 0.3s;
}
.v-item.active .v-marker {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,85,230,0.2);
}

.v-content {
  padding-left: 8px;
}
.v-title {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: var(--deep);
  font-weight: 700;
}
.v-item.active .v-title { color: var(--purple); }
.v-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* CTA band */
.cta-band{
  margin-top:28px;
  background:linear-gradient(135deg, rgba(124,85,230,0.96), rgba(91,54,214,0.92));
  color:white;
  border-radius:8px;padding:28px;display:flex;align-items:center;justify-content:space-between;gap:20px;
  overflow:hidden;
  position:relative;
}
.cta-band .cta-text{font-weight:700;font-size:18px}
.cta-band .cta-btn{background:var(--cta);color:#043000;padding:12px 20px;border-radius:999px;font-weight:700}

/* Image Watermark */
.img-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 420px;
}
.img-container img {
  display: block;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.watermark {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  text-decoration: none;
  z-index: 10;
}
.watermark a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.8;
}
.watermark a:hover {
  opacity: 1;
}

/* Footer */
footer.site-footer{background:#fff;padding:36px 24px;margin-top:36px;border-top:1px solid #eee}
.footer-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;max-width:var(--maxw);margin:0 auto;
}
.foot-col h4{font-size:13px;margin-bottom:8px;color:var(--muted)}
.foot-col a{display:block;color:var(--muted);margin:6px 0;font-size:14px}

/* -------------------------
   Responsive
   ------------------------- */
@media (max-width:1100px){
  .hero{grid-template-columns:1fr; padding:0 20px}
  .hero-left{border-radius:8px 8px 0 0; padding: 40px 30px;}
  .hero-right{border-radius:0 0 8px 8px;padding:0;}
  .hero-right .mock{max-height:400px; border-radius: 0 0 8px 8px; box-shadow: none;}
  .grid-2{grid-template-columns:1fr;gap:30px}
  .two-col{grid-template-columns:1fr; gap:30px}
  .testgrid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  
  /* Reverse order for specific sections if needed (e.g. image on top) */
  .grid-2 > div:nth-child(2) { order: -1; }
}
@media (max-width:700px){
  .nav-inner{padding:12px 20px}
  nav.primary{display:none}
  .hamburger{display:inline-flex}
  .hero h1{font-size:30px}
  .hero p.lead{font-size:16px}
  .hero-left { padding: 32px 24px; }
  .trusted-bar{font-size:12px;flex-wrap:wrap;justify-content:center}
  .testgrid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  
  .cta-band { flex-direction: column; text-align: center; gap: 16px; }
  .cta-band .cta-text { font-size: 20px; }
  
  /* Mobile Menu Polish */
  .mobile-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 49;
    padding: 16px;
    border-top: 1px solid #eee;
  }
  .mobile-menu.open { display: block; }
  
  .mobile-menu a {
    padding: 14px;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 600;
    color: var(--deep);
  }
  .mobile-menu a:last-child { border-bottom: none; }
}

/* Ensure mobile menu is hidden on desktop by default if not covered by above */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }

/* Slide-in Form */
.slide-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); z-index: 900;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.slide-overlay.open { opacity: 1; pointer-events: auto; }

.slide-panel {
  position: fixed; top: 0; right: -440px; width: 100%; max-width: 400px; height: 100%;
  background: #fff; z-index: 1000;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  display: flex; flex-direction: column;
}
.slide-panel.open { right: 0; }

.panel-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.panel-body { padding: 24px; overflow-y: auto; flex: 1; }
.close-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--muted); }
