/* TIME ERP Website: interactive guide (marketing-help card style) */
:root {
  --primary: #25b7a7;
  --primary-dark: #1a9e8f;
  --primary-light: #e8f8f6;
  --primary-deeper: #0d7a6e;
  --secondary: #243F64;
  --accent: #17C3B2;
  --heading-dark: #083530;
  --text-body: #3d5250;
  --text-muted: #7a9593;
  --bg: #F4F8F8;
  --card: #FFFFFF;
  --border: #d0eeec;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(36, 63, 100, 0.07);
  --shadow-lg: 0 22px 48px rgba(37, 183, 167, 0.16);
  --max: 1120px;
  --pad: clamp(20px, 4vw, 48px);
  --section: clamp(64px, 8vw, 100px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.7; color: var(--text-body);
  background: var(--bg); overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: min(var(--max), 100% - var(--pad) * 2); margin-inline: auto; }
.section-title {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.2;
  color: var(--heading-dark); margin: 0;
}
.section-lead {
  font-size: 17px; color: var(--text-muted); max-width: 680px;
  line-height: 1.65; margin: 0;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-size: 15px; font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; box-shadow: 0 12px 28px rgba(37, 183, 167, .32);
}
.btn--ghost {
  background: #fff; border: 1.5px solid var(--border); color: var(--secondary);
}
.btn--ghost:hover {
  border-color: var(--primary); color: var(--primary-dark); background: var(--primary-light);
}

.mkt-page {
  padding: calc(76px + clamp(36px, 5vw, 56px)) 0 var(--section);
  background:
    radial-gradient(ellipse 70% 40% at 50% -8%, rgba(37,183,167,.12), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg) 50%);
}

.web-hero { margin: 0 0 28px; }
.web-hero__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 12px;
}
.web-back {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--primary-deeper);
  background: var(--card); border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: border-color .2s, background .2s;
}
.web-back:hover { border-color: var(--primary); background: var(--primary-light); }

/* Card grid: marketing-help style, more interactive */
.web-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 28px;
}
.web-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 28px 22px 22px;
  border-radius: 20px;
  background: var(--card);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  min-height: 260px;
}
.web-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,183,167,.4);
}
.web-card.is-active {
  border-color: var(--primary);
  background: linear-gradient(180deg, #f2fbf9 0%, #fff 55%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.web-card__icon {
  width: 64px; height: 64px; border-radius: 16px; margin-bottom: 16px;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(37,183,167,.3);
  transition: transform .25s ease;
  overflow: hidden;
}
.web-card:hover .web-card__icon,
.web-card.is-active .web-card__icon { transform: scale(1.06); }
.web-card__icon .material-symbols-outlined {
  font-size: 30px; line-height: 1; width: 30px; height: 30px;
  overflow: hidden; display: block;
}
.web-card h3 {
  font-size: 18px; font-weight: 700; color: #0f172a;
  letter-spacing: -.02em; margin: 0 0 10px; line-height: 1.3;
}
.web-card p {
  font-size: 14px; line-height: 1.55; color: var(--text-muted);
  margin: 0 0 18px; flex: 1;
}
.web-card__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 700;
  background: #eef2f6; color: var(--primary-deeper);
  transition: background .2s, color .2s, transform .2s;
}
.web-card:hover .web-card__btn,
.web-card.is-active .web-card__btn {
  background: var(--primary-light); color: var(--primary-dark);
}
.web-card.is-active .web-card__btn {
  background: var(--primary); color: #fff;
}
.web-card--link .web-card__btn {
  background: var(--primary-light); color: var(--primary-dark);
}
.web-card--link:hover .web-card__btn {
  background: var(--primary); color: #fff;
}

/* Spotlight detail */
.web-spotlight {
  position: relative;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px 28px 30px;
  overflow: hidden;
  margin-bottom: 40px;
}
.web-spotlight__glow {
  position: absolute; inset: auto -20% -40% auto;
  width: 55%; height: 70%;
  background: radial-gradient(circle, rgba(37,183,167,.12), transparent 70%);
  pointer-events: none;
}
.web-spotlight__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 14px; position: relative;
}
.web-spotlight__identity {
  display: flex; align-items: center; gap: 14px;
}
.web-spotlight__icon {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(37,183,167,.28);
  overflow: hidden;
}
.web-spotlight__icon .material-symbols-outlined {
  font-size: 28px; line-height: 1; width: 28px; height: 28px;
  overflow: hidden; display: block;
}
.web-spotlight__kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--primary-dark); margin: 0 0 4px;
}
.web-spotlight__identity h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700; color: var(--heading-dark); margin: 0; letter-spacing: -.02em;
}
.web-spotlight__controls {
  display: flex; align-items: center; gap: 8px;
}
.web-nav-btn, .web-pause {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff;
  color: var(--secondary); font-size: 13px; font-weight: 600;
  transition: border-color .2s, background .2s, color .2s;
}
.web-nav-btn { width: 40px; }
.web-pause { padding: 0 14px; }
.web-nav-btn:hover, .web-pause:hover {
  border-color: var(--primary); background: var(--primary-light); color: var(--primary-dark);
}
.web-nav-btn .material-symbols-outlined { font-size: 20px; }
.web-spotlight__desc {
  font-size: 15px; color: var(--text-muted); max-width: 72ch;
  margin: 0 0 22px; position: relative;
}

.web-body {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  position: relative;
}
.web-steps { display: flex; flex-direction: column; gap: 10px; }
.web-step {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border-radius: 14px;
  background: #f7fbfb; border: 1px solid transparent;
  transition: border-color .2s, background .2s, transform .2s;
}
.web-step.is-on {
  background: var(--primary-light);
  border-color: rgba(37,183,167,.35);
  transform: translateX(4px);
}
.web-step__num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.web-step strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--heading-dark); margin-bottom: 2px;
}
.web-step p {
  font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5;
}

.web-demo {
  padding: 18px; border-radius: 16px;
  background: linear-gradient(165deg, #083530 0%, #0d7a6e 55%, #1a9e8f 100%);
  color: #fff; min-height: 220px;
  display: flex; flex-direction: column;
}
.web-demo__bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; opacity: .9;
}
.web-demo__badge {
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.18); font-size: 11px;
}
.web-demo__list {
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.web-demo__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12);
  font-size: 13px; line-height: 1.4;
  opacity: 0; transform: translateY(8px);
  animation: webPop .45s ease forwards;
}
.web-demo__item .material-symbols-outlined {
  font-size: 18px; color: #7fe0d4; flex-shrink: 0;
}
.web-demo__note {
  margin-top: 14px; font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,.82);
}
@keyframes webPop {
  to { opacity: 1; transform: none; }
}

.web-cta {
  margin-top: 8px; padding: 36px 32px; border-radius: 22px; text-align: center;
  background: linear-gradient(135deg, #083530 0%, #0d7a6e 55%, #25b7a7 100%);
  color: #fff;
}
.web-cta h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 700;
  color: #fff; margin: 0 0 10px;
}
.web-cta p {
  font-size: 15px; color: rgba(255,255,255,.82);
  max-width: 560px; margin: 0 auto 20px;
}
.web-cta__actions {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.web-cta .btn--ghost {
  background: transparent; border-color: rgba(255,255,255,.35); color: #fff;
}
.web-cta .btn--ghost:hover {
  background: rgba(255,255,255,.1); border-color: #fff; color: #fff;
}
.web-cta .btn--primary {
  background: #fff; color: var(--primary-deeper); box-shadow: none;
}

@media (max-width: 980px) {
  .web-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .web-body { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .web-grid { grid-template-columns: 1fr; }
  .web-card { min-height: 0; }
  .web-spotlight { padding: 22px 18px; }
  .web-cta { padding: 28px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .web-card, .web-card__icon, .web-step, .web-demo__item {
    transition: none !important; animation: none !important;
  }
  .web-demo__item { opacity: 1; transform: none; }
}
